diff --git a/docs/hugo/content/reference/_index.md b/docs/hugo/content/reference/_index.md index 8cd40f5b57e..c46c297fe29 100644 --- a/docs/hugo/content/reference/_index.md +++ b/docs/hugo/content/reference/_index.md @@ -217,7 +217,9 @@ These resource(s) are available for use in the current release of ASO. Different | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| Fleet | 2023-03-15-preview | v1api20230315preview | v2.2.0 | - | +| Fleet | 2023-03-15-preview | v1api20230315preview | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | +| FleetsMember | 2023-03-15-preview | v1api20230315preview | v2.2.0 | - | +| FleetsUpdateRun | 2023-03-15-preview | v1api20230315preview | v2.2.0 | - | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230202preview/#containerservice.azure.com/v1api20230202preview.ManagedCluster) | 2023-02-02-preview | v1api20230202preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230202preview/v1api20230202preview_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230201/#containerservice.azure.com/v1api20230201.ManagedCluster) | 2023-02-01 | v1api20230201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230201/v1api20230201_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20210501/#containerservice.azure.com/v1api20210501.ManagedCluster) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20210501/v1api20210501_managedcluster.yaml) | diff --git a/docs/hugo/content/reference/containerservice/_index.md b/docs/hugo/content/reference/containerservice/_index.md index b7eca0894c5..a0b90c32c64 100644 --- a/docs/hugo/content/reference/containerservice/_index.md +++ b/docs/hugo/content/reference/containerservice/_index.md @@ -11,7 +11,9 @@ These resource(s) are available for use in the current release of ASO. Different | Resource | ARM Version | CRD Version | Supported From | Sample | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|----------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| Fleet | 2023-03-15-preview | v1api20230315preview | v2.2.0 | - | +| Fleet | 2023-03-15-preview | v1api20230315preview | v2.2.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml) | +| FleetsMember | 2023-03-15-preview | v1api20230315preview | v2.2.0 | - | +| FleetsUpdateRun | 2023-03-15-preview | v1api20230315preview | v2.2.0 | - | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230202preview/#containerservice.azure.com/v1api20230202preview.ManagedCluster) | 2023-02-02-preview | v1api20230202preview | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230202preview/v1api20230202preview_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20230201/#containerservice.azure.com/v1api20230201.ManagedCluster) | 2023-02-01 | v1api20230201 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20230201/v1api20230201_managedcluster.yaml) | | [ManagedCluster](https://azure.github.io/azure-service-operator/reference/containerservice/v1api20210501/#containerservice.azure.com/v1api20210501.ManagedCluster) | 2021-05-01 | v1api20210501 | v2.0.0 | [View](https://github.com/Azure/azure-service-operator/tree/main/v2/samples/containerservice/v1api20210501/v1api20210501_managedcluster.yaml) | diff --git a/go.mod b/go.mod index fb76049ba2a..5b4e1b65f08 100644 --- a/go.mod +++ b/go.mod @@ -23,47 +23,68 @@ require ( github.com/lib/pq v1.6.0 github.com/marstr/randname v0.0.0-20181206212954-d5b0f288ab8c github.com/onsi/ginkgo v1.16.5 - github.com/onsi/gomega v1.20.1 + github.com/onsi/gomega v1.27.7 github.com/pkg/errors v0.9.1 - github.com/prometheus/client_golang v1.13.0 + github.com/prometheus/client_golang v1.15.1 github.com/sethvargo/go-password v0.1.2 github.com/stretchr/testify v1.8.4 - golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d - golang.org/x/net v0.7.0 - k8s.io/api v0.25.2 - k8s.io/apimachinery v0.25.2 - k8s.io/client-go v0.25.2 - sigs.k8s.io/controller-runtime v0.13.0 + golang.org/x/crypto v0.8.0 + golang.org/x/net v0.10.0 + k8s.io/api v0.27.2 + k8s.io/apimachinery v0.27.2 + k8s.io/client-go v0.27.2 + sigs.k8s.io/controller-runtime v0.15.0 ) require ( cloud.google.com/go v0.97.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appconfiguration/armappconfiguration v1.0.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice v1.0.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos v1.0.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/iothub/armiothub v1.1.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/machinelearning/armmachinelearning v1.0.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/redis/armredis v1.0.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/search/armsearch v1.1.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus v1.1.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.0.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/subscription/armsubscription v1.0.0 // indirect + github.com/Azure/azure-service-operator/v2 v2.3.0 // indirect github.com/Azure/go-autorest v14.2.0+incompatible // indirect github.com/Azure/go-autorest/autorest/azure/cli v0.4.2 // indirect github.com/Azure/go-autorest/logger v0.2.1 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0 // indirect github.com/alexbrainman/sspi v0.0.0-20180613141037-e580b900e9f5 // indirect + github.com/benbjohnson/clock v1.1.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/dimchansky/utfbom v1.1.1 // indirect + github.com/dnaeon/go-vcr v1.2.0 // indirect github.com/emicklei/go-restful/v3 v3.9.0 // indirect github.com/evanphx/json-patch v5.6.0+incompatible // indirect github.com/evanphx/json-patch/v5 v5.6.0 // indirect - github.com/fsnotify/fsnotify v1.5.4 // indirect - github.com/go-logr/zapr v1.2.3 // indirect - github.com/go-openapi/jsonpointer v0.19.5 // indirect - github.com/go-openapi/jsonreference v0.20.0 // indirect + github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/go-logr/zapr v1.2.4 // indirect + github.com/go-openapi/jsonpointer v0.19.6 // indirect + github.com/go-openapi/jsonreference v0.20.1 // indirect github.com/go-openapi/swag v0.22.3 // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang-jwt/jwt/v4 v4.2.0 // indirect + github.com/golang-jwt/jwt/v4 v4.5.0 // indirect github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/golang/protobuf v1.5.2 // indirect + github.com/golang/protobuf v1.5.3 // indirect github.com/google/gnostic v0.6.9 // indirect github.com/google/gofuzz v1.2.0 // indirect github.com/hashicorp/errwrap v1.0.0 // indirect github.com/hashicorp/go-uuid v1.0.2 // indirect github.com/imdario/mergo v0.3.13 // indirect + github.com/inconshreveable/mousetrap v1.0.1 // indirect + github.com/jackc/pgpassfile v1.0.0 // indirect + github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect + github.com/jackc/pgx/v5 v5.3.1 // indirect github.com/jcmturner/aescts/v2 v2.0.0 // indirect github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect github.com/jcmturner/gofork v1.0.0 // indirect @@ -73,41 +94,46 @@ require ( github.com/joho/godotenv v1.3.0 // indirect github.com/josharian/intern v1.0.0 // indirect github.com/json-iterator/go v1.1.12 // indirect + github.com/kylelemons/godebug v1.1.0 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/marstr/collection v1.0.1 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect github.com/nxadm/tail v1.4.8 // indirect + github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/prometheus/client_model v0.2.0 // indirect - github.com/prometheus/common v0.37.0 // indirect - github.com/prometheus/procfs v0.8.0 // indirect - github.com/rogpeppe/go-internal v1.3.0 // indirect + github.com/prometheus/client_model v0.4.0 // indirect + github.com/prometheus/common v0.42.0 // indirect + github.com/prometheus/procfs v0.9.0 // indirect + github.com/rogpeppe/go-internal v1.10.0 // indirect + github.com/spf13/cobra v1.6.1 // indirect github.com/spf13/pflag v1.0.5 // indirect go.uber.org/atomic v1.7.0 // indirect go.uber.org/multierr v1.6.0 // indirect - go.uber.org/zap v1.21.0 // indirect - golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1 // indirect - golang.org/x/sys v0.5.0 // indirect - golang.org/x/term v0.5.0 // indirect - golang.org/x/text v0.7.0 // indirect - golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect - gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect + go.uber.org/zap v1.24.0 // indirect + golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd // indirect + golang.org/x/oauth2 v0.5.0 // indirect + golang.org/x/sync v0.1.0 // indirect + golang.org/x/sys v0.8.0 // indirect + golang.org/x/term v0.8.0 // indirect + golang.org/x/text v0.9.0 // indirect + golang.org/x/time v0.3.0 // indirect + gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect google.golang.org/appengine v1.6.7 // indirect - google.golang.org/protobuf v1.28.1 // indirect + google.golang.org/protobuf v1.30.0 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/apiextensions-apiserver v0.25.2 // indirect - k8s.io/component-base v0.25.2 // indirect - k8s.io/klog/v2 v2.80.1 // indirect - k8s.io/kube-openapi v0.0.0-20220928191237-829ce0c27909 // indirect - k8s.io/utils v0.0.0-20221011040102-427025108f67 // indirect - sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect + k8s.io/apiextensions-apiserver v0.27.2 // indirect + k8s.io/component-base v0.27.2 // indirect + k8s.io/klog/v2 v2.90.1 // indirect + k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect + k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect + sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect sigs.k8s.io/yaml v1.3.0 // indirect ) diff --git a/go.sum b/go.sum index f3fe5edcacc..d1c9c19f04e 100644 --- a/go.sum +++ b/go.sum @@ -48,6 +48,35 @@ github.com/Azure/aad-pod-identity v1.8.13 h1:/gUmacA0z7+lsOlGYAYzkGvAB/KOkUe5Pb6 github.com/Azure/aad-pod-identity v1.8.13/go.mod h1:uxM/lsPo/abzqdk0rwEm4SqO9pavMz0fCmKpYAj4HL8= github.com/Azure/azure-sdk-for-go v57.2.0+incompatible h1:zoJapafogLazoyp0x9aQENzNNqxvU6pnGtb2P8/i+HI= github.com/Azure/azure-sdk-for-go v57.2.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0 h1:8kDqDngH+DmVBiCtIjCFTGa7MBnsIOkF9IccInFEbjk= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0 h1:vcYCAze6p19qBW7MhZybIsqD8sMV8js0NyQM8JDnVtg= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0/go.mod h1:OQeznEEkTZ9OrhHJoDD8ZDq51FHgXjqtP9z6bEwBq9U= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0 h1:sXr+ck84g/ZlZUOZiNELInmMgOsuGwdjjVkEIde0OtY= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0/go.mod h1:okt5dMMTOFjX/aovMlrjvvXoPMBVSPzk9185BT0+eZM= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appconfiguration/armappconfiguration v1.0.0 h1:5reBX+9pzc5xp9VrjSUoPrE8Wl/3y7wjfHzGjXzJbNk= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appconfiguration/armappconfiguration v1.0.0/go.mod h1:YW819qVTop21KS8LJLEf3Z47LBaRHIaz/IRLZpKqTIU= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice v1.0.0 h1:figxyQZXzZQIcP3njhC68bYUiTw45J8/SsHaLW8Ax0M= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice v1.0.0/go.mod h1:TmlMW4W5OvXOmOyKNnor8nlMMiO1ctIyzmHme/VHsrA= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos v1.0.0 h1:Fv8iibGn1eSw0lt2V3cTsuokBEnOP+M//n8OiMcCgTM= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos v1.0.0/go.mod h1:Qpe/qN9d5IQ7WPtTXMRCd6+BWTnhi3sxXVys6oJ5Vho= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/iothub/armiothub v1.1.1 h1:Dh8SxVXcSyQN76LI4IseKyrnqyTUsx336Axg8zDYSMs= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/iothub/armiothub v1.1.1/go.mod h1:fqmmortNEICbosf7BfNVO3wWs6Cz/pkxYfExJC97Vy8= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/machinelearning/armmachinelearning v1.0.0 h1:KWvCVjnOTKCZAlqED5KPNoN9AfcK2BhUeveLdiwy33Q= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/machinelearning/armmachinelearning v1.0.0/go.mod h1:qNN4I5AKYbXMLriS9XKebBw8EVIQkX6tJzrdtjOoJ4I= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/redis/armredis v1.0.0 h1:nmpTBgRg1HynngFYICRhceC7s5dmbKN9fJ/XQz/UQ2I= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/redis/armredis v1.0.0/go.mod h1:3yjiOtnkVociBTlF7UZrwAGfJrGaOCsvtVS4HzNajxQ= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/search/armsearch v1.1.0 h1:SCO2mlFZrUMU8MmA5Y6EszSm2OGumuPBXFQXEvkESvk= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/search/armsearch v1.1.0/go.mod h1:0W36ZU3i/Y81U7D1udQyD8qA3SD4tV7ayADNymIdHBo= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus v1.1.1 h1:h+ZMdUM0/8oVqHjY9+1rupIvT0craBLapKhuzWui9lo= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus v1.1.1/go.mod h1:Ad79PTMmXBLbmMbRJkfefudJNxzFHfszKYadXA8SDSw= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.0.0 h1:TMEyRFKh1zaSPmoQh3kxK+xRAYVq8guCI/7SMO0F3KY= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.0.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/subscription/armsubscription v1.0.0 h1:vsovXlTyKHZXnqzQyt7QMVkwpJBDkHchQL53qXaGBRY= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/subscription/armsubscription v1.0.0/go.mod h1:UZy1vHcRdEymNP1d6fTrvYHpSdkXoUdowfrvffcQOOU= +github.com/Azure/azure-service-operator/v2 v2.3.0 h1:kG0eY4bSrGOdRYTy28PbdpYLuyX6k8uv64vRx/oN4c0= +github.com/Azure/azure-service-operator/v2 v2.3.0/go.mod h1:q0DFanVTyiTyRqeMu+s16zokLNXsLkCzoD4QcMmdAi0= +github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= github.com/Azure/go-autorest/autorest v0.11.19/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA= @@ -75,6 +104,8 @@ github.com/Azure/go-autorest/logger v0.2.1 h1:IG7i4p/mDa2Ce4TRyAO8IHnVhAVF3RFU+Z github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= +github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0 h1:OBhqkivkhkMqLPymWEppkm7vgPQY2XsHoEkaMQ0AdZY= +github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDmCTgBzIEPFElEF+FK0SdjAor06dRq2Go927dnQ6o= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= @@ -86,6 +117,7 @@ github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk5 github.com/alexbrainman/sspi v0.0.0-20180613141037-e580b900e9f5 h1:P5U+E4x5OkVEKQDklVPmzs71WM56RTTRqV4OrDC//Y4= github.com/alexbrainman/sspi v0.0.0-20180613141037-e580b900e9f5/go.mod h1:976q2ETgjT2snVCf2ZaBnyBbVoPERGjUz+0sofzEfro= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= @@ -98,6 +130,8 @@ github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghf github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -106,6 +140,9 @@ github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGX github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -114,6 +151,8 @@ github.com/denisenkom/go-mssqldb v0.10.0/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27 github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U= github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE= +github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI= +github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/emicklei/go-restful/v3 v3.9.0 h1:XwGDlfxEnQZzuopoqxwSEllNcCOM9DhhFyhFIIGKwxE= github.com/emicklei/go-restful/v3 v3.9.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc= @@ -136,6 +175,8 @@ github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMo github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI= github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU= +github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= +github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -154,11 +195,17 @@ github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ= github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/zapr v1.2.3 h1:a9vnzlIBPQBBkeaR9IuMUfmVOrQlkoC4YfPoFkX3T7A= github.com/go-logr/zapr v1.2.3/go.mod h1:eIauM6P8qSvTw5o2ez6UEAfGjQKrxQTl5EoK+Qa2oG4= +github.com/go-logr/zapr v1.2.4 h1:QHVo+6stLbfJmYGkQ7uGHUCu5hnAFAj6mDe6Ea0SeOo= +github.com/go-logr/zapr v1.2.4/go.mod h1:FyHWQIzQORZ0QVE1BtVHv3cKtNLuXsbNLtpuhNapBOA= github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/jsonpointer v0.19.5 h1:gZr+CIYByUqjcgeLXnQu2gHYQC9o73G2XUeOFYEICuY= github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/jsonpointer v0.19.6 h1:eCs3fxoIi3Wh6vtgmLTOjdhSpiqphQ+DaPn38N2ZdrE= +github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs= github.com/go-openapi/jsonreference v0.20.0 h1:MYlu0sBgChmCfJxxUKZ8g1cPWFOB37YSZqewK7OKeyA= github.com/go-openapi/jsonreference v0.20.0/go.mod h1:Ag74Ico3lPc+zR+qjn4XBUmXymS4zJbYVCZmcgkasdo= +github.com/go-openapi/jsonreference v0.20.1 h1:FBLnyygC4/IZZr893oiomc9XaghoveYTrLC1F86HID8= +github.com/go-openapi/jsonreference v0.20.1/go.mod h1:Bl1zwGIM8/wsvqjsOQLJ/SH+En5Ap4rVB5KVcIDZG2k= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-openapi/swag v0.22.3 h1:yMBqmnQ0gyZvEb/+KzuWZOXgllrXT4SADYbvDaXHv/g= github.com/go-openapi/swag v0.22.3/go.mod h1:UzaqsxGiab7freDnrUUra0MwWfN/q7tE4j+VcZ0yl14= @@ -173,9 +220,12 @@ github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRx github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-jwt/jwt/v4 v4.2.0 h1:besgBTC8w8HjP6NzQdxwKH9Z5oQMZ24ThTrHp3cZ8eU= github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= +github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOWzg= +github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= @@ -211,9 +261,12 @@ github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaS github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0= github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= @@ -258,10 +311,14 @@ github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/securecookie v1.1.1 h1:miw7JPhV+b/lAHSXz4qd/nN9jRiAFV5FwjeKyCS8BvQ= github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4= github.com/gorilla/sessions v1.2.0 h1:S7P+1Hm5V/AT9cjEcUD5uDaQSX0OE577aCXgoaKpYbQ= github.com/gorilla/sessions v1.2.0/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -276,6 +333,14 @@ github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1: github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/imdario/mergo v0.3.13 h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk= github.com/imdario/mergo v0.3.13/go.mod h1:4lJ1jqUDcsbIECGy0RUJAXNIhg+6ocWgb1ALK2O4oXg= +github.com/inconshreveable/mousetrap v1.0.1 h1:U3uMjPSQEBMNp1lFxmllqCPM6P5u/Xq7Pgzkat/bFNc= +github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a h1:bbPeKD0xmW/Y25WS6cokEszi5g+S0QxI/d45PkRi7Nk= +github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= +github.com/jackc/pgx/v5 v5.3.1 h1:Fcr8QJ1ZeLi5zsPZqQeUZhNhxfkkKBOgJuYkJHoBOtU= +github.com/jackc/pgx/v5 v5.3.1/go.mod h1:t3JDKnCBlYIc0ewLF0Q7B8MXmoIaBOZj/ic7iHozM/8= github.com/jcmturner/aescts/v2 v2.0.0 h1:9YKLH6ey7H4eDBXW8khjYslgyqG2xZikXP0EQFKrle8= github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs= github.com/jcmturner/dnsutils/v2 v2.0.0 h1:lltnkeZGL0wILNvrNiVCR6Ro5PGU/SeBvVO/8c/iPbo= @@ -311,9 +376,13 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/lib/pq v1.6.0 h1:I5DPxhYJChW9KYc66se+oKFFQX6VuQrKiprsX6ivRZc= github.com/lib/pq v1.6.0/go.mod h1:4vXEAYvW1fRQ2/FhZ78H73A60MHw1geSm145z2mdY1g= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= @@ -327,8 +396,12 @@ github.com/marstr/randname v0.0.0-20181206212954-d5b0f288ab8c/go.mod h1:Xc224oUX github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions v1.0.2 h1:hAHbPm5IJGijwng3PWk09JkG9WeqChjprR5s9bBZ+OM= github.com/matttproud/golang_protobuf_extensions v1.0.2/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= +github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -336,10 +409,12 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA= github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= @@ -348,10 +423,16 @@ github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108 github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE= github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU= github.com/onsi/ginkgo/v2 v2.1.6 h1:Fx2POJZfKRQcM1pH49qSZiYeu319wji004qX+GDovrU= +github.com/onsi/ginkgo/v2 v2.9.5 h1:+6Hr4uxzP4XIUyAkg61dWBw8lb/gc4/X5luuxN/EC+Q= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= github.com/onsi/gomega v1.20.1 h1:PA/3qinGoukvymdIDV8pii6tiZgC8kbmJO6Z5+b002Q= github.com/onsi/gomega v1.20.1/go.mod h1:DtrZpjmvpn2mPm4YWQa0/ALMDj9v4YxLgojwPeREyVo= +github.com/onsi/gomega v1.27.7 h1:fVih9JD6ogIiHUN6ePK7HJidyEDpWGVB5mzM7cWNXoU= +github.com/onsi/gomega v1.27.7/go.mod h1:1p8OOlwo2iUUDsHnOrjE5UKYJ+e3W8eQ3qSlRahPmr4= +github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= +github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8 h1:KoWmjvw+nsYOo29YJK9vDA65RGE3NrOnUtO7a+RF9HU= +github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -365,17 +446,23 @@ github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqr github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_golang v1.13.0 h1:b71QUfeo5M8gq2+evJdTPfZhYMAU0uKPkyPJ7TPsloU= github.com/prometheus/client_golang v1.13.0/go.mod h1:vTeo+zgvILHsnnj/39Ou/1fPN5nJFOEMgftOUOmlvYQ= +github.com/prometheus/client_golang v1.15.1 h1:8tXpTmJbyH5lydzFPoxSIJ0J46jdh3tylbvM1xCv0LI= +github.com/prometheus/client_golang v1.15.1/go.mod h1:e9yaBhRPU2pPNsZwE+JdQl0KEt1N9XgF6zxWmaC0xOk= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= +github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/common v0.37.0 h1:ccBbHCgIiT9uSoFY0vX8H3zsNR5eLt17/RQLUvn8pXE= github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA= +github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= +github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= @@ -383,27 +470,38 @@ github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1 github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo= github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= +github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.3.0 h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/sethvargo/go-password v0.1.2 h1:fhBF4thiPVKEZ7R6+CX46GWJiPyCyXshbeqZ7lqEeYo= github.com/sethvargo/go-password v0.1.2/go.mod h1:qKHfdSjT26DpHQWHWWR5+X4BI45jT31dg6j4RI2TEb0= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spf13/cobra v1.6.1 h1:o94oiPyS4KD1mPy2fmcYYHHfCxLqYjJOhGsCHFZtEzA= +github.com/spf13/cobra v1.6.1/go.mod h1:IOw/AERYS7UzyrGinqmz6HLUo219MORXGxhbaJUqzrY= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= @@ -427,11 +525,14 @@ go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= go.uber.org/goleak v1.1.12 h1:gZAh5/EyT/HQwlpkCy6wTpqfH9H8Lz8zbm3dZh+OyzA= +go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= go.uber.org/multierr v1.6.0 h1:y6IPFStTAIT5Ytl7/XYmHvzXQ7S3g/IeZW9hyZ5thw4= go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.21.0 h1:WefMeulhovoZ2sYXz7st6K0sLj7bBhpiFaud4r4zST8= go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= +go.uber.org/zap v1.24.0 h1:FiJd5l1UOLj0wCgbSE0rwwXHzEdAZS6hiiSnxJN/D60= +go.uber.org/zap v1.24.0/go.mod h1:2kMP+WWQ8aoFoedH3T2sq6iJ2yDWpHbP0f6MQbS9Gkg= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= @@ -446,6 +547,8 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.8.0 h1:pd9TJtTueMTVQXzk8E2XESSMQDj/U7OUu0PqJqPXQjQ= +golang.org/x/crypto v0.8.0/go.mod h1:mRqEX+O9/h5TFCrQhkgjo2yKi0yYA+9ecGkdQoHrywE= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -456,6 +559,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd h1:zVFyTKZN/Q7mNRWSs1GOYnHM9NiFSJ54YVRsD0rNWT4= +golang.org/x/exp v0.0.0-20220414153411-bcd21879b8fd/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -527,6 +632,8 @@ golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -545,6 +652,8 @@ golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1 h1:3VPzK7eqH25j7GYw5w6g/GzNRc0/fYtrxz27z1gD4W0= golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.5.0 h1:HuArIo48skDwlrvM3sEdHXElYslAMsf3KwRkkW4MC4s= +golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -556,6 +665,8 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -610,6 +721,7 @@ golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -618,12 +730,17 @@ golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0 h1:n2a8QNdAb0sZNpU9R1ALUXBbY+w51fCQDN+7EdxNBsY= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.8.0 h1:n5xxQn2i3PC0yLAbjTpNT85q/Kgzcr2gIoX9OrJUols= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -635,11 +752,15 @@ golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20220922220347-f3bd1da661af h1:Yx9k8YCG3dvF87UAn2tu2HQLf2dt/eR1bXxpLMWeH+Y= golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= +golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= @@ -701,6 +822,8 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= gomodules.xyz/jsonpatch/v2 v2.2.0 h1:4pT439QV83L+G9FkcCriY6EkpcK6r6bK+A5FBUMI7qY= gomodules.xyz/jsonpatch/v2 v2.2.0/go.mod h1:WXp+iVDkoLQqPudfQ9GBlwB2eZ5DKOnjQZCYdOS8GPY= +gomodules.xyz/jsonpatch/v2 v2.3.0 h1:8NFhfS6gzxNqjLIYnZxg319wZ5Qjnx4m/CcX+Klzazc= +gomodules.xyz/jsonpatch/v2 v2.3.0/go.mod h1:AH3dM2RI6uoBZxn3LVrfvJ3E0/9dG4cSrbuBJT4moAY= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -834,11 +957,14 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/inf.v0 v0.9.1 h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc= @@ -874,27 +1000,47 @@ honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9 honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= k8s.io/api v0.25.2 h1:v6G8RyFcwf0HR5jQGIAYlvtRNrxMJQG1xJzaSeVnIS8= k8s.io/api v0.25.2/go.mod h1:qP1Rn4sCVFwx/xIhe+we2cwBLTXNcheRyYXwajonhy0= +k8s.io/api v0.27.2 h1:+H17AJpUMvl+clT+BPnKf0E3ksMAzoBBg7CntpSuADo= +k8s.io/api v0.27.2/go.mod h1:ENmbocXfBT2ADujUXcBhHV55RIT31IIEvkntP6vZKS4= k8s.io/apiextensions-apiserver v0.25.2 h1:8uOQX17RE7XL02ngtnh3TgifY7EhekpK+/piwzQNnBo= k8s.io/apiextensions-apiserver v0.25.2/go.mod h1:iRwwRDlWPfaHhuBfQ0WMa5skdQfrE18QXJaJvIDLvE8= +k8s.io/apiextensions-apiserver v0.27.2 h1:iwhyoeS4xj9Y7v8YExhUwbVuBhMr3Q4bd/laClBV6Bo= +k8s.io/apiextensions-apiserver v0.27.2/go.mod h1:Oz9UdvGguL3ULgRdY9QMUzL2RZImotgxvGjdWRq6ZXQ= k8s.io/apimachinery v0.25.2 h1:WbxfAjCx+AeN8Ilp9joWnyJ6xu9OMeS/fsfjK/5zaQs= k8s.io/apimachinery v0.25.2/go.mod h1:hqqA1X0bsgsxI6dXsJ4HnNTBOmJNxyPp8dw3u2fSHwA= +k8s.io/apimachinery v0.27.2 h1:vBjGaKKieaIreI+oQwELalVG4d8f3YAMNpWLzDXkxeg= +k8s.io/apimachinery v0.27.2/go.mod h1:XNfZ6xklnMCOGGFNqXG7bUrQCoR04dh/E7FprV6pb+E= k8s.io/client-go v0.25.2 h1:SUPp9p5CwM0yXGQrwYurw9LWz+YtMwhWd0GqOsSiefo= k8s.io/client-go v0.25.2/go.mod h1:i7cNU7N+yGQmJkewcRD2+Vuj4iz7b30kI8OcL3horQ4= +k8s.io/client-go v0.27.2 h1:vDLSeuYvCHKeoQRhCXjxXO45nHVv2Ip4Fe0MfioMrhE= +k8s.io/client-go v0.27.2/go.mod h1:tY0gVmUsHrAmjzHX9zs7eCjxcBsf8IiNe7KQ52biTcQ= k8s.io/component-base v0.25.2 h1:Nve/ZyHLUBHz1rqwkjXm/Re6IniNa5k7KgzxZpTfSQY= k8s.io/component-base v0.25.2/go.mod h1:90W21YMr+Yjg7MX+DohmZLzjsBtaxQDDwaX4YxDkl60= +k8s.io/component-base v0.27.2 h1:neju+7s/r5O4x4/txeUONNTS9r1HsPbyoPBAtHsDCpo= +k8s.io/component-base v0.27.2/go.mod h1:5UPk7EjfgrfgRIuDBFtsEFAe4DAvP3U+M8RTzoSJkpo= k8s.io/klog/v2 v2.80.1 h1:atnLQ121W371wYYFawwYx1aEY2eUfs4l3J72wtgAwV4= k8s.io/klog/v2 v2.80.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= +k8s.io/klog/v2 v2.90.1 h1:m4bYOKall2MmOiRaR1J+We67Do7vm9KiQVlT96lnHUw= +k8s.io/klog/v2 v2.90.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= k8s.io/kube-openapi v0.0.0-20220928191237-829ce0c27909 h1:q/70bz7C1/LGuQu/JBX7Fpi55CwcCts/wbvlehe0RRo= k8s.io/kube-openapi v0.0.0-20220928191237-829ce0c27909/go.mod h1:+Axhij7bCpeqhklhUTe3xmOn6bWxolyZEeyaFpjGtl4= +k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f h1:2kWPakN3i/k81b0gvD5C5FJ2kxm1WrQFanWchyKuqGg= +k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f/go.mod h1:byini6yhqGC14c3ebc/QwanvYwhuMWF6yz2F8uwW8eg= k8s.io/utils v0.0.0-20221011040102-427025108f67 h1:ZmUY7x0cwj9e7pGyCTIalBi5jpNfigO5sU46/xFoF/w= k8s.io/utils v0.0.0-20221011040102-427025108f67/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= +k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPBjNSSOMowRZxxsY= +k8s.io/utils v0.0.0-20230209194617-a36077c30491/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= sigs.k8s.io/controller-runtime v0.13.0 h1:iqa5RNciy7ADWnIc8QxCbOX5FEKVR3uxVxKHRMc2WIQ= sigs.k8s.io/controller-runtime v0.13.0/go.mod h1:Zbz+el8Yg31jubvAEyglRZGdLAjplZl+PgtYNI6WNTI= +sigs.k8s.io/controller-runtime v0.15.0 h1:ML+5Adt3qZnMSYxZ7gAverBLNPSMQEibtzAgp0UPojU= +sigs.k8s.io/controller-runtime v0.15.0/go.mod h1:7ngYvp1MLT+9GeZ+6lH3LOlcHkp/+tzA/fmHa4iq9kk= sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 h1:iXTIw73aPyC+oRdyqqvVJuloN1p0AC/kzH07hu3NE+k= sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= +sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo= +sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0= sigs.k8s.io/structured-merge-diff/v4 v4.2.3 h1:PRbqxJClWWYMNV1dhaG4NsibJbArud9kFxnAMREiWFE= sigs.k8s.io/structured-merge-diff/v4 v4.2.3/go.mod h1:qjx8mGObPmV2aSZepjQjbmb2ihdVs8cGKBraizNC69E= sigs.k8s.io/yaml v1.3.0 h1:a2VclLzOGrwOHDiV8EfBGhvjHvP46CtW5j6POvhYGGo= diff --git a/testing.txt b/testing.txt new file mode 100644 index 00000000000..91e0261c4b1 --- /dev/null +++ b/testing.txt @@ -0,0 +1,111026 @@ +[controller:test-integration-envtest] 2023/09/08 21:19:46 Running test setup +[controller:test-integration-envtest] 2023/09/08 21:19:46 Done with test setup +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:19:46Z] "msg"="Starting envtest" +[controller:test-integration-envtest] 2023/09/08 21:19:46 Creating shared envtest environment: SubscriptionID:8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/TenantID:72f988bf-86f1-41af-91ab-2d7cd011db47/ClientID:954d4203-089b-43a8-b725-0e8fd05d5ced/PodNamespace:/OperatorMode:watchers-and-webhooks/TargetNamespaces:/SyncPeriod:/ResourceManagerEndpoint:https://management.azure.com/ResourceManagerAudience:https://management.core.windows.net//AzureAuthorityHost:https://login.microsoftonline.com//UseWorkloadIdentityAuth:false/Replaying:true +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:19:46 Starting envtest +[controller:test-integration-envtest] 2023/09/08 21:20:05 Creating & starting controller-runtime manager +[controller:test-integration-envtest] 2023/09/08 21:20:05 Waiting for webhook server to start +[controller:test-integration-envtest] 2023/09/08 21:20:05 Webhook server started +[controller:test-integration-envtest] 2023/09/08 21:20:05 Waiting for watchers to start +[controller:test-integration-envtest] 2023/09/08 21:20:07 Watchers started +[controller:test-integration-envtest] 2023/09/08 21:20:08 http: TLS handshake error from 127.0.0.1:36746: EOF +[controller:test-integration-envtest] 2023/09/08 21:20:09 http: TLS handshake error from 127.0.0.1:36756: EOF +[controller:test-integration-envtest] 2023/09/08 21:20:09 http: TLS handshake error from 127.0.0.1:36766: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="870" generation=1 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="868" generation=1 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="872" generation=1 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="869" generation=1 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="876" generation=1 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="882" generation=1 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:11Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="879" generation=1 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="881" generation=1 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="880" generation=1 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh\",\"location\":\"westus2\",\"name\":\"asotest-rg-nbkbyh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua\",\"location\":\"westus2\",\"name\":\"asotest-rg-lnasua\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp\",\"location\":\"westus2\",\"name\":\"asotest-rg-vjdhzp\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr\",\"location\":\"westus2\",\"name\":\"asotest-rg-ardjnr\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="884" generation=1 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm\",\"location\":\"westus2\",\"name\":\"asotest-rg-nxirwm\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="889" generation=1 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="890" generation=1 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] 2023/09/08 21:20:12 http: TLS handshake error from 127.0.0.1:36804: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="873" generation=1 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="874" generation=1 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="893" generation=1 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="892" generation=1 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="871" generation=1 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="894" generation=1 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="896" generation=1 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="897" generation=1 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk\",\"location\":\"westus2\",\"name\":\"asotest-rg-bywqwk\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri\",\"location\":\"westus2\",\"name\":\"asotest-rg-qqarri\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="900" generation=1 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-ecylaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="907" generation=1 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="914" generation=1 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="910" generation=1 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="913" generation=1 uid="630b562c-8d17-4857-b6b1-8fe3d5ac2c8e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="applying ownership" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] 2023/09/08 21:20:12 http: TLS handshake error from 127.0.0.1:36878: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="912" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="applying ownership" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="915" generation=1 uid="46e65403-8680-4a2b-9e93-a9f7d317e380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vjdhzp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="applying ownership" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Set owner reference" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ardjnr" +[controller:test-integration-envtest] 2023/09/08 21:20:12 http: TLS handshake error from 127.0.0.1:36904: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="918" generation=1 uid="241cbb8e-1008-402b-80c1-bb548b2259a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="applying ownership" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="917" generation=1 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="applying ownership" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Set owner reference" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="923" generation=1 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="applying ownership" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="920" generation=1 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="applying ownership" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="924" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="922" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="applying ownership" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Set owner reference" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bywqwk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="925" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="adding finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="919" generation=1 uid="340f29e1-b490-4078-9e83-962130ecbcab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="applying ownership" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Set owner reference" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Set owner reference" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Set owner reference" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="adding finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="adding finalizer" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="928" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="adding finalizer" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="adding finalizer" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Set owner reference" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Set owner reference" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Set owner reference" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="930" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="933" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="applying ownership" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="adding finalizer" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="adding finalizer" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Set owner reference" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="adding finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="adding finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="932" generation=1 uid="630b562c-8d17-4857-b6b1-8fe3d5ac2c8e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] 2023/09/08 21:20:12 http: TLS handshake error from 127.0.0.1:36922: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="935" generation=1 uid="241cbb8e-1008-402b-80c1-bb548b2259a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="936" generation=1 uid="46e65403-8680-4a2b-9e93-a9f7d317e380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vjdhzp", UID:"9a5e49f1-323b-4a63-8d90-6935c86d2194", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza"} conditions="[]" owner="asotest-rg-vjdhzp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Determined CreateOrUpdate action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="adding finalizer" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] 2023/09/08 21:20:12 http: TLS handshake error from 127.0.0.1:36924: read tcp 127.0.0.1:35815->127.0.0.1:36924: read: connection reset by peer +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Determined CreateOrUpdate action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="945" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Owner does not yet exist" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Determined CreateOrUpdate action" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="About to send resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Successfully sent resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Resource successfully created/updated" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="updated resource in etcd" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="938" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="About to send resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Successfully sent resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Resource successfully created/updated" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Got ARM status" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-appservice\",\"properties\":{\"elasticScaleEnabled\":false,\"geoRegion\":\"West US\",\"hyperV\":false,\"isSpot\":false,\"isXenon\":false,\"maximumElasticWorkerCount\":1,\"maximumNumberOfWorkers\":1,\"numberOfSites\":0,\"numberOfWorkers\":0,\"perSiteScaling\":false,\"provisioningState\":\"Succeeded\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-nbkbyh\",\"status\":\"Ready\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"zoneRedundant\":false},\"sku\":{\"capacity\":0,\"family\":\"F\",\"name\":\"F1\",\"size\":\"F1\",\"tier\":\"Free\"},\"type\":\"Microsoft.Web/serverfarms\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="About to send resource to Azure" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Got ARM status" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-appservice\",\"properties\":{\"elasticScaleEnabled\":false,\"geoRegion\":\"West US\",\"hyperV\":false,\"isSpot\":false,\"isXenon\":false,\"maximumElasticWorkerCount\":1,\"maximumNumberOfWorkers\":1,\"numberOfSites\":0,\"numberOfWorkers\":0,\"perSiteScaling\":false,\"provisioningState\":\"Succeeded\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-ardjnr\",\"status\":\"Ready\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"zoneRedundant\":false},\"sku\":{\"capacity\":0,\"family\":\"F\",\"name\":\"F1\",\"size\":\"F1\",\"tier\":\"Free\"},\"type\":\"Microsoft.Web/serverfarms\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="947" generation=1 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="952" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="953" generation=1 uid="340f29e1-b490-4078-9e83-962130ecbcab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="951" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="About to send resource to Azure" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="950" generation=1 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"33c85cc0-f044-4e23-a7ab-5fc21c866f95", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Successfully sent resource to Azure" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="956" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="About to send resource to Azure" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="959" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Owner does not yet exist" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="About to send resource to Azure" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Successfully sent resource to Azure" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="954" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="964" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="965" generation=1 uid="241cbb8e-1008-402b-80c1-bb548b2259a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Done with reconcile" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Resource creation/update failure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE UNAVAILABLE\n--------------------------------------------------------------------------------\n{\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\",\n \"Target\": null,\n \"Details\": [\n {\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n },\n {\n \"Code\": \"NotFound\"\n },\n {\n \"ErrorEntity\": {\n \"ExtendedCode\": \"51004\",\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\n \"Parameters\": [\n \"ServerFarm\",\n \"aso-sample-appservice\"\n ],\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n }\n }\n ],\n \"Innererror\": null\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] SiteController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE UNAVAILABLE +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice.", +[controller:test-integration-envtest] "Target": null, +[controller:test-integration-envtest] "Details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound" +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "ErrorEntity": { +[controller:test-integration-envtest] "ExtendedCode": "51004", +[controller:test-integration-envtest] "MessageTemplate": "Cannot find {0} with name {1}.", +[controller:test-integration-envtest] "Parameters": [ +[controller:test-integration-envtest] "ServerFarm", +[controller:test-integration-envtest] "aso-sample-appservice" +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Innererror": null +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="969" generation=1 uid="46e65403-8680-4a2b-9e93-a9f7d317e380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vjdhzp", UID:"9a5e49f1-323b-4a63-8d90-6935c86d2194", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/qJhqDTUQvSS5j7oS0QZg0oSG3Vp3vL1Kj-xwQVOBxv0?api-version=2022-05-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza?api-version=2022-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-vjdhzp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Done with reconcile" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Resource creation/update failure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE UNAVAILABLE\n--------------------------------------------------------------------------------\n{\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\",\n \"Target\": null,\n \"Details\": [\n {\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n },\n {\n \"Code\": \"NotFound\"\n },\n {\n \"ErrorEntity\": {\n \"ExtendedCode\": \"51004\",\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\n \"Parameters\": [\n \"ServerFarm\",\n \"aso-sample-appservice\"\n ],\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n }\n }\n ],\n \"Innererror\": null\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] SiteController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE UNAVAILABLE +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice.", +[controller:test-integration-envtest] "Target": null, +[controller:test-integration-envtest] "Details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound" +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "ErrorEntity": { +[controller:test-integration-envtest] "ExtendedCode": "51004", +[controller:test-integration-envtest] "MessageTemplate": "Cannot find {0} with name {1}.", +[controller:test-integration-envtest] "Parameters": [ +[controller:test-integration-envtest] "ServerFarm", +[controller:test-integration-envtest] "aso-sample-appservice" +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Innererror": null +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="977" generation=1 uid="630b562c-8d17-4857-b6b1-8fe3d5ac2c8e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ServerFarmController "msg"="Done with reconcile" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="979" generation=1 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ed1d82ac-f521-494e-a53b-5c80f73d4064?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="975" generation=1 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/451b4ea5-798e-4fb7-b580-7958f7f13889?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="972" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Owner does not yet exist" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="969" generation=1 uid="46e65403-8680-4a2b-9e93-a9f7d317e380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vjdhzp", UID:"9a5e49f1-323b-4a63-8d90-6935c86d2194", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/qJhqDTUQvSS5j7oS0QZg0oSG3Vp3vL1Kj-xwQVOBxv0?api-version=2022-05-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza?api-version=2022-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-vjdhzp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Determined CreateOrUpdate action" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Resource successfully created/updated" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Got ARM status" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza\",\"location\":\"westus2\",\"name\":\"asotestvaurza\",\"properties\":{\"creationDate\":\"2023-03-23T22:50:47+00:00\",\"disableLocalAuth\":false,\"enablePurgeProtection\":false,\"encryption\":{},\"endpoint\":\"https://asotestvaurza.azconfig.io\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Disabled\",\"softDeleteRetentionInDays\":7},\"sku\":{\"name\":\"standard\"},\"systemData\":{\"createdAt\":\"2023-03-23T22:50:47+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2023-03-23T22:50:47+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.AppConfiguration/configurationStores\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Getting Kubernetes resources for export" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="updated resource in etcd" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="983" generation=1 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"33c85cc0-f044-4e23-a7ab-5fc21c866f95", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/298169cf-28b9-4138-bcfc-46145e8efb44?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="984" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="975" generation=1 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/451b4ea5-798e-4fb7-b580-7958f7f13889?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="979" generation=1 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ed1d82ac-f521-494e-a53b-5c80f73d4064?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="987" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="983" generation=1 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"33c85cc0-f044-4e23-a7ab-5fc21c866f95", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/298169cf-28b9-4138-bcfc-46145e8efb44?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource not created yet, will check again" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="990" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Encountered error, re-queuing..." name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="987" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="992" generation=1 uid="340f29e1-b490-4078-9e83-962130ecbcab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Encountered error, re-queuing..." name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="991" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="975" generation=1 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/451b4ea5-798e-4fb7-b580-7958f7f13889?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="979" generation=1 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ed1d82ac-f521-494e-a53b-5c80f73d4064?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="993" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="updated resource in etcd" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="994" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="992" generation=1 uid="340f29e1-b490-4078-9e83-962130ecbcab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="990" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource successfully created/updated" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Got ARM status" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse\",\"kind\":\"StorageV2\",\"location\":\"eastus2\",\"name\":\"asotestsynapse\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"isHnsEnabled\":true,\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestsynapse.blob.core.windows.net/\",\"dfs\":\"https://asotestsynapse.dfs.core.windows.net/\",\"file\":\"https://asotestsynapse.file.core.windows.net/\",\"queue\":\"https://asotestsynapse.queue.core.windows.net/\",\"table\":\"https://asotestsynapse.table.core.windows.net/\",\"web\":\"https://asotestsynapse.z20.web.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="993" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="994" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource successfully created/updated" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Got ARM status" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"samplekubestoragebeta\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://samplekubestoragebeta.blob.core.windows.net/\",\"dfs\":\"https://samplekubestoragebeta.dfs.core.windows.net/\",\"file\":\"https://samplekubestoragebeta.file.core.windows.net/\",\"queue\":\"https://samplekubestoragebeta.queue.core.windows.net/\",\"table\":\"https://samplekubestoragebeta.table.core.windows.net/\",\"web\":\"https://samplekubestoragebeta.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="997" generation=1 uid="46e65403-8680-4a2b-9e93-a9f7d317e380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vjdhzp", UID:"9a5e49f1-323b-4a63-8d90-6935c86d2194", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-vjdhzp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] ConfigurationStoreController "msg"="Done with reconcile" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="983" generation=1 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"33c85cc0-f044-4e23-a7ab-5fc21c866f95", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/298169cf-28b9-4138-bcfc-46145e8efb44?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="996" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Resource creation/update failure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE UNAVAILABLE\n--------------------------------------------------------------------------------\n{\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\",\n \"Target\": null,\n \"Details\": [\n {\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n },\n {\n \"Code\": \"NotFound\"\n },\n {\n \"ErrorEntity\": {\n \"ExtendedCode\": \"51004\",\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\n \"Parameters\": [\n \"ServerFarm\",\n \"aso-sample-appservice\"\n ],\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n }\n }\n ],\n \"Innererror\": null\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="994" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] SiteController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE UNAVAILABLE +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice.", +[controller:test-integration-envtest] "Target": null, +[controller:test-integration-envtest] "Details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound" +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "ErrorEntity": { +[controller:test-integration-envtest] "ExtendedCode": "51004", +[controller:test-integration-envtest] "MessageTemplate": "Cannot find {0} with name {1}.", +[controller:test-integration-envtest] "Parameters": [ +[controller:test-integration-envtest] "ServerFarm", +[controller:test-integration-envtest] "aso-sample-appservice" +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Innererror": null +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Got ARM status" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"asotestblzyzn\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestblzyzn.blob.core.windows.net/\",\"dfs\":\"https://asotestblzyzn.dfs.core.windows.net/\",\"file\":\"https://asotestblzyzn.file.core.windows.net/\",\"queue\":\"https://asotestblzyzn.queue.core.windows.net/\",\"table\":\"https://asotestblzyzn.table.core.windows.net/\",\"web\":\"https://asotestblzyzn.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Successfully sent resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Resource successfully created/updated" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Got ARM status" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-function\",\"properties\":{\"availabilityState\":\"Normal\",\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"containerSize\":0,\"customDomainVerificationId\":\"D75F6A26BF768430F1101BCA50DCDA98D6BC7038EE0BEC81098E0102BE82AD25\",\"dailyMemoryTimeQuota\":0,\"defaultHostName\":\"aso-sample-function.azurewebsites.net\",\"enabled\":true,\"enabledHostNames\":[\"aso-sample-function.azurewebsites.net\",\"aso-sample-function.scm.azurewebsites.net\"],\"hostNameSslStates\":[{\"hostType\":\"Standard\",\"name\":\"aso-sample-function.azurewebsites.net\",\"sslState\":\"Disabled\"},{\"hostType\":\"Repository\",\"name\":\"aso-sample-function.scm.azurewebsites.net\",\"sslState\":\"Disabled\"}],\"hostNames\":[\"aso-sample-function.azurewebsites.net\"],\"hostNamesDisabled\":false,\"httpsOnly\":false,\"hyperV\":false,\"isXenon\":false,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"lastModifiedTimeUtc\":\"2022-10-19T19:46:01.2066667\",\"outboundIpAddresses\":\"138.91.247.218,23.99.91.136,104.209.35.1,104.40.24.117,104.40.31.43,104.40.28.13,40.112.243.59\",\"possibleOutboundIpAddresses\":\"138.91.247.218,23.99.91.136,104.209.35.1,104.40.24.117,104.40.31.43,104.40.28.13,104.209.35.73,23.99.94.29,104.209.39.62,104.209.32.196,104.209.32.219,104.209.33.74,104.209.42.243,104.209.43.117,40.112.190.217,40.112.185.192,40.118.212.2,40.118.134.196,40.118.131.102,40.118.131.255,40.118.129.38,40.118.212.93,104.40.19.83,40.112.190.96,40.83.184.22,104.40.18.82,40.83.188.42,40.83.189.34,138.91.158.176,104.40.24.239,40.112.243.59\",\"redundancyMode\":\"None\",\"repositorySiteName\":\"aso-sample-function\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-ardjnr\",\"scmSiteAlsoStopped\":false,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"siteConfig\":{\"acrUseManagedIdentityCreds\":false,\"alwaysOn\":false,\"functionAppScaleLimit\":0,\"http20Enabled\":false,\"linuxFxVersion\":\"\",\"minimumElasticInstanceCount\":0,\"numberOfWorkers\":1},\"state\":\"Running\",\"storageAccountRequired\":false,\"usageState\":\"Normal\",\"vnetContentShareEnabled\":false,\"vnetImagePullEnabled\":false,\"vnetRouteAllEnabled\":false},\"type\":\"Microsoft.Web/sites\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully created resource" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully created resource" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="987" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="994" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1001" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="987" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="993" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1007" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1010" generation=1 uid="340f29e1-b490-4078-9e83-962130ecbcab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] SiteController "msg"="Done with reconcile" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Got ARM status" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"asotestmmvput\",\"properties\":{\"accessTier\":\"Hot\",\"allowBlobPublicAccess\":true,\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"minimumTlsVersion\":\"TLS1_0\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestmmvput.blob.core.windows.net/\",\"dfs\":\"https://asotestmmvput.dfs.core.windows.net/\",\"file\":\"https://asotestmmvput.file.core.windows.net/\",\"queue\":\"https://asotestmmvput.queue.core.windows.net/\",\"table\":\"https://asotestmmvput.table.core.windows.net/\",\"web\":\"https://asotestmmvput.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountController "msg"="Successfully created resource" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:12Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="993" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="937" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1012" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1007" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:12Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1014" generation=1 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1008" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1012" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="updated resource in etcd" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1016" generation=1 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="Done with reconcile" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="990" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Encountered error, re-queuing..." name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="990" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="987" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="updated resource in etcd" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1019" generation=1 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"33c85cc0-f044-4e23-a7ab-5fc21c866f95", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="Done with reconcile" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="993" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="987" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1007" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="updated resource in etcd" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1022" generation=1 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="960" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="982" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1007" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Resource successfully created/updated" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="993" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Got ARM status" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz\",\"identity\":{\"principalId\":\"072ea900-5143-4339-9c2c-863829b02879\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"kind\":\"SignalR\",\"location\":\"westcentralus\",\"name\":\"asotestrhnmqz\",\"properties\":{\"cors\":{\"allowedOrigins\":[\"https://foo.com\",\"https://bar.com\"]},\"disableAadAuth\":false,\"disableLocalAuth\":false,\"externalIP\":\"20.69.0.206\",\"features\":[{\"flag\":\"ServiceMode\",\"value\":\"Classic\"},{\"flag\":\"EnableConnectivityLogs\",\"value\":\"True\"},{\"flag\":\"EnableMessagingLogs\",\"value\":\"True\"},{\"flag\":\"EnableLiveTrace\",\"value\":\"True\"}],\"hostName\":\"asotestrhnmqz.service.signalr.net\",\"hostNamePrefix\":\"asotestrhnmqz\",\"networkACLs\":{\"defaultAction\":\"Deny\",\"publicNetwork\":{\"allow\":[\"ClientConnection\"]}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"publicPort\":443,\"serverPort\":443,\"tls\":{\"clientCertEnabled\":false},\"upstream\":{\"templates\":[{\"categoryPattern\":\"*\",\"eventPattern\":\"connect,disconnect\",\"hubPattern\":\"*\",\"urlTemplate\":\"https://example.com/chat/api/connect\"}]},\"version\":\"1.0\"},\"sku\":{\"capacity\":1,\"name\":\"Standard_S1\",\"size\":\"S1\",\"tier\":\"Standard\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.SignalRService/SignalR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1025" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="978" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Successfully sent resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Resource successfully created/updated" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Got ARM status" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-function\",\"properties\":{\"availabilityState\":\"Normal\",\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"containerSize\":0,\"customDomainVerificationId\":\"D75F6A26BF768430F1101BCA50DCDA98D6BC7038EE0BEC81098E0102BE82AD25\",\"dailyMemoryTimeQuota\":0,\"defaultHostName\":\"aso-sample-function.azurewebsites.net\",\"enabled\":true,\"enabledHostNames\":[\"aso-sample-function.azurewebsites.net\",\"aso-sample-function.scm.azurewebsites.net\"],\"hostNameSslStates\":[{\"hostType\":\"Standard\",\"name\":\"aso-sample-function.azurewebsites.net\",\"sslState\":\"Disabled\"},{\"hostType\":\"Repository\",\"name\":\"aso-sample-function.scm.azurewebsites.net\",\"sslState\":\"Disabled\"}],\"hostNames\":[\"aso-sample-function.azurewebsites.net\"],\"hostNamesDisabled\":false,\"httpsOnly\":false,\"hyperV\":false,\"isXenon\":false,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"lastModifiedTimeUtc\":\"2023-03-23T23:00:17.4566667\",\"outboundIpAddresses\":\"168.61.69.167,23.101.195.107,168.61.75.119,23.99.78.247,23.101.201.166,23.101.195.101,40.112.243.99\",\"possibleOutboundIpAddresses\":\"168.61.69.167,23.101.195.107,168.61.75.119,23.99.78.247,23.101.201.166,23.101.195.101,23.99.70.179,23.101.202.97,23.99.64.125,23.99.64.18,23.99.72.26,104.40.70.48,23.99.77.243,104.40.70.121,104.40.64.161,104.40.68.12,168.61.73.154,168.61.70.172,104.40.68.113,137.135.36.27,168.61.65.79,104.40.68.172,168.61.69.219,104.40.69.83,104.40.69.115,23.100.45.103,104.40.65.22,168.61.70.53,168.61.77.56,168.61.68.130,40.112.243.99\",\"redundancyMode\":\"None\",\"repositorySiteName\":\"aso-sample-function\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-nbkbyh\",\"scmSiteAlsoStopped\":false,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"siteConfig\":{\"acrUseManagedIdentityCreds\":false,\"alwaysOn\":false,\"functionAppScaleLimit\":0,\"http20Enabled\":false,\"linuxFxVersion\":\"\",\"minimumElasticInstanceCount\":0,\"numberOfWorkers\":1},\"state\":\"Running\",\"storageAccountRequired\":false,\"usageState\":\"Normal\",\"vnetContentShareEnabled\":false,\"vnetImagePullEnabled\":false,\"vnetRouteAllEnabled\":false},\"type\":\"Microsoft.Web/sites\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Set owner reference" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Set owner reference" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1012" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1028" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWSkRIWlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="944" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="974" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Set owner reference" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Set owner reference" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1028" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWSkRIWlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1012" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1030" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragebeta", UID:"3770afc1-5c72-442a-9dda-543637f1e627", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="updated resource in etcd" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1036" generation=1 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="adding finalizer" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="adding finalizer" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="adding finalizer" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="adding finalizer" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1034" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1038" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="applying ownership" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1043" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1028" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWSkRIWlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1041" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1039" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1043" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1042" generation=1 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Done with reconcile" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Set owner reference" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Determined CreateOrUpdate action" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1028" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWSkRIWlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1043" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1044" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="About to send resource to Azure" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1048" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Successfully sent resource to Azure" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Resource successfully created/updated" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Got ARM status" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"protocolSettings\":{\"smb\":{}},\"shareDeleteRetentionPolicy\":{\"days\":7,\"enabled\":true}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/fileServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1046" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="adding finalizer" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"allowPermanentDelete\":false,\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Determined CreateOrUpdate action" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1045" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1051" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Determined CreateOrUpdate action" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="957" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Determined CreateOrUpdate action" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1052" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="About to send resource to Azure" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1057" generation=1 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragebeta", UID:"3770afc1-5c72-442a-9dda-543637f1e627", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Successfully sent resource to Azure" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Resource successfully created/updated" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Got ARM status" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default\",\"name\":\"DefaultManagementPolicy\",\"properties\":{\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"policy\":{\"rules\":[{\"definition\":{\"actions\":{\"version\":{\"delete\":{\"daysAfterCreationGreaterThan\":30}}},\"filters\":{\"blobIndexMatch\":null,\"blobTypes\":[\"blockBlob\"],\"prefixMatch\":[\"sample-container/blob1\"]}},\"enabled\":true,\"name\":\"test-rule\",\"type\":\"Lifecycle\"}]}},\"type\":\"Microsoft.Storage/storageAccounts/managementPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1043" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1058" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1028" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWSkRIWlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="About to send resource to Azure" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Successfully sent resource to Azure" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Resource successfully created/updated" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Got ARM status" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/tableServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="About to send resource to Azure" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Successfully sent resource to Azure" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Resource successfully created/updated" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Got ARM status" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default\",\"name\":\"DefaultManagementPolicy\",\"properties\":{\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"policy\":{\"rules\":[{\"definition\":{\"actions\":{\"version\":{\"delete\":{\"daysAfterCreationGreaterThan\":30}}},\"filters\":{\"blobIndexMatch\":null,\"blobTypes\":[\"blockBlob\"],\"prefixMatch\":[\"sample-container/blob1\"]}},\"enabled\":true,\"name\":\"test-rule\",\"type\":\"Lifecycle\"}]}},\"type\":\"Microsoft.Storage/storageAccounts/managementPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1056" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1043" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="samplekubestoragequeuesbeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1062" generation=1 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServiceController "msg"="Done with reconcile" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="updated resource in etcd" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1055" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1043" generation=2 uid="8304f950-d70a-4b6b-949d-9f4d22f078e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="999" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1028" generation=2 uid="9a5e49f1-323b-4a63-8d90-6935c86d2194" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:08 +0000 UTC" deletionTimestamp="2023-09-08 21:20:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWSkRIWlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1067" generation=1 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1068" generation=1 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Done with reconcile" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="asotestpgmhsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotest-rg-vjdhzp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1069" generation=1 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServiceController "msg"="Done with reconcile" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1072" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="968" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1071" generation=1 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="946" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1070" generation=1 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsManagementPolicyController "msg"="Done with reconcile" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Set owner reference" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsFileService" ownerName="asotestnxfkke" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="976" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="asotestylxvbt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1072" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Set owner reference" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsTableService" ownerName="asotesthvaekw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="updated resource in etcd" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/asotest-rg-ardjnr resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ardjnr": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/asotest-rg-ardjnr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8304f950-d70a-4b6b-949d-9f4d22f078e2, UID in object meta: " name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1078" generation=1 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="981" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="asotestjbmdmi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1072" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1083" generation=1 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-appconfiguratio-519ed/asotest-rg-vjdhzp resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vjdhzp": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-appconfiguratio-519ed/asotest-rg-vjdhzp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9a5e49f1-323b-4a63-8d90-6935c86d2194, UID in object meta: " name="asotest-rg-vjdhzp" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="adding finalizer" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-appconfiguratio-519ed/asotest-rg-vjdhzp aso-test-samples-creationanddeletion-test-appconfiguratio-519ed/asotestvaurza]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="adding finalizer" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1080" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesbeta", UID:"aa6828b9-bf48-40c4-a30c-bb084f59add1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1081" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"6e2bf660-2509-437c-a981-ed1c4d2d47de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1072" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1087" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsTableService", Name:"asotesthvaekw", UID:"4d11d642-0aec-4f2f-ab12-0834238475d9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1023" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/asotest-rg-ardjnr aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-appservice aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-function]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Determined CreateOrUpdate action" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="1091" generation=2 uid="46e65403-8680-4a2b-9e93-a9f7d317e380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vjdhzp", UID:"9a5e49f1-323b-4a63-8d90-6935c86d2194", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vjdhzp/providers/Microsoft.AppConfiguration/configurationStores/asotestvaurza"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-vjdhzp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="asotestopigox" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ConfigurationStoreController "msg"="Determined Delete action" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ConfigurationStoreController "msg"="Starting delete of resource" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ConfigurationStoreController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" azureName="asotestvaurza" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ConfigurationStoreController "msg"="Delete succeeded, removing finalizer" name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1086" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"d5d61552-0de0-4021-b7fd-414dd30d45e6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1090" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestjbmdmi", UID:"66e55485-b1ff-44ed-b4ad-7dad47fa6838", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1072" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta\",\"name\":\"samplequeuebeta\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1093" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"25dfbf61-2239-4140-b669-d4eeca1b7df3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="About to send resource to Azure" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Successfully sent resource to Azure" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Resource successfully created/updated" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Got ARM status" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey\",\"name\":\"asotesthazyey\",\"properties\":{\"signedIdentifiers\":[],\"tableName\":\"asotesthazyey\"},\"type\":\"Microsoft.Storage/storageAccounts/tableServices/tables\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Determined CreateOrUpdate action" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1097" generation=2 uid="630b562c-8d17-4857-b6b1-8fe3d5ac2c8e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1101" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"6e2bf660-2509-437c-a981-ed1c4d2d47de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ServerFarmController "msg"="Determined Delete action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ServerFarmController "msg"="Starting delete of resource" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ServerFarmController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ServerFarmController "msg"="Delete succeeded, removing finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1072" generation=2 uid="1ae9766d-0104-490b-8944-731248db0f51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] ConfigurationStoreController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-appconfiguratio-519ed/asotestvaurza resource status: Operation cannot be fulfilled on configurationstores.appconfiguration.azure.com "asotestvaurza": StorageError: invalid object, Code: 4, Key: /registry/appconfiguration.azure.com/configurationstores/aso-test-samples-creationanddeletion-test-appconfiguratio-519ed/asotestvaurza, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 46e65403-8680-4a2b-9e93-a9f7d317e380, UID in object meta: " name="asotestvaurza" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-519ed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="About to send resource to Azure" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Successfully sent resource to Azure" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx\",\"name\":\"asotestslhjsx\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1101" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"6e2bf660-2509-437c-a981-ed1c4d2d47de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1064" generation=2 uid="83410708-5e84-4e0d-bf4c-ae6e45263fcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1104" generation=1 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesbeta", UID:"aa6828b9-bf48-40c4-a30c-bb084f59add1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" status="{\"etag\":\"\\\"0x8DB6875EF481FBA\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob\",\"name\":\"asotestvmcyob\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1105" generation=2 uid="340f29e1-b490-4078-9e83-962130ecbcab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"8304f950-d70a-4b6b-949d-9f4d22f078e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1111" generation=1 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsTableService", Name:"asotesthvaekw", UID:"4d11d642-0aec-4f2f-ab12-0834238475d9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsTableServicesTableController "msg"="Done with reconcile" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Determined Delete action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1106" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestopigox", UID:"7ef17ee6-715a-4939-ae42-7975fd6073d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Starting delete of resource" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] SiteController "msg"="Delete succeeded, removing finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] ServerFarmController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-appservice resource status: Operation cannot be fulfilled on serverfarms.web.azure.com "aso-sample-appservice": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/serverfarms/aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-appservice, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 630b562c-8d17-4857-b6b1-8fe3d5ac2c8e, UID in object meta: " name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotest-rg-bywqwk resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bywqwk": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotest-rg-bywqwk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1ae9766d-0104-490b-8944-731248db0f51, UID in object meta: " name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1114" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"25dfbf61-2239-4140-b669-d4eeca1b7df3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Done with reconcile" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] DomainController "msg"="Reconcile invoked" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1117" generation=1 uid="48b5b102-e1e7-4ed0-8489-ccd201e47b85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] DomainController "msg"="applying ownership" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1114" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"25dfbf61-2239-4140-b669-d4eeca1b7df3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/asotest-rg-nbkbyh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-nbkbyh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/asotest-rg-nbkbyh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 83410708-5e84-4e0d-bf4c-ae6e45263fcf, UID in object meta: " name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Determined CreateOrUpdate action" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1119" generation=1 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestjbmdmi", UID:"66e55485-b1ff-44ed-b4ad-7dad47fa6838", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1121" generation=1 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"6e2bf660-2509-437c-a981-ed1c4d2d47de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1120" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"d5d61552-0de0-4021-b7fd-414dd30d45e6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu\",\"name\":\"asotesthgxjwu\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Resource successfully created/updated" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsFileServicesShareController "msg"="Got ARM status" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" status="{\"etag\":\"\\\"0x8DB6875EF474EF9\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf\",\"name\":\"asotesteasidf\",\"properties\":{\"accessTier\":\"TransactionOptimized\",\"accessTierChangeTime\":\"2001-02-03T04:05:06Z\",\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"available\",\"leaseStatus\":\"unlocked\",\"metadata\":null,\"shareQuota\":5120,\"signedIdentifiers\":[]},\"type\":\"Microsoft.Storage/storageAccounts/fileServices/shares\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] DomainController "msg"="Set owner reference" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] DomainController "msg"="adding finalizer" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1120" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"d5d61552-0de0-4021-b7fd-414dd30d45e6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1077" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:13Z] SiteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-function resource status: Operation cannot be fulfilled on sites.web.azure.com "aso-sample-function": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/sites/aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-function, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 340f29e1-b490-4078-9e83-962130ecbcab, UID in object meta: " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:13Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspaceController "msg"="Got ARM status" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy\",\"identity\":{\"principalId\":\"62b0c1a9-df5f-4d68-979e-55340e4a80b5\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"eastus2\",\"name\":\"asotestxnnivy\",\"properties\":{\"connectivityEndpoints\":{\"dev\":\"https://asotestxnnivy.dev.azuresynapse.net\",\"sql\":\"asotestxnnivy.sql.azuresynapse.net\",\"sqlOnDemand\":\"asotestxnnivy-ondemand.sql.azuresynapse.net\",\"web\":\"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f00000000-0000-0000-0000-000000000000%2fresourceGroups%2fasotest-rg-nxirwm%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fasotestxnnivy\"},\"cspWorkspaceAdminProperties\":{\"initialWorkspaceAdminObjectId\":\"bc852d4f-af2c-4d40-a567-42ab19a57e30\"},\"defaultDataLakeStorage\":{\"accountUrl\":\"https://asotestsynapse.dfs.core.windows.net/\",\"createManagedPrivateEndpoint\":false,\"filesystem\":\"default\"},\"encryption\":{\"doubleEncryptionEnabled\":false},\"extraProperties\":{\"IsScopeEnabled\":false,\"WorkspaceType\":\"Normal\"},\"managedResourceGroupName\":\"synapseworkspace-managedrg-c6bc0f14-67aa-48e6-b464-b4d4fccc8d33\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"sqlAdministratorLogin\":\"sqladminuser\",\"trustedServiceBypassEnabled\":false,\"workspaceUID\":\"c775cc49-6067-4ec6-ac0a-c87aa5a0d3de\"},\"type\":\"Microsoft.Synapse/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotest-rg-bywqwk aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotestrhnmqz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/asotest-rg-nbkbyh aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-appservice aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-function]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1125" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" status="{\"etag\":\"\\\"0x8DB6BCE809A6D20\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap\",\"name\":\"asotestxveiap\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1131" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="updated resource in etcd" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1128" generation=1 uid="48b5b102-e1e7-4ed0-8489-ccd201e47b85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1134" generation=1 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"25dfbf61-2239-4140-b669-d4eeca1b7df3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsFileServicesShareController "msg"="Done with reconcile" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1135" generation=1 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestopigox", UID:"7ef17ee6-715a-4939-ae42-7975fd6073d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="About to send resource to Azure" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Successfully sent resource to Azure" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1139" generation=2 uid="241cbb8e-1008-402b-80c1-bb548b2259a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Reconcile invoked" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="b3004047-66f2-47fe-9038-f5f1e5def912" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="applying ownership" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1143" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1141" generation=1 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspaceController "msg"="updated resource in etcd" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1144" generation=1 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1054" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ServerFarmController "msg"="Determined Delete action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1143" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ServerFarmController "msg"="Starting delete of resource" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ServerFarmController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ServerFarmController "msg"="Delete succeeded, removing finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1145" generation=2 uid="3e53edd1-ccf2-4d39-8a28-625f2c349ad4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"1ae9766d-0104-490b-8944-731248db0f51", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Set owner reference" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Determined Delete action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Starting delete of resource" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Delete succeeded, removing finalizer" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1150" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1149" generation=1 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"d5d61552-0de0-4021-b7fd-414dd30d45e6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Set owner reference" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ownerGvk="synapse.azure.com/v1api20210601storage, Kind=Workspace" ownerName="asotestxnnivy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1150" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1152" generation=2 uid="48c1df78-0ea8-4f53-9df2-1cfb9f80f78f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"83410708-5e84-4e0d-bf4c-ae6e45263fcf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="adding finalizer" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SiteController "msg"="Determined Delete action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SiteController "msg"="Starting delete of resource" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1153" generation=1 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SiteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SiteController "msg"="Delete succeeded, removing finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="updated resource in etcd" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1159" generation=1 uid="48b5b102-e1e7-4ed0-8489-ccd201e47b85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/727D58E8-0E40-478F-B3B5-48166BFCA6C1?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Done with reconcile" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1143" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks\",\"location\":\"westus2\",\"name\":\"asotest-rg-abbxks\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="adding finalizer" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] ServerFarmController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-appservice resource status: Operation cannot be fulfilled on serverfarms.web.azure.com "aso-sample-appservice": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/serverfarms/aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-appservice, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 241cbb8e-1008-402b-80c1-bb548b2259a6, UID in object meta: " name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] SignalRController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotestrhnmqz resource status: Operation cannot be fulfilled on signalrs.signalrservice.azure.com "asotestrhnmqz": StorageError: invalid object, Code: 4, Key: /registry/signalrservice.azure.com/signalrs/aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotestrhnmqz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3e53edd1-ccf2-4d39-8a28-625f2c349ad4, UID in object meta: " name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1143" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Reconcile invoked" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1159" generation=1 uid="48b5b102-e1e7-4ed0-8489-ccd201e47b85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/727D58E8-0E40-478F-B3B5-48166BFCA6C1?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1162" generation=1 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Resource successfully created/updated" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Got ARM status" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel\",\"location\":\"westcentralus\",\"name\":\"asotestuuzwel\",\"properties\":{\"endpoint\":\"https://asotestuuzwel.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"925f3d4b-aa74-4d75-938c-7e55debbf6fd\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/domains\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1168" generation=1 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1150" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1165" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"cd3e6570-2a4b-44b3-b05c-c24f2033fc41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] SiteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-function resource status: Operation cannot be fulfilled on sites.web.azure.com "aso-sample-function": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/sites/aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-function, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 48c1df78-0ea8-4f53-9df2-1cfb9f80f78f, UID in object meta: " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Determined CreateOrUpdate action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="updated resource in etcd" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1164" generation=1 uid="b3004047-66f2-47fe-9038-f5f1e5def912" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1150" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1143" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1170" generation=1 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1143" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1173" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="About to send resource to Azure" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Successfully sent resource to Azure" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="About to send resource to Azure" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="updated resource in etcd" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1176" generation=1 uid="48b5b102-e1e7-4ed0-8489-ccd201e47b85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainController "msg"="Done with reconcile" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Successfully sent resource to Azure" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Set owner reference" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Domain" ownerName="asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp\",\"location\":\"westus2\",\"name\":\"asotest-rg-leywfp\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1178" generation=2 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="adding finalizer" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="updated resource in etcd" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1183" generation=1 uid="b3004047-66f2-47fe-9038-f5f1e5def912" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AAACDE4D-C19B-49B6-B4A6-4F910DE6FEE4?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Done with reconcile" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1150" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Reconcile invoked" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1183" generation=1 uid="b3004047-66f2-47fe-9038-f5f1e5def912" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AAACDE4D-C19B-49B6-B4A6-4F910DE6FEE4?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1150" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Resource successfully created/updated" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Got ARM status" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck\",\"location\":\"westcentralus\",\"name\":\"asotestgjnlck\",\"properties\":{\"endpoint\":\"https://asotestgjnlck.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"ae00228c-0bf2-433e-8c6c-d0b462f78199\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1191" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1192" generation=2 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1194" generation=1 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Set owner reference" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Domain" ownerName="asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1193" generation=1 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1192" generation=2 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1188" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1191" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1196" generation=1 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="applying ownership" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1192" generation=2 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1199" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"cd3e6570-2a4b-44b3-b05c-c24f2033fc41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationResults/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Done with reconcile" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Set owner reference" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-abbxks" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="adding finalizer" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1200" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1191" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1199" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"cd3e6570-2a4b-44b3-b05c-c24f2033fc41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationResults/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="About to send resource to Azure" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="updated resource in etcd" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1204" generation=1 uid="b3004047-66f2-47fe-9038-f5f1e5def912" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] TopicController "msg"="Done with reconcile" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Successfully sent resource to Azure" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Determined CreateOrUpdate action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Resource not created yet, will check again" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Didn't commit obj as there was no change" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Done with reconcile" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1205" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1202" generation=1 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1192" generation=2 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="adding finalizer" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx\",\"location\":\"westus2\",\"name\":\"asotest-rg-zstldx\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1209" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1199" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"cd3e6570-2a4b-44b3-b05c-c24f2033fc41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationResults/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1191" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1192" generation=2 uid="3697754a-663c-4566-9bbb-7195ff17cce6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Determined CreateOrUpdate action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Resource successfully created/updated" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Got ARM status" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo\",\"location\":\"eastus2\",\"name\":\"asotesttgzolo\",\"properties\":{\"autoPause\":{\"delayInMinutes\":0,\"enabled\":false},\"autoScale\":{\"enabled\":false,\"maxNodeCount\":0,\"minNodeCount\":0},\"cacheSize\":50,\"creationDate\":\"2001-02-03T04:05:06Z\",\"dynamicExecutorAllocation\":{\"enabled\":false},\"isAutotuneEnabled\":false,\"isComputeIsolationEnabled\":false,\"lastSucceededTimestamp\":\"2001-02-03T04:05:06Z\",\"nodeCount\":4,\"nodeSize\":\"Medium\",\"nodeSizeFamily\":\"MemoryOptimized\",\"provisioningState\":\"Succeeded\",\"sessionLevelPackagesEnabled\":false,\"sparkVersion\":\"3.3\"},\"type\":\"Microsoft.Synapse/workspaces/bigDataPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=1 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1219" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1221" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/674DC806-8D7A-413A-B0E4-9BE76B6BD1FB?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Done with reconcile" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1210" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="updated resource in etcd" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1215" generation=1 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"22f1d209-49f5-43c7-b058-c22889caa6e5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1216" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1191" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1219" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1225" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1221" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/674DC806-8D7A-413A-B0E4-9BE76B6BD1FB?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1229" generation=1 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Resource successfully created/updated" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Got ARM status" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp\",\"name\":\"asotestzfzwyp\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.EventGrid/domains/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotest-rg-ecylaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ecylaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotest-rg-ecylaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3697754a-663c-4566-9bbb-7195ff17cce6, UID in object meta: " name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1232" generation=1 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"cd3e6570-2a4b-44b3-b05c-c24f2033fc41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] WorkspacesBigDataPoolController "msg"="Done with reconcile" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1191" generation=2 uid="33c85cc0-f044-4e23-a7ab-5fc21c866f95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotest-rg-ecylaa aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestmmvput aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesteasidf aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestjdkkus aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthazyey aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestpgmhsz aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestvmcyob aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestopigox aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthgxjwu]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1231" generation=1 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="About to send resource to Azure" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Successfully sent resource to Azure" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1235" generation=1 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="applying ownership" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb\",\"location\":\"westus2\",\"name\":\"asotest-rg-ichwpb\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1241" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1241" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Set owner reference" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="updated resource in etcd" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1240" generation=1 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"22f1d209-49f5-43c7-b058-c22889caa6e5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/0911ce36-9ec3-4982-81ba-a22f135027fe?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Done with reconcile" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1246" generation=1 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] DomainsTopicController "msg"="Done with reconcile" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1248" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FC0BD75D-991F-46C4-93B2-0406A2078092?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1240" generation=1 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"22f1d209-49f5-43c7-b058-c22889caa6e5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/0911ce36-9ec3-4982-81ba-a22f135027fe?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1243" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1219" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1253" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotest-rg-lnasua aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestblzyzn aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestylxvbt aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestxveiap aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestgtjgae aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestslhjsx]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1250" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1251" generation=2 uid="94e7a33a-d094-49cb-bfee-725a7bc0ed3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"3697754a-663c-4566-9bbb-7195ff17cce6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotest-rg-lnasua resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-lnasua": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotest-rg-lnasua, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 33c85cc0-f044-4e23-a7ab-5fc21c866f95, UID in object meta: " name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1248" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FC0BD75D-991F-46C4-93B2-0406A2078092?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1254" generation=1 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Done with reconcile" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="adding finalizer" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1219" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1252" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="applying ownership" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:14Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Determined Delete action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Starting delete of resource" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Resource successfully created/updated" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1240" generation=1 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"22f1d209-49f5-43c7-b058-c22889caa6e5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/0911ce36-9ec3-4982-81ba-a22f135027fe?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] EventSubscriptionController "msg"="Got ARM status" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo\",\"name\":\"asotesteoyquo\",\"properties\":{\"destination\":{\"endpointType\":\"StorageQueue\",\"properties\":{\"queueName\":\"samplequeuebeta\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta\"}},\"eventDeliverySchema\":\"EventGridSchema\",\"filter\":{\"subjectBeginsWith\":\"\",\"subjectEndsWith\":\"\"},\"provisioningState\":\"Succeeded\",\"retryPolicy\":{\"eventTimeToLiveInMinutes\":1440,\"maxDeliveryAttempts\":30},\"topic\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/microsoft.eventgrid/domains/asotestuuzwel\"},\"type\":\"Microsoft.EventGrid/eventSubscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1241" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] SignalRController "msg"="Set owner reference" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Got ARM status" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"asotestyhvgvw\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestyhvgvw.blob.core.windows.net/\",\"dfs\":\"https://asotestyhvgvw.dfs.core.windows.net/\",\"file\":\"https://asotestyhvgvw.file.core.windows.net/\",\"queue\":\"https://asotestyhvgvw.queue.core.windows.net/\",\"table\":\"https://asotestyhvgvw.table.core.windows.net/\",\"web\":\"https://asotestyhvgvw.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:14Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1257" generation=1 uid="42c0981c-c801-4a7d-af5e-3a7697157462" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="applying ownership" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1241" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="adding finalizer" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Set owner reference" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1262" generation=2 uid="7fd29c6c-4c2e-4598-8735-eecc9c4d588a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"33c85cc0-f044-4e23-a7ab-5fc21c866f95", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="updated resource in etcd" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1258" generation=1 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestmmvput resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestmmvput": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestmmvput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 94e7a33a-d094-49cb-bfee-725a7bc0ed3b, UID in object meta: " name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Determined Delete action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Starting delete of resource" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1268" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1269" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1219" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="adding finalizer" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1275" generation=1 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1241" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1219" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="updated resource in etcd" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1276" generation=1 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"22f1d209-49f5-43c7-b058-c22889caa6e5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Done with reconcile" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1274" generation=1 uid="f02eef8f-7d85-4cfb-9739-641f5efbc379" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1241" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="applying ownership" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="updated resource in etcd" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1271" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1279" generation=1 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1278" generation=1 uid="42c0981c-c801-4a7d-af5e-3a7697157462" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1284" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1283" generation=2 uid="4318ceca-c6e1-4084-be9b-aa2709ace4ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="About to send resource to Azure" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="Set owner reference" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="Successfully sent resource to Azure" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1226" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1284" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestblzyzn resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestblzyzn": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestblzyzn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7fd29c6c-4c2e-4598-8735-eecc9c4d588a, UID in object meta: " name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Determined Delete action" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Starting delete of resource" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1288" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1290" generation=2 uid="4d11d642-0aec-4f2f-ab12-0834238475d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="adding finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Set owner reference" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsTableServiceController "msg"="Determined Delete action" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsTableServiceController "msg"="Starting delete of resource" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsTableServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsTableServiceController "msg"="Delete succeeded, removing finalizer" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="updated resource in etcd" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1292" generation=1 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/459c3a33-7f0b-4297-930e-82033c447f81?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Done with reconcile" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestjdkkus resource status: Operation cannot be fulfilled on storageaccountsmanagementpolicies.storage.azure.com "asotestjdkkus": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsmanagementpolicies/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestjdkkus, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4318ceca-c6e1-4084-be9b-aa2709ace4ce, UID in object meta: " name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1284" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1284" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1292" generation=1 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/459c3a33-7f0b-4297-930e-82033c447f81?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1297" generation=1 uid="f02eef8f-7d85-4cfb-9739-641f5efbc379" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1306" generation=1 uid="42c0981c-c801-4a7d-af5e-3a7697157462" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f28d1064-60fd-45c0-a154-032e5bfa62b0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Done with reconcile" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1300" generation=2 uid="6e2bf660-2509-437c-a981-ed1c4d2d47de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsTableServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw resource status: Operation cannot be fulfilled on storageaccountstableservices.storage.azure.com "asotesthvaekw": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountstableservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4d11d642-0aec-4f2f-ab12-0834238475d9, UID in object meta: " name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="adding finalizer" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1306" generation=1 uid="42c0981c-c801-4a7d-af5e-3a7697157462" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f28d1064-60fd-45c0-a154-032e5bfa62b0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Done with reconcile" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1305" generation=2 uid="d5d61552-0de0-4021-b7fd-414dd30d45e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="updated resource in etcd" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="About to send resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="Got ARM status" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" status="{\"etag\":\"W/\\\"c5594995-1c4b-41ed-b605-dc58a36c529b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet\",\"location\":\"eastus\",\"name\":\"samplesqlvnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"392989eb-6491-49a8-8f38-cb91a9b2be1d\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1303" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1292" generation=1 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/459c3a33-7f0b-4297-930e-82033c447f81?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1311" generation=2 uid="25dfbf61-2239-4140-b669-d4eeca1b7df3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1312" generation=2 uid="3202dd32-d9f1-474f-8e81-74ca00945425" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Got ARM status" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage\",\"kind\":\"BlobStorage\",\"location\":\"eastus\",\"name\":\"asotestsqlstorage\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestsqlstorage.blob.core.windows.net/\",\"dfs\":\"https://asotestsqlstorage.dfs.core.windows.net/\",\"table\":\"https://asotestsqlstorage.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsFileServiceController "msg"="Determined Delete action" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsFileServiceController "msg"="Starting delete of resource" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsFileServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsFileServiceController "msg"="Delete succeeded, removing finalizer" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Determined Delete action" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Starting delete of resource" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsManagementPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1314" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1301" generation=1 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1308" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:15Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestpgmhsz resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "asotestpgmhsz": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestpgmhsz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6e2bf660-2509-437c-a981-ed1c4d2d47de, UID in object meta: " name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1319" generation=2 uid="66e55485-b1ff-44ed-b4ad-7dad47fa6838" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"7fd29c6c-4c2e-4598-8735-eecc9c4d588a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1322" generation=2 uid="7ef17ee6-715a-4939-ae42-7975fd6073d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"94e7a33a-d094-49cb-bfee-725a7bc0ed3b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1314" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestylxvbt resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "asotestylxvbt": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestylxvbt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d5d61552-0de0-4021-b7fd-414dd30d45e6, UID in object meta: " name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Successfully created resource" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" name="sqlstoragesecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsFileServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke resource status: Operation cannot be fulfilled on storageaccountsfileservices.storage.azure.com "asotestnxfkke": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsfileservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 25dfbf61-2239-4140-b669-d4eeca1b7df3, UID in object meta: " name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1327" generation=1 uid="42c0981c-c801-4a7d-af5e-3a7697157462" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Done with reconcile" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1328" generation=1 uid="f02eef8f-7d85-4cfb-9739-641f5efbc379" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2cd13330-0764-414e-a028-0adb656de554?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1317" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1314" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1284" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="Determined CreateOrUpdate action" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestgtjgae resource status: Operation cannot be fulfilled on storageaccountsmanagementpolicies.storage.azure.com "asotestgtjgae": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsmanagementpolicies/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestgtjgae, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3202dd32-d9f1-474f-8e81-74ca00945425, UID in object meta: " name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1284" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1260" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1328" generation=1 uid="f02eef8f-7d85-4cfb-9739-641f5efbc379" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2cd13330-0764-414e-a028-0adb656de554?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1314" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1222" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="updated resource in etcd" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1336" generation=1 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Done with reconcile" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=2 uid="ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1338" generation=1 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestopigox resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "asotestopigox": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestopigox, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7ef17ee6-715a-4939-ae42-7975fd6073d8, UID in object meta: " name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "asotestjbmdmi": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 66e55485-b1ff-44ed-b4ad-7dad47fa6838, UID in object meta: " name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="About to send resource to Azure" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="Successfully sent resource to Azure" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="Resource successfully created/updated" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="Got ARM status" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default\",\"name\":\"DefaultManagementPolicy\",\"properties\":{\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"policy\":{\"rules\":[{\"definition\":{\"actions\":{\"version\":{\"delete\":{\"daysAfterCreationGreaterThan\":30}}},\"filters\":{\"blobIndexMatch\":null,\"blobTypes\":[\"blockBlob\"],\"prefixMatch\":[\"sample-container/blob1\"]}},\"enabled\":true,\"name\":\"test-rule\",\"type\":\"Lifecycle\"}]}},\"type\":\"Microsoft.Storage/storageAccounts/managementPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplesqlvnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1340" generation=1 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e44dc1-72e3-454e-95a7-be7cd56596cf?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="Got ARM status" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" status="{\"etag\":\"W/\\\"8a98de59-7518-4224-80f9-5534a331968d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\",\"location\":\"westcentralus\",\"name\":\"gatewaypublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.255.237.214\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"0737e685-fd52-4f59-89cb-f594c2cef7ed\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestsqlstorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1314" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="asotesttuhlss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1340" generation=1 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e44dc1-72e3-454e-95a7-be7cd56596cf?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotest-rg-nxirwm aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asosynapsestorage aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotesttgzolo aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1342" generation=2 uid="a261089c-953c-4825-b82d-7be31588a07d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsTableService", Name:"asotesthvaekw", UID:"4d11d642-0aec-4f2f-ab12-0834238475d9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1343" generation=2 uid="42be1ed4-ffbb-4e07-8c58-db15a9c86640" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"d5d61552-0de0-4021-b7fd-414dd30d45e6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1314" generation=2 uid="031f10d2-7871-479f-a917-9ed64f615dff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:09 +0000 UTC" deletionTimestamp="2023-09-08 21:20:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsTableServicesTableController "msg"="Determined Delete action" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsTableServicesTableController "msg"="Starting delete of resource" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsTableServicesTableController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsTableServicesTableController "msg"="Delete succeeded, removing finalizer" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1340" generation=1 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e44dc1-72e3-454e-95a7-be7cd56596cf?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1346" generation=1 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotest-rg-nxirwm resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-nxirwm": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotest-rg-nxirwm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f, UID in object meta: " name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1350" generation=1 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsManagementPolicyController "msg"="Done with reconcile" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1239" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" status="{\"etag\":\"W/\\\"42a94a17-97f3-4679-ba0b-cbd2b73b691f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2\",\"location\":\"westcentralus\",\"name\":\"samplevnet2\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"921c8e45-dfe2-4007-b625-cfb9268fce79\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1349" generation=2 uid="87fffc7c-a134-4944-9314-1a893435faf2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestjbmdmi", UID:"66e55485-b1ff-44ed-b4ad-7dad47fa6838", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1348" generation=2 uid="d9f15e03-db95-4151-ba19-5a845f048a32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"6e2bf660-2509-437c-a981-ed1c4d2d47de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1354" generation=1 uid="f02eef8f-7d85-4cfb-9739-641f5efbc379" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestxveiap resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "asotestxveiap": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestxveiap, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 42be1ed4-ffbb-4e07-8c58-db15a9c86640, UID in object meta: " name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="asotestosmmrs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1352" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestsqlstorage", UID:"7cc821c6-8ebc-480c-8152-be6a27f5fc22", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1353" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"42c0981c-c801-4a7d-af5e-3a7697157462", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1357" generation=2 uid="d503d11f-261b-4dac-8fa8-f89e8505b637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"25dfbf61-2239-4140-b669-d4eeca1b7df3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1307" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1355" generation=2 uid="c148a9b0-5c3c-44ce-8a38-b664a30f5e33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotest-rg-qqarri resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-qqarri": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotest-rg-qqarri, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 031f10d2-7871-479f-a917-9ed64f615dff, UID in object meta: " name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsTableServicesTableController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthazyey resource status: Operation cannot be fulfilled on storageaccountstableservicestables.storage.azure.com "asotesthazyey": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountstableservicestables/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthazyey, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a261089c-953c-4825-b82d-7be31588a07d, UID in object meta: " name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsFileServicesShareController "msg"="Determined Delete action" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsFileServicesShareController "msg"="Starting delete of resource" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsFileServicesShareController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsFileServicesShareController "msg"="Delete succeeded, removing finalizer" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1287" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1363" generation=2 uid="0e13e4bd-c29e-484e-90ad-bc3c4c6f5149" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestopigox", UID:"7ef17ee6-715a-4939-ae42-7975fd6073d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Resource successfully created/updated" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Got ARM status" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc\",\"identity\":{\"principalId\":\"a2a62780-05ab-4211-928c-51b04c64aad7\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"kind\":\"SignalR\",\"location\":\"westcentralus\",\"name\":\"asotestwegjbc\",\"properties\":{\"cors\":{\"allowedOrigins\":[\"https://foo.com\",\"https://bar.com\"]},\"disableAadAuth\":false,\"disableLocalAuth\":false,\"externalIP\":\"20.69.0.202\",\"features\":[{\"flag\":\"ServiceMode\",\"value\":\"Classic\"},{\"flag\":\"EnableConnectivityLogs\",\"value\":\"True\"},{\"flag\":\"EnableMessagingLogs\",\"value\":\"True\"},{\"flag\":\"EnableLiveTrace\",\"value\":\"True\"}],\"hostName\":\"asotestwegjbc.service.signalr.net\",\"hostNamePrefix\":\"asotestwegjbc\",\"networkACLs\":{\"defaultAction\":\"Deny\",\"publicNetwork\":{\"allow\":[\"ClientConnection\"]}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"publicPort\":443,\"serverPort\":443,\"tls\":{\"clientCertEnabled\":false},\"upstream\":{\"templates\":[{\"categoryPattern\":\"*\",\"eventPattern\":\"connect,disconnect\",\"hubPattern\":\"*\",\"urlTemplate\":\"https://example.com/chat/api/connect\"}]},\"version\":\"1.0\"},\"sku\":{\"capacity\":1,\"name\":\"Standard_S1\",\"size\":\"S1\",\"tier\":\"Standard\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.SignalRService/SignalR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1366" generation=1 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Determined Delete action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Starting delete of resource" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsFileServicesShareController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesteasidf resource status: Operation cannot be fulfilled on storageaccountsfileservicesshares.storage.azure.com "asotesteasidf": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsfileservicesshares/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesteasidf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d503d11f-261b-4dac-8fa8-f89e8505b637, UID in object meta: " name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestvmcyob resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "asotestvmcyob": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestvmcyob, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d9f15e03-db95-4151-ba19-5a845f048a32, UID in object meta: " name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1365" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"6be7f413-b72f-4846-a641-3621eef83e17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotest-rg-qqarri aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragebeta aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragequeuesbeta aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplequeuebeta aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestuuzwel aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestzfzwyp aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotesteoyquo aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestgjnlck]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1369" generation=2 uid="cd3e6570-2a4b-44b3-b05c-c24f2033fc41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"ff9791b6-b85a-4f8d-bd1a-334eeb2fe00f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asosynapsestorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asosynapsestorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asosynapsestorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c148a9b0-5c3c-44ce-8a38-b664a30f5e33, UID in object meta: " name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] WorkspaceController "msg"="Determined Delete action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] WorkspaceController "msg"="Starting delete of resource" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthgxjwu resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "asotesthgxjwu": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthgxjwu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0e13e4bd-c29e-484e-90ad-bc3c4c6f5149, UID in object meta: " name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1381" generation=1 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestsqlstorage", UID:"7cc821c6-8ebc-480c-8152-be6a27f5fc22", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="updated resource in etcd" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1382" generation=1 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1378" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestosmmrs", UID:"ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1385" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"42c0981c-c801-4a7d-af5e-3a7697157462", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e4f00de1-9cb7-4326-924a-a036c70c7649?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1385" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"42c0981c-c801-4a7d-af5e-3a7697157462", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e4f00de1-9cb7-4326-924a-a036c70c7649?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1264" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1387" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"15bd9eb9-94cc-4e02-91ee-0695b2cedd0e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Resource not created yet, will check again" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Didn't commit obj as there was no change" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj\",\"name\":\"asotestpfarbj\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:16Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy resource status: Operation cannot be fulfilled on workspaces.synapse.azure.com "asotestxnnivy": StorageError: invalid object, Code: 4, Key: /registry/synapse.azure.com/workspaces/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: cd3e6570-2a4b-44b3-b05c-c24f2033fc41, UID in object meta: " name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1385" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"42c0981c-c801-4a7d-af5e-3a7697157462", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e4f00de1-9cb7-4326-924a-a036c70c7649?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="sqlstorageservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1388" generation=2 uid="3770afc1-5c72-442a-9dda-543637f1e627" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:12 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Determined Delete action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Starting delete of resource" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" status="{\"etag\":\"W/\\\"5d760e84-4152-4bff-bd6b-9cebe63cc18f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet\",\"name\":\"samplesqlsubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\",\"serviceEndpoints\":[{\"locations\":[\"eastus\"],\"provisioningState\":\"Succeeded\",\"service\":\"Microsoft.Sql\"}]},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1401" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"6be7f413-b72f-4846-a641-3621eef83e17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] DomainController "msg"="Reconcile invoked" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1399" generation=2 uid="48b5b102-e1e7-4ed0-8489-ccd201e47b85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1397" generation=1 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:16Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1401" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"6be7f413-b72f-4846-a641-3621eef83e17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1404" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1406" generation=1 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestosmmrs", UID:"ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1400" generation=1 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainController "msg"="Determined Delete action" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainController "msg"="Starting delete of resource" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1411" generation=1 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"42c0981c-c801-4a7d-af5e-3a7697157462", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainController "msg"="Delete succeeded, removing finalizer" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="1407" generation=2 uid="8090104b-2f26-4b41-b8fc-e8f0a37d53fa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"cd3e6570-2a4b-44b3-b05c-c24f2033fc41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" status="{\"etag\":\"\\\"0x8DB6BCE86E73AF4\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf\",\"name\":\"asotestsdayuf\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragebeta resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "samplekubestoragebeta": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragebeta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3770afc1-5c72-442a-9dda-543637f1e627, UID in object meta: " name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] WorkspacesBigDataPoolController "msg"="Determined Delete action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] WorkspacesBigDataPoolController "msg"="Starting delete of resource" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] WorkspacesBigDataPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] WorkspacesBigDataPoolController "msg"="Delete succeeded, removing finalizer" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] TopicController "msg"="Reconcile invoked" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1408" generation=2 uid="b3004047-66f2-47fe-9038-f5f1e5def912" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"031f10d2-7871-479f-a917-9ed64f615dff", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] TopicController "msg"="Determined Delete action" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] TopicController "msg"="Starting delete of resource" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] TopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] TopicController "msg"="Delete succeeded, removing finalizer" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1417" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"15bd9eb9-94cc-4e02-91ee-0695b2cedd0e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/eb3f5515-3a20-4507-912f-d378d14cee25?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1422" generation=1 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"6be7f413-b72f-4846-a641-3621eef83e17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1413" generation=1 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] TopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestgjnlck resource status: Operation cannot be fulfilled on topics.eventgrid.azure.com "asotestgjnlck": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/topics/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestgjnlck, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b3004047-66f2-47fe-9038-f5f1e5def912, UID in object meta: " name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] DomainController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestuuzwel resource status: Operation cannot be fulfilled on domains.eventgrid.azure.com "asotestuuzwel": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domains/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestuuzwel, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 48b5b102-e1e7-4ed0-8489-ccd201e47b85, UID in object meta: " name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-shblaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1417" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"15bd9eb9-94cc-4e02-91ee-0695b2cedd0e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/eb3f5515-3a20-4507-912f-d378d14cee25?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" status="{\"etag\":\"W/\\\"c7f124c6-a82d-476c-9bd3-de0994500701\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\",\"name\":\"gatewaysubnet\",\"properties\":{\"addressPrefix\":\"172.16.0.0/16\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1420" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"4521abb4-0491-4b55-83d7-e5645cf5c08f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1428" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1421" generation=1 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1428" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz\",\"location\":\"westus2\",\"name\":\"asotest-rg-gcupsz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1433" generation=1 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1428" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1434" generation=2 uid="aa6828b9-bf48-40c4-a30c-bb084f59add1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragebeta", UID:"3770afc1-5c72-442a-9dda-543637f1e627", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1436" generation=1 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1428" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1439" generation=1 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"15bd9eb9-94cc-4e02-91ee-0695b2cedd0e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1442" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"4521abb4-0491-4b55-83d7-e5645cf5c08f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1441" generation=1 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="applying ownership" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1428" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1442" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"4521abb4-0491-4b55-83d7-e5645cf5c08f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" status="{\"etag\":\"\\\"0x8DB7EF63A5F3492\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments\",\"name\":\"vulnerabilityassessments\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1444" generation=2 uid="b831b2b2-d7f7-4b1a-adeb-948feeb219ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Set owner reference" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainsTopicController "msg"="Determined Delete action" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainsTopicController "msg"="Starting delete of resource" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainsTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] DomainsTopicController "msg"="Delete succeeded, removing finalizer" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1446" generation=1 uid="4cc762cf-f6f7-45be-a691-9692a65646dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="applying ownership" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1428" generation=2 uid="28186b5c-8e93-4ed0-aacc-a2814191d19e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragequeuesbeta resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "samplekubestoragequeuesbeta": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragequeuesbeta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: aa6828b9-bf48-40c4-a30c-bb084f59add1, UID in object meta: " name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1447" generation=2 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="adding finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Set owner reference" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1452" generation=2 uid="237bdaff-fc7e-400b-b391-5edbc5289754" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"48b5b102-e1e7-4ed0-8489-ccd201e47b85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:13 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] DomainsTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestzfzwyp resource status: Operation cannot be fulfilled on domainstopics.eventgrid.azure.com "asotestzfzwyp": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domainstopics/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestzfzwyp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b831b2b2-d7f7-4b1a-adeb-948feeb219ca, UID in object meta: " name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1455" generation=1 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] EventSubscriptionController "msg"="Determined Delete action" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] EventSubscriptionController "msg"="Starting delete of resource" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] EventSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] EventSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="adding finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1460" generation=1 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"4521abb4-0491-4b55-83d7-e5645cf5c08f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1457" generation=1 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"e6217666-5bba-40f9-adb2-38aac8f18f2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1465" generation=1 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotest-rg-zstldx resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-zstldx": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotest-rg-zstldx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 28186b5c-8e93-4ed0-aacc-a2814191d19e, UID in object meta: " name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1461" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1463" generation=1 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1468" generation=2 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1471" generation=1 uid="59f1ae4c-f67f-4567-9fcd-32030e0d0d7b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="applying ownership" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] EventSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotesteoyquo resource status: Operation cannot be fulfilled on eventsubscriptions.eventgrid.azure.com "asotesteoyquo": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/eventsubscriptions/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotesteoyquo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 237bdaff-fc7e-400b-b391-5edbc5289754, UID in object meta: " name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1466" generation=1 uid="4cc762cf-f6f7-45be-a691-9692a65646dd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Set owner reference" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1474" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="applying ownership" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1468" generation=2 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotest-rg-zstldx aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotestwegjbc]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="About to send resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1478" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="applying ownership" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="adding finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1484" generation=1 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"e6217666-5bba-40f9-adb2-38aac8f18f2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1479" generation=1 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Set owner reference" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=1 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1468" generation=2 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Set owner reference" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1483" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1485" generation=1 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf\",\"location\":\"westus2\",\"name\":\"asotest-rg-faseaf\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Owner does not yet exist" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="adding finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1484" generation=1 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"e6217666-5bba-40f9-adb2-38aac8f18f2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1488" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Resource not created yet, will check again" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Didn't commit obj as there was no change" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1468" generation=2 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1492" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="adding finalizer" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1490" generation=1 uid="59f1ae4c-f67f-4567-9fcd-32030e0d0d7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1491" generation=2 uid="82f94c4b-7bc8-4380-8d0b-d9fa98183633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"28186b5c-8e93-4ed0-aacc-a2814191d19e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1484" generation=1 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"e6217666-5bba-40f9-adb2-38aac8f18f2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1494" generation=1 uid="4cc762cf-f6f7-45be-a691-9692a65646dd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/da76a510-98b8-47ad-bef6-574aa4f7bc2c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] SignalRController "msg"="Determined Delete action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] SignalRController "msg"="Starting delete of resource" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] SignalRController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] SignalRController "msg"="Delete succeeded, removing finalizer" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1468" generation=2 uid="22f1d209-49f5-43c7-b058-c22889caa6e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1498" generation=2 uid="2c38d950-0d29-4d7c-9d5c-aff4dfdbd868" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesbeta", UID:"aa6828b9-bf48-40c4-a30c-bb084f59add1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:12 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:13 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1496" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1497" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Got ARM status" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" status="{\"etag\":\"f4ce2311-aa6e-450e-aed2-e8f6b04d78ad\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com\",\"location\":\"global\",\"name\":\"aso-sample-pdz.com\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1494" generation=1 uid="4cc762cf-f6f7-45be-a691-9692a65646dd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/da76a510-98b8-47ad-bef6-574aa4f7bc2c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="About to send resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Successfully sent resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1506" generation=1 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d46fce34-c1be-49f0-a8c1-2fdf1c7fd4d1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1500" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1507" generation=1 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1505" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Got ARM status" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" status="{\"etag\":\"W/\\\"c63d54b5-95f2-45fc-a5fc-3ac091fa6420\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\",\"location\":\"westcentralus\",\"name\":\"gatewaypublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.168.177.175\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"c2d536f1-7281-47fb-9236-49d6e223206a\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1502" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner does not yet exist" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1506" generation=1 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d46fce34-c1be-49f0-a8c1-2fdf1c7fd4d1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Owner does not yet exist" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1520" generation=1 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/782e48e7-83e4-4a11-804d-ec70ea3cb5f8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplequeuebeta resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "samplequeuebeta": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplequeuebeta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2c38d950-0d29-4d7c-9d5c-aff4dfdbd868, UID in object meta: " name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1519" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet" not found)" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet" not found)" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1514" generation=1 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1510" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotest-rg-abbxks aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotesttuhlss aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestsdayuf aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestgcmprw aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestosmmrs aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestpfarbj]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1518" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="applying ownership" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1524" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1519" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1525" generation=1 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"e6217666-5bba-40f9-adb2-38aac8f18f2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotest-rg-abbxks resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-abbxks": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotest-rg-abbxks, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 22f1d209-49f5-43c7-b058-c22889caa6e5, UID in object meta: " name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1520" generation=1 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/782e48e7-83e4-4a11-804d-ec70ea3cb5f8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="About to send resource to Azure" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Successfully sent resource to Azure" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1506" generation=1 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d46fce34-c1be-49f0-a8c1-2fdf1c7fd4d1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1528" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="applying ownership" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1526" generation=1 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" status="{\"etag\":\"W/\\\"571529f2-e416-484d-8a1b-a55a287630c3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip\",\"location\":\"westcentralus\",\"name\":\"samplepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.255.239.16\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"e24c7380-7a88-4cd7-b4e5-e519be6405ab\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1524" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1532" generation=1 uid="59f1ae4c-f67f-4567-9fcd-32030e0d0d7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/07f3c8ab-0935-46a6-b3ad-813243e743ae?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1533" generation=1 uid="4cc762cf-f6f7-45be-a691-9692a65646dd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1535" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkGatewayController "msg"="applying ownership" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1537" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="applying ownership" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner does not yet exist" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1532" generation=1 uid="59f1ae4c-f67f-4567-9fcd-32030e0d0d7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/07f3c8ab-0935-46a6-b3ad-813243e743ae?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1520" generation=1 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/782e48e7-83e4-4a11-804d-ec70ea3cb5f8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Resource successfully created/updated" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Got ARM status" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" status="{\"etag\":\"W/\\\"c67be9f4-fff5-421c-9490-cfad664fa340\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable\",\"location\":\"westcentralus\",\"name\":\"sampleroutetable\",\"properties\":{\"disableBgpRoutePropagation\":true,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f93e890f-b045-40c4-bfa3-783a70c9bcdf\"},\"type\":\"Microsoft.Network/routeTables\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1541" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1544" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1542" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1539" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" status="{\"etag\":\"W/\\\"65731d0b-2366-4190-9cb1-4e6a21004c10\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2\",\"location\":\"westcentralus\",\"name\":\"samplevnet2\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"01759b58-a5f6-4514-85b6-ed25f23575d9\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkGatewayController "msg"="Set owner reference" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1546" generation=2 uid="d9e27219-d60d-4b23-8407-adf69c145b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"22f1d209-49f5-43c7-b058-c22889caa6e5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Determined Delete action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Starting delete of resource" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1544" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1552" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1542" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1543" generation=1 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1553" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1524" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1550" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1556" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverOperationResults/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Done with reconcile" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1519" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" requeueAfter="1s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1557" generation=1 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1558" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1551" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1559" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Encountered error, re-queuing..." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1555" generation=1 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1550" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="applying ownership" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1524" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1562" generation=1 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] StorageAccountController "msg"="applying ownership" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1552" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1553" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="applying ownership" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1544" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1567" generation=1 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1556" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverOperationResults/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1519" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1563" generation=1 uid="59f1ae4c-f67f-4567-9fcd-32030e0d0d7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1559" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="applying ownership" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersVirtualNetworkRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersVirtualNetworkRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersVirtualNetworkRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Resource successfully created/updated" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServerController "msg"="Got ARM status" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo\",\"kind\":\"v12.0\",\"location\":\"eastus\",\"name\":\"asotestwidzfo\",\"properties\":{\"administratorLogin\":\"myadmin\",\"fullyQualifiedDomainName\":\"asotestwidzfo.database.windows.net\",\"minimalTlsVersion\":\"None\",\"publicNetworkAccess\":\"Enabled\",\"restrictOutboundNetworkAccess\":\"Disabled\",\"state\":\"Ready\",\"version\":\"12.0\"},\"type\":\"Microsoft.Sql/servers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner does not yet exist" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestyhvgvw": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d9e27219-d60d-4b23-8407-adf69c145b05, UID in object meta: " name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersOutboundFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] ServersElasticPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1566" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] RouteTablesRouteController "msg"="Set owner reference" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=RouteTable" ownerName="sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkGatewayController "msg"="adding finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:17Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1570" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:17Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1544" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Reconcile invoked" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1573" generation=1 uid="ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="applying ownership" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1572" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1571" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="applying ownership" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupController "msg"="Got ARM status" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" status="{\"etag\":\"W/\\\"2e675e04-e751-4ac3-accc-69bded65f601\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg\",\"location\":\"westcentralus\",\"name\":\"samplensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllOutBound\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"485cffcd-0b2d-4214-8b85-39e4f29f4692\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1570" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Set owner reference" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1574" generation=1 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1581" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="Encountered error, re-queuing..." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1579" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1550" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Set owner reference" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1524" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1559" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Encountered error, re-queuing..." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1581" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1519" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1590" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1550" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="applying ownership" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1553" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1591" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1583" generation=1 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServerController "msg"="Done with reconcile" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="adding finalizer" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1592" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="adding finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1519" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="Set owner reference" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1481" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner does not yet exist" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1593" generation=1 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fc6fa7f1-40f3-4241-8a00-73854a3ed787?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1524" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="adding finalizer" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1559" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="applying ownership" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1586" generation=2 uid="6be7f413-b72f-4846-a641-3621eef83e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1592" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1553" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="applying ownership" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1596" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Set owner reference" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1602" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1598" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Set owner reference" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1605" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1584" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1594" generation=1 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1600" generation=1 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/951918e3-6af7-465f-bc2a-0252c0214f21?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1601" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1606" generation=1 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1570" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1593" generation=1 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fc6fa7f1-40f3-4241-8a00-73854a3ed787?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1599" generation=2 uid="24d81301-2a84-4897-8488-e338bb2a22d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1597" generation=1 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Set owner reference" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1604" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"59f1ae4c-f67f-4567-9fcd-32030e0d0d7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="updated resource in etcd" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1603" generation=1 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Set owner reference" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1610" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1602" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="applying ownership" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1605" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1600" generation=1 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/951918e3-6af7-465f-bc2a-0252c0214f21?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1608" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsManagementPolicyController "msg"="Determined Delete action" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsManagementPolicyController "msg"="Starting delete of resource" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsManagementPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1601" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="adding finalizer" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsManagementPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby\",\"location\":\"westus2\",\"name\":\"asotest-rg-bwxmby\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="updated resource in etcd" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1609" generation=1 uid="ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1593" generation=1 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fc6fa7f1-40f3-4241-8a00-73854a3ed787?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="adding finalizer" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1570" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="About to send resource to Azure" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" requeueAfter="10s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="adding finalizer" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="adding finalizer" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="About to send resource to Azure" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1616" generation=1 uid="cef9ae18-d3e8-49cf-b198-c6bcf0e342ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="applying ownership" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="adding finalizer" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1601" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner does not yet exist" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="About to send resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1613" generation=2 uid="ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"d9e27219-d60d-4b23-8407-adf69c145b05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Successfully sent resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1617" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" status="{\"etag\":\"W/\\\"ffa85a05-fe45-4378-93a3-8f39ce3914cc\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westcentralus\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a2fc2e1-00a9-4726-833c-4565ca71b0b9\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1625" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1592" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Set owner reference" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotesttuhlss resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "asotesttuhlss": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotesttuhlss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6be7f413-b72f-4846-a641-3621eef83e17, UID in object meta: " name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1600" generation=1 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/951918e3-6af7-465f-bc2a-0252c0214f21?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Owner does not yet exist" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" status="{\"etag\":\"W/\\\"098942c7-4f10-4e02-be92-c824526b6f39\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2\",\"location\":\"westus2\",\"name\":\"aso-sample-vn2\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fa6c8ec-0879-4b89-a58e-a4f2cb42024c\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="Set owner reference" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] StorageAccountsManagementPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestgcmprw resource status: Operation cannot be fulfilled on storageaccountsmanagementpolicies.storage.azure.com "asotestgcmprw": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsmanagementpolicies/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestgcmprw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 24d81301-2a84-4897-8488-e338bb2a22d6, UID in object meta: " name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="About to send resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Successfully sent resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1592" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1625" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1621" generation=1 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1623" generation=1 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1628" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1626" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1620" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1601" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="updated resource in etcd" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1640" generation=1 uid="ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da6c503a-2985-4152-a235-52b2ec462291?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Done with reconcile" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="adding finalizer" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns\",\"location\":\"westus2\",\"name\":\"asotest-rg-vbehns\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1639" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabaseController "msg"="applying ownership" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1636" generation=1 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="applying ownership" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Determined CreateOrUpdate action" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="adding finalizer" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Reconcile invoked" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1640" generation=1 uid="ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da6c503a-2985-4152-a235-52b2ec462291?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1605" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="updated resource in etcd" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1647" generation=1 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/6d976b9e-5ab3-4787-8b02-fcabfd2ed0c6?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Done with reconcile" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1644" generation=1 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1570" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1627" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1634" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1649" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="About to send resource to Azure" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="About to send resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Successfully sent resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="Set owner reference" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="About to send resource to Azure" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Successfully sent resource to Azure" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1651" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1654" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestosmmrs resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "asotestosmmrs": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestosmmrs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2, UID in object meta: " name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1646" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"987ab222-818d-46a8-8182-46c60571506a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabaseController "msg"="Set owner reference" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1657" generation=1 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1592" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="Determined CreateOrUpdate action" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1658" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"59f1ae4c-f67f-4567-9fcd-32030e0d0d7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/910f1625-d6b9-43c3-95c5-c57b0a032844?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Got ARM status" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" status="{\"etag\":\"W/\\\"4ea04e7b-2202-4e76-b359-cc8607665b1c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip\",\"location\":\"westus2\",\"name\":\"bastionpublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.155.17.100\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"69b6a440-1790-484a-8710-2c72236bb02d\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1659" generation=1 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1652" generation=1 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1605" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1570" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1642" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"89fed26a-8761-4592-b979-2812de9352b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1663" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Reconcile invoked" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1662" generation=1 uid="30b84b74-0e35-4652-8d3c-beb4453aa6bb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="applying ownership" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1592" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1654" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1655" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1656" generation=1 uid="cef9ae18-d3e8-49cf-b198-c6bcf0e342ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1601" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1647" generation=1 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/6d976b9e-5ab3-4787-8b02-fcabfd2ed0c6?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1658" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"59f1ae4c-f67f-4567-9fcd-32030e0d0d7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/910f1625-d6b9-43c3-95c5-c57b0a032844?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Owner does not yet exist" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1666" generation=1 uid="7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersSecurityAlertPolicyController "msg"="applying ownership" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1625" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Owner does not yet exist" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" NamespacedName="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="About to send resource to Azure" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Got ARM status" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi\",\"name\":\"asotesthozjgi\",\"properties\":{\"endIpAddress\":\"0.0.0.0\",\"startIpAddress\":\"0.0.0.0\"},\"type\":\"Microsoft.Sql/servers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="adding finalizer" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1625" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabaseController "msg"="adding finalizer" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1670" generation=2 uid="6be60115-bb64-4d08-b5f0-83fced6dae85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"6be7f413-b72f-4846-a641-3621eef83e17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1675" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Set owner reference" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1674" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesAzureAsyncOperation/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesOperationResults/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Done with reconcile" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Resource successfully created/updated" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Got ARM status" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" status="{\"etag\":\"W/\\\"42a51df0-029b-43b4-9ec6-b53d9a993507\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute\",\"name\":\"sampleroute\",\"properties\":{\"addressPrefix\":\"cab:cab::/96\",\"hasBgpOverride\":false,\"nextHopIpAddress\":\"ace:cab:deca:f00d::1\",\"nextHopType\":\"VirtualAppliance\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/routeTables/routes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Done with reconcile" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1678" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionAzureAsyncOperation/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionOperationResults/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Done with reconcile" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersSecurityAlertPolicyController "msg"="Set owner reference" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Set owner reference" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1679" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1674" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesAzureAsyncOperation/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesOperationResults/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1677" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVulnerabilityAssessmentController "msg"="applying ownership" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="About to send resource to Azure" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1685" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error, re-queuing..." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1601" generation=2 uid="e6217666-5bba-40f9-adb2-38aac8f18f2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1675" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1672" generation=1 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1689" generation=1 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22644a73-66ef-499f-9db2-2fadb6ac5f71?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVirtualNetworkRuleController "msg"="Successfully sent resource to Azure" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="updated resource in etcd" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1684" generation=1 uid="ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="Done with reconcile" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="About to send resource to Azure" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1647" generation=1 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/6d976b9e-5ab3-4787-8b02-fcabfd2ed0c6?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1678" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionAzureAsyncOperation/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionOperationResults/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAuditingSettingController "msg"="Successfully sent resource to Azure" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="About to send resource to Azure" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1682" generation=2 uid="d773cad1-3e01-4ea0-b332-a1e5f01c77f4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestosmmrs", UID:"ad5c504c-7c4f-42e4-880a-e0bea8e4f4a2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersConnectionPolicyController "msg"="Successfully sent resource to Azure" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1681" generation=1 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Resource successfully created/updated" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersOutboundFirewallRuleController "msg"="Got ARM status" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net\",\"name\":\"server.database.windows.net\",\"properties\":{\"provisioningState\":\"Ready\"},\"type\":\"Microsoft.Sql/servers/outboundFirewallRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1686" generation=1 uid="787e8df6-a22c-4394-975c-18b69d90853c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Resource creation/update failure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: InternalServerError\n--------------------------------------------------------------------------------\n{\n \"name\": \"80dca1b4-70da-48c8-a2e3-d829d68513c3\",\n \"status\": \"Failed\",\n \"startTime\": \"2001-02-03T04:05:06Z\",\n \"error\": {\n \"code\": \"InternalServerError\",\n \"message\": \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersElasticPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: InternalServerError, Severity: Warning, RetryClassification: RetrySlow, Cause: An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: InternalServerError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "name": "80dca1b4-70da-48c8-a2e3-d829d68513c3", +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "startTime": "2001-02-03T04:05:06Z", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InternalServerError", +[controller:test-integration-envtest] "message": "An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PublicIPAddressController "msg"="adding finalizer" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Resource successfully created/updated" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Got ARM status" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage\",\"kind\":\"BlobStorage\",\"location\":\"westus2\",\"name\":\"asosamplestorage\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asosamplestorage.blob.core.windows.net/\",\"dfs\":\"https://asosamplestorage.dfs.core.windows.net/\",\"table\":\"https://asosamplestorage.table.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1685" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Determined CreateOrUpdate action" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Resource successfully created/updated" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersAdvancedThreatProtectionSettingController "msg"="Got ARM status" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Enabled\"},\"type\":\"Microsoft.Sql/servers/advancedThreatProtectionSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1692" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1697" generation=1 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"59f1ae4c-f67f-4567-9fcd-32030e0d0d7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1693" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespaceController "msg"="applying ownership" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersSecurityAlertPolicyController "msg"="adding finalizer" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersVulnerabilityAssessmentController "msg"="Set owner reference" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1701" generation=1 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersFirewallRuleController "msg"="Done with reconcile" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1689" generation=1 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22644a73-66ef-499f-9db2-2fadb6ac5f71?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1706" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"89fed26a-8761-4592-b979-2812de9352b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6ee8ba2d-5888-4e95-83fd-e0202e993123?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1687" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1696" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespaceController "msg"="applying ownership" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1708" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"987ab222-818d-46a8-8182-46c60571506a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d5e81220-e0bd-4cea-b540-004f326f7c30?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Owner does not yet exist" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" NamespacedName="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Owner does not yet exist" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestsdayuf resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "asotestsdayuf": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestsdayuf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6be60115-bb64-4d08-b5f0-83fced6dae85, UID in object meta: " name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:18Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:18Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1706" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"89fed26a-8761-4592-b979-2812de9352b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6ee8ba2d-5888-4e95-83fd-e0202e993123?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="adding finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1718" generation=1 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersOutboundFirewallRuleController "msg"="Done with reconcile" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1716" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsAzureAsyncOperation/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsOperationResults/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="Done with reconcile" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1720" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesAzureAsyncOperation/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesOperationResults/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="Done with reconcile" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1709" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1689" generation=1 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22644a73-66ef-499f-9db2-2fadb6ac5f71?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1716" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsAzureAsyncOperation/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsOperationResults/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1721" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Set owner reference" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" status="{\"etag\":\"W/\\\"12adae95-64fc-4c07-9e1d-0175ac6ac276\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule\",\"name\":\"samplerule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to source port 23-45 and destination port 45-56\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"46-56\",\"direction\":\"Inbound\",\"priority\":123,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"23-45\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Set owner reference" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1723" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="Reconcile invoked" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1717" generation=1 uid="37cf8c51-42dc-4834-8311-426cb4f0ca72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="applying ownership" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" status="{\"etag\":\"W/\\\"99021751-4958-4175-9cdb-46efd216a1d2\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\",\"location\":\"westus2\",\"name\":\"aso-sample-vn\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/8\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"214db516-775f-4c02-a3d9-4cc17fc5771a\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1720" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesAzureAsyncOperation/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesOperationResults/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/asotest-rg-shblaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-shblaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/asotest-rg-shblaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6217666-5bba-40f9-adb2-38aac8f18f2a, UID in object meta: " name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/asotest-rg-shblaa aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/aso-sample-pdz.com]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1698" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="updated resource in etcd" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1707" generation=1 uid="30b84b74-0e35-4652-8d3c-beb4453aa6bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1625" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] StorageAccountController "msg"="updated resource in etcd" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1727" generation=1 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] StorageAccountController "msg"="Done with reconcile" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1654" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="Resource successfully created/updated" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="Got ARM status" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/Default\",\"name\":\"Default\",\"properties\":{\"auditActionsAndGroups\":[\"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP\",\"FAILED_DATABASE_AUTHENTICATION_GROUP\",\"BATCH_COMPLETED_GROUP\"],\"isAzureMonitorTargetEnabled\":false,\"isManagedIdentityInUse\":false,\"isStorageSecondaryKeyInUse\":false,\"retentionDays\":0,\"state\":\"Enabled\",\"storageAccountSubscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"storageEndpoint\":\"https://asotestsqlstorage.blob.core.windows.net/\"},\"type\":\"Microsoft.Sql/servers/auditingSettings\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1724" generation=1 uid="cef9ae18-d3e8-49cf-b198-c6bcf0e342ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesAzureAsyncOperation/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesOperationResults/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="Done with reconcile" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="About to send resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="adding finalizer" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="Determined CreateOrUpdate action" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="Resource successfully created/updated" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="Got ARM status" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg\",\"name\":\"asotestulcgqg\",\"properties\":{\"ignoreMissingVnetServiceEndpoint\":false,\"state\":\"Ready\",\"virtualNetworkSubnetId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet\"},\"type\":\"Microsoft.Sql/servers/virtualNetworkRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1729" generation=1 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1724" generation=1 uid="cef9ae18-d3e8-49cf-b198-c6bcf0e342ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesAzureAsyncOperation/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesOperationResults/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAdvancedThreatProtectionSettingController "msg"="Done with reconcile" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1739" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="Encountered error, re-queuing..." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1710" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1605" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="adding finalizer" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="Set owner reference" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1654" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1740" generation=1 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Done with reconcile" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1728" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1722" generation=1 uid="7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1685" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error, re-queuing..." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="adding finalizer" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1733" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="Resource successfully created/updated" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="Got ARM status" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default\",\"location\":\"eastus\",\"name\":\"default\",\"properties\":{\"connectionType\":\"Default\"},\"type\":\"Microsoft.Sql/servers/connectionPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1732" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="About to send resource to Azure" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1730" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1685" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1740" generation=1 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1605" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1734" generation=1 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1749" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Determined CreateOrUpdate action" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1739" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1755" generation=1 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1745" generation=1 uid="787e8df6-a22c-4394-975c-18b69d90853c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"e2b11fc6-7780-47bd-b097-4ee2081f1117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1708" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"987ab222-818d-46a8-8182-46c60571506a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d5e81220-e0bd-4cea-b540-004f326f7c30?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1756" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="updated resource in etcd" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1741" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Resource not created yet, will check again" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Didn't commit obj as there was no change" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Done with reconcile" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1751" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1754" generation=1 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"89fed26a-8761-4592-b979-2812de9352b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" status="{\"etag\":\"W/\\\"31b881fb-5689-4b53-812c-14b4f7d27a87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\",\"location\":\"westcentralus\",\"name\":\"sampleloadbalancer\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"31b881fb-5689-4b53-812c-14b4f7d27a87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"31b881fb-5689-4b53-812c-14b4f7d27a87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\",\"name\":\"samplenatpool\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a783dd41-ca73-44ea-8b31-5b4f20195c4e\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="adding finalizer" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="About to send resource to Azure" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Successfully sent resource to Azure" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1740" generation=1 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1768" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1760" generation=2 uid="29776ae4-19dc-45e5-9782-59b05b69e774" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"e6217666-5bba-40f9-adb2-38aac8f18f2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:19 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1758" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1752" generation=1 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" status="{\"etag\":\"W/\\\"d1e536a6-08d6-49a3-a0aa-09e404fed34c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\",\"name\":\"gatewaysubnet\",\"properties\":{\"addressPrefix\":\"172.16.0.0/16\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="adding finalizer" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1756" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1763" generation=1 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1748" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVirtualNetworkRuleController "msg"="Done with reconcile" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1762" generation=1 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersAuditingSettingController "msg"="Done with reconcile" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Resource creation/update failure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"RetryableErrorDueToAnotherOperation\",\n \"message\": \"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "RetryableErrorDueToAnotherOperation", +[controller:test-integration-envtest] "message": "Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Determined Delete action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1625" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="About to send resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="Successfully sent resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="About to send resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1767" generation=1 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully sent resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="About to send resource to Azure" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Got ARM status" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" status="{\"etag\":\"e45122cd-49d4-46ed-9496-9b451590ccc3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net\",\"location\":\"global\",\"name\":\"privatelink.blob.core.windows.net\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Resource creation/update failure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: ConflictingServerOperation\n--------------------------------------------------------------------------------\n{\n \"name\": \"8e921aee-5171-4f1d-9c46-bd8b157dc19e\",\n \"status\": \"Failed\",\n \"startTime\": \"2001-02-03T04:05:06Z\",\n \"error\": {\n \"code\": \"ConflictingServerOperation\",\n \"message\": \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: ConflictingServerOperation, Severity: Warning, RetryClassification: RetrySlow, Cause: Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: ConflictingServerOperation +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "name": "8e921aee-5171-4f1d-9c46-bd8b157dc19e", +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "startTime": "2001-02-03T04:05:06Z", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "ConflictingServerOperation", +[controller:test-integration-envtest] "message": "Server 'asotestwidzfo' is busy with another operation. Please try your operation later." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="2m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1777" generation=1 uid="cef9ae18-d3e8-49cf-b198-c6bcf0e342ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersConnectionPolicyController "msg"="Done with reconcile" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="updated resource in etcd" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1779" generation=1 uid="30b84b74-0e35-4652-8d3c-beb4453aa6bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6d7e6425-a398-4fef-b4ea-9afbc81eba08?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Done with reconcile" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="updated resource in etcd" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1761" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1785" generation=1 uid="7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesAzureAsyncOperation/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesOperationResults/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Done with reconcile" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Reconcile invoked" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1779" generation=1 uid="30b84b74-0e35-4652-8d3c-beb4453aa6bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6d7e6425-a398-4fef-b4ea-9afbc81eba08?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1785" generation=1 uid="7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesAzureAsyncOperation/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesOperationResults/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="updated resource in etcd" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1769" generation=1 uid="37cf8c51-42dc-4834-8311-426cb4f0ca72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="About to send resource to Azure" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1685" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error, re-queuing..." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1793" generation=1 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcbe7111-8436-4698-9418-c9f62291f47a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1774" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1794" generation=1 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1791" generation=1 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"987ab222-818d-46a8-8182-46c60571506a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Got ARM status" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" status="{\"etag\":\"W/\\\"68d8302c-ac21-4faa-ac7f-77be8b55a154\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip\",\"location\":\"westus2\",\"name\":\"aso-sample-publicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.155.17.78\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"29b1c1bc-a153-4c41-9e74-86354a7c0578\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Determined CreateOrUpdate action" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="About to send resource to Azure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="Resource creation/update failure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"VulnerabilityAssessmentADSIsDisabled\",\n \"message\": \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="Classifying CloudError" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" Message="Advanced Data Security should be enabled in order to use Vulnerability Assessment." Code="VulnerabilityAssessmentADSIsDisabled" Target="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="CloudError classified" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" Classification="retryable" Code="VulnerabilityAssessmentADSIsDisabled" Message="Advanced Data Security should be enabled in order to use Vulnerability Assessment." +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: VulnerabilityAssessmentADSIsDisabled, Severity: Warning, RetryClassification: RetrySlow, Cause: Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: VulnerabilityAssessmentADSIsDisabled +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "VulnerabilityAssessmentADSIsDisabled", +[controller:test-integration-envtest] "message": "Advanced Data Security should be enabled in order to use Vulnerability Assessment." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1789" generation=1 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1798" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1793" generation=1 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcbe7111-8436-4698-9418-c9f62291f47a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1504" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1685" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Resource successfully created/updated" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersSecurityAlertPolicyController "msg"="Got ARM status" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"disabledAlerts\":[\"\"],\"emailAccountAdmins\":false,\"emailAddresses\":[\"\"],\"retentionDays\":0,\"state\":\"Enabled\",\"storageEndpoint\":\"\"},\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1759" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="1800" generation=1 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZoneController "msg"="Done with reconcile" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="updated resource in etcd" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1801" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv\",\"location\":\"westus2\",\"name\":\"asotest-rg-jwyavv\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1807" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1802" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1796" generation=1 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1803" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1768" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1809" generation=1 uid="787e8df6-a22c-4394-975c-18b69d90853c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"e2b11fc6-7780-47bd-b097-4ee2081f1117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/885abf44-5843-4af1-82f7-3ebc460e4f8a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1792" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner does not yet exist" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="About to send resource to Azure" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolverController "msg"="Successfully sent resource to Azure" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1784" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1801" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1793" generation=1 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcbe7111-8436-4698-9418-c9f62291f47a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1807" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1798" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Set owner reference" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1802" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="About to send resource to Azure" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="Resource successfully created/updated" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersIPV6FirewallRuleController "msg"="Got ARM status" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv\",\"name\":\"asotestggernv\",\"properties\":{\"endIPv6Address\":\"2001:db8:0000:0000:0000:0000:00ff:ffff\",\"startIPv6Address\":\"2001:db8::\"},\"type\":\"Microsoft.Sql/servers/ipv6FirewallRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1784" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="updated resource in etcd" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1813" generation=1 uid="30b84b74-0e35-4652-8d3c-beb4453aa6bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:19Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] PublicIPAddressController "msg"="Done with reconcile" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1817" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" status="{\"etag\":\"W/\\\"387c5a9a-4d56-4514-a8c2-8816812fc2ff\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver\",\"location\":\"westus2\",\"name\":\"aso-sample-vn-dnsresolver\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/8\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ce8d8a4d-be14-4a17-8739-fb3705dedaec\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] LoadBalancersInboundNatRuleController "msg"="Set owner reference" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=LoadBalancer" ownerName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Resource successfully created/updated" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:19Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Got ARM status" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" status="{\"etag\":\"W/\\\"c1808ad9-d70c-43f8-8a5b-25e84b4dd009\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering\",\"name\":\"samplepeering\",\"properties\":{\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"allowVirtualNetworkAccess\":true,\"doNotVerifyRemoteGateways\":false,\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\",\"remoteAddressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2\"},\"resourceGuid\":\"a8334ca4-df4b-0721-3519-8adcecfe7ec0\",\"useRemoteGateways\":false},\"type\":\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1817" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1815" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1822" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1821" generation=1 uid="7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersSecurityAlertPolicyController "msg"="Done with reconcile" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Resource creation/update failure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": []\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1801" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Resource not created yet, will check again" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Didn't commit obj as there was no change" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="updated resource in etcd" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1822" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="About to send resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1820" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="applying ownership" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="adding finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersIPV6FirewallRuleController "msg"="updated resource in etcd" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1832" generation=1 uid="37cf8c51-42dc-4834-8311-426cb4f0ca72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersIPV6FirewallRuleController "msg"="Done with reconcile" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1784" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1801" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1833" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Set owner reference" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner does not yet exist" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="adding finalizer" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1833" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="About to send resource to Azure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Resource successfully created/updated" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Successfully sent resource to Azure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="adding finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Got ARM status" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht\",\"kind\":\"pool\",\"location\":\"eastus\",\"name\":\"asotesttcwsht\",\"properties\":{\"creationDate\":\"2001-02-03T04:05:06Z\",\"maintenanceConfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\"maxSizeBytes\":107374182400,\"perDatabaseSettings\":{\"maxCapacity\":100,\"minCapacity\":0},\"state\":\"Ready\",\"zoneRedundant\":false},\"sku\":{\"capacity\":100,\"name\":\"StandardPool\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Sql/servers/elasticPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1844" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1827" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1814" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1826" generation=1 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1839" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1835" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner does not yet exist" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" NamespacedName="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1833" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1836" generation=1 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1844" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1840" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"7405f205-b445-48ce-8fa6-2491ffb22431", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1845" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="applying ownership" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1801" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1838" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f52f238b-4456-4138-94da-e4ef39e72f0b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1849" generation=1 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1851" generation=1 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1847" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="applying ownership" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1842" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1841" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1809" generation=1 uid="787e8df6-a22c-4394-975c-18b69d90853c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"e2b11fc6-7780-47bd-b097-4ee2081f1117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/885abf44-5843-4af1-82f7-3ebc460e4f8a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Got ARM status" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz\",\"location\":\"West Central US\",\"name\":\"asotestpqebnz\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestpqebnz\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestpqebnz.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1827" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Modifying ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="adding finalizer" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1848" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"LoadBalancer", Name:"sampleloadbalancer", UID:"7b3d1a5c-eac8-4fd9-8f34-21c70803fae8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1833" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1857" generation=1 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b63554c-808f-4664-931a-644f4eb56d9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" status="{\"etag\":\"W/\\\"615c74b2-6264-42b2-b696-0d3ce325dfb8\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet\",\"name\":\"AzureBastionSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Resource creation/update failure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"RetryableErrorDueToAnotherOperation\",\n \"message\": \"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "RetryableErrorDueToAnotherOperation", +[controller:test-integration-envtest] "message": "Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Set owner reference" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1856" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1850" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="Determined CreateOrUpdate action" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1842" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Set owner reference" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" status="{\"etag\":\"W/\\\"a3cd6103-7a76-43e8-bafd-9d560d48a3df\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westcentralus\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"2hbc4ovjaatepaz2ivs2u2nqxb.yx.internal.cloudapp.net\"},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"a3cd6103-7a76-43e8-bafd-9d560d48a3df\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"de453b8b-11b4-42a9-8759-07b2d52783dd\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1650" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1858" generation=1 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Resource successfully created/updated" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1862" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1863" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1853" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Done with reconcile" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Resource not created yet, will check again" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1833" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1857" generation=1 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b63554c-808f-4664-931a-644f4eb56d9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo\",\"location\":\"westus2\",\"name\":\"asotest-rg-vwbpuo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Got ARM status" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" status="{\"etag\":\"W/\\\"8a340626-021a-418f-be4d-a41fd4d3696a\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway\",\"location\":\"westcentralus\",\"name\":\"samplevnetgateway\",\"properties\":{\"activeActive\":false,\"bgpSettings\":{\"asn\":65515,\"bgpPeeringAddress\":\"172.16.255.254\",\"bgpPeeringAddresses\":[{\"defaultBgpIpAddresses\":[\"172.16.255.254\"],\"ipconfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"tunnelIpAddresses\":[\"4.255.237.214\"]}],\"peerWeight\":0},\"enableBgp\":false,\"enablePrivateIpAddress\":false,\"gatewayType\":\"Vpn\",\"ipConfigurations\":[{\"etag\":\"W/\\\"8a340626-021a-418f-be4d-a41fd4d3696a\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"name\":\"config1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\"}}}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"736158cb-11bd-4a3c-aa15-9efbbaffd06f\",\"sku\":{\"capacity\":2,\"name\":\"VpnGw2\",\"tier\":\"VpnGw2\"},\"vpnGatewayGeneration\":\"Generation2\",\"vpnType\":\"RouteBased\"},\"type\":\"Microsoft.Network/virtualNetworkGateways\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1861" generation=1 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="About to send resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully sent resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1867" generation=1 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1569" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1842" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1865" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1863" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1853" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1869" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Resource successfully created/updated" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="About to send resource to Azure" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="adding finalizer" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="updated resource in etcd" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1873" generation=1 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Resource successfully created/updated" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1857" generation=1 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b63554c-808f-4664-931a-644f4eb56d9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1833" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Got ARM status" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm\",\"kind\":\"v12.0,user,vcore\",\"location\":\"eastus\",\"name\":\"asotestkekpcm\",\"properties\":{\"catalogCollation\":\"SQL_Latin1_General_CP1_CI_AS\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"creationDate\":\"2001-02-03T04:05:06Z\",\"currentBackupStorageRedundancy\":\"Geo\",\"currentServiceObjectiveName\":\"GP_Gen5_2\",\"currentSku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5\",\"tier\":\"GeneralPurpose\"},\"databaseId\":\"5f69146c-2ff8-4262-8aba-34b7887c83e2\",\"defaultSecondaryLocation\":\"westus\",\"isInfraEncryptionEnabled\":false,\"isLedgerOn\":false,\"licenseType\":\"LicenseIncluded\",\"maintenanceConfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\"maxLogSizeBytes\":193273528320,\"maxSizeBytes\":34359738368,\"readScale\":\"Disabled\",\"requestedBackupStorageRedundancy\":\"Geo\",\"requestedServiceObjectiveName\":\"GP_Gen5_2\",\"status\":\"Online\",\"zoneRedundant\":false},\"sku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.Sql/servers/databases\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Got ARM status" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/Default\",\"name\":\"Default\",\"properties\":{\"recurringScans\":{\"emailSubscriptionAdmins\":true,\"isEnabled\":false},\"storageContainerPath\":\"https://asotestsqlstorage.blob.core.windows.net/vulnerabilityassessments/\"},\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="Successfully sent resource to Azure" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="Resource successfully created/updated" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="Got ARM status" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" status="{\"etag\":\"W/\\\"a6fc2ea3-9f59-4dee-be38-9c10c06d3b39\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule\",\"name\":\"sampleinboundnatrule\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPort\":23,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1875" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Resource successfully created/updated" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Got ARM status" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" status="{\"etag\":\"\\\"13000e0c-0000-0400-0000-64ac9c330000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset\",\"location\":\"westus2\",\"name\":\"aso-sample-resolver-dnsforwardingruleset\",\"properties\":{\"dnsResolverState\":\"Connected\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"4f3f7d50-e821-48e3-895e-f06045ef2d55\",\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="adding finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1880" generation=1 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1884" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1746" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1775" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" status="{\"etag\":\"W/\\\"283b5554-0340-4601-8e38-ebea665af6b7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1\",\"location\":\"westus2\",\"name\":\"aso-sample-vn1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c31b19a0-7aed-48a0-ba96-41cf3c0b2476\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1819" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1879" generation=1 uid="787e8df6-a22c-4394-975c-18b69d90853c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"e2b11fc6-7780-47bd-b097-4ee2081f1117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1878" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Modifying ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="About to send resource to Azure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Resource creation/update failure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": []\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1531" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1891" generation=1 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1889" generation=1 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1894" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Resource successfully created/updated" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1872" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1632" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1897" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c77d673-e491-4b68-9545-e54ce9783473?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1529" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1737" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1838" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f52f238b-4456-4138-94da-e4ef39e72f0b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Got ARM status" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj\",\"location\":\"West Central US\",\"name\":\"asotesthzpbpj\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"metricId\":\"00000000-0000-0000-0000-000000000000:asotesthzpbpj\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotesthzpbpj.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Set owner reference" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestpqebnz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Set owner reference" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestpqebnz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" status="{\"etag\":\"W/\\\"af8b4e26-5389-4d9d-8fe5-7d1a3423205f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ICHWPB/providers/Microsoft.Network/networkInterfaces/SAMPLENIC/ipConfigurations/IPCONFIG1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="updated resource in etcd" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1885" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1894" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1871" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1892" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1902" generation=1 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"LoadBalancer", Name:"sampleloadbalancer", UID:"7b3d1a5c-eac8-4fd9-8f34-21c70803fae8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancersInboundNatRuleController "msg"="Done with reconcile" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1900" generation=1 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1680" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1899" generation=1 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1895" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersVulnerabilityAssessmentController "msg"="Done with reconcile" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1887" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1898" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"7405f205-b445-48ce-8fa6-2491ffb22431", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="Set owner reference" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Set owner reference" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="Set owner reference" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" requeueAfter="1s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1905" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTableController "msg"="applying ownership" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="About to send resource to Azure" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1907" generation=1 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesSecurityAlertPolicyController "msg"="Set owner reference" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1913" generation=1 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1898" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"7405f205-b445-48ce-8fa6-2491ffb22431", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Set owner reference" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="adding finalizer" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Resource not created yet, will check again" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1661" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="adding finalizer" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1916" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1612" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1894" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1773" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTableController "msg"="Set owner reference" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1750" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1920" generation=1 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1917" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1884" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1909" generation=1 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1898" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"7405f205-b445-48ce-8fa6-2491ffb22431", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1908" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1911" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="updated resource in etcd" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1922" generation=1 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="Set owner reference" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Set owner reference" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTableController "msg"="adding finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1615" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1894" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesAuditingSettingController "msg"="adding finalizer" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Resource successfully created/updated" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1897" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c77d673-e491-4b68-9545-e54ce9783473?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1917" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1923" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] DnsResolversOutboundEndpointController "msg"="Set owner reference" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsResolver" ownerName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="applying ownership" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Got ARM status" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" status="{\"etag\":\"\\\"d7015794-0000-0100-0000-64ac9c730000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink\",\"location\":\"global\",\"name\":\"aso-sample-vnetlink\",\"properties\":{\"provisioningState\":\"Succeeded\",\"registrationEnabled\":false,\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1\"},\"virtualNetworkLinkState\":\"Completed\"},\"type\":\"Microsoft.Network/privateDnsZones/virtualNetworkLinks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="About to send resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkGatewayController "msg"="Successfully sent resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="adding finalizer" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1924" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"449334f3-a9a7-4cdc-a267-9ed810942bc9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1925" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"449334f3-a9a7-4cdc-a267-9ed810942bc9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespacesTopicController "msg"="adding finalizer" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesTransparentDataEncryptionController "msg"="adding finalizer" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" status="{\"etag\":\"W/\\\"9762e19a-5697-48a2-8b5d-0db9e2fd115e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset\",\"name\":\"aso-sample-subnet-outbound-ep-dnsforwardingruleset\",\"properties\":{\"addressPrefix\":\"10.225.0.0/28\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] ServersDatabasesVulnerabilityAssessmentController "msg"="adding finalizer" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="updated resource in etcd" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1929" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:20Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1928" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:20Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesSecurityAlertPolicyController "msg"="adding finalizer" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1772" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1633" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1894" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Set owner reference" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1930" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1929" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="adding finalizer" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Set owner reference" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupController "msg"="Got ARM status" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" status="{\"etag\":\"W/\\\"e703acfd-b30a-4051-a8d8-7625ab37bc25\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg\",\"location\":\"westcentralus\",\"name\":\"samplensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllOutBound\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e743ef9f-d0c3-4d65-9ac8-980cce8d1338\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1953" generation=1 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0269ab17-2785-4e7d-9949-5f7d5a6522af?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Got ARM status" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq\",\"name\":\"asotestkryvrq\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1944" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/aae19560-1c24-432d-8f26-6096902f26ac?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1934" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1947" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Set owner reference" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1936" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Modifying ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="About to send resource to Azure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1947" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1951" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1942" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTableController "msg"="About to send resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1928" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTableController "msg"="Successfully sent resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1936" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1953" generation=1 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0269ab17-2785-4e7d-9949-5f7d5a6522af?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1948" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1950" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] DnsResolversOutboundEndpointController "msg"="adding finalizer" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1938" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="1956" generation=1 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"7405f205-b445-48ce-8fa6-2491ffb22431", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Got ARM status" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd\",\"name\":\"asotestyhaxhd\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1945" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesSecurityAlertPolicyController "msg"="Determined CreateOrUpdate action" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1952" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c2df0240-3c8a-4cef-b4aa-748b5831397d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1961" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="adding finalizer" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1946" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1963" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/468c3391-0365-4cb2-a57f-518fb357b7b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1966" generation=1 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1962" generation=1 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1952" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c2df0240-3c8a-4cef-b4aa-748b5831397d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="adding finalizer" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1944" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/aae19560-1c24-432d-8f26-6096902f26ac?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="adding finalizer" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1957" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1963" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/468c3391-0365-4cb2-a57f-518fb357b7b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1953" generation=1 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0269ab17-2785-4e7d-9949-5f7d5a6522af?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" status="{\"etag\":\"W/\\\"085a64e7-7b32-4b79-9f7f-03a28d794329\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep\",\"name\":\"aso-sample-subnet-outbound-ep\",\"properties\":{\"addressPrefix\":\"10.225.0.0/28\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" status="{\"etag\":\"W/\\\"2168d946-7f7d-466b-b48f-093d7ea6ed89\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\",\"name\":\"aso-sample-subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Disabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1958" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1967" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/76289c85-93b9-4eb7-a190-b06ceeabf997?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Done with reconcile" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1929" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1936" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1969" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="About to send resource to Azure" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Successfully sent resource to Azure" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1974" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" status="{\"etag\":\"W/\\\"a41396f8-ff64-457f-a116-4b03cac76b1c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westcentralus\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7af920a8-794d-4595-a28d-7a4441d5d836\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" status="{\"etag\":\"W/\\\"085a64e7-7b32-4b79-9f7f-03a28d794329\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep\",\"name\":\"aso-sample-subnet-inbound-ep\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:21Z] NamespacesTopicController "msg"="Got ARM status" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx\",\"name\":\"asotestgadbkx\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="updated resource in etcd" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1973" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Determined CreateOrUpdate action" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1978" generation=1 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"449334f3-a9a7-4cdc-a267-9ed810942bc9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1929" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1981" generation=1 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"449334f3-a9a7-4cdc-a267-9ed810942bc9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="Done with reconcile" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1969" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1778" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesSecurityAlertPolicyController "msg"="About to send resource to Azure" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesSecurityAlertPolicyController "msg"="Successfully sent resource to Azure" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesSecurityAlertPolicyController "msg"="Resource successfully created/updated" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesSecurityAlertPolicyController "msg"="Got ARM status" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"disabledAlerts\":[\"\"],\"emailAccountAdmins\":false,\"emailAddresses\":[\"\"],\"retentionDays\":0,\"state\":\"Enabled\",\"storageEndpoint\":\"\"},\"type\":\"Microsoft.Sql/servers/databases/securityAlertPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAuditingSettingController "msg"="About to send resource to Azure" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAuditingSettingController "msg"="Successfully sent resource to Azure" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1936" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="1968" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1967" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/76289c85-93b9-4eb7-a190-b06ceeabf997?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1928" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesVulnerabilityAssessmentController "msg"="About to send resource to Azure" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Successfully sent resource to Azure" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Resource successfully created/updated" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Got ARM status" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/Default\",\"name\":\"Default\",\"properties\":{\"recurringScans\":{\"emailSubscriptionAdmins\":true,\"isEnabled\":false},\"storageContainerPath\":\"https://asotestsqlstorage.blob.core.windows.net/vulnerabilityassessments/\"},\"type\":\"Microsoft.Sql/servers/databases/vulnerabilityAssessments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1982" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="About to send resource to Azure" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/authorizationrules/asotestymtocl\",\"name\":\"asotestymtocl\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Getting Kubernetes resources for export" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1984" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Resource successfully created/updated" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Got ARM status" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" status="{\"etag\":\"W/\\\"28e29e7e-4587-45a8-b5bb-e8604deca375\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\",\"location\":\"westus2\",\"name\":\"aso-sample-loadbalancer\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"28e29e7e-4587-45a8-b5bb-e8604deca375\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/inboundNatPools/MyFancyNatPool\"}],\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"28e29e7e-4587-45a8-b5bb-e8604deca375\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/inboundNatPools/MyFancyNatPool\",\"name\":\"MyFancyNatPool\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"fcb514a8-d516-44ec-a54a-1d0fe03c1478\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesTransparentDataEncryptionController "msg"="About to send resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesTransparentDataEncryptionController "msg"="Successfully sent resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" status="{\"etag\":\"W/\\\"74bb0b34-c32a-4d0c-a623-fcfd27470526\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\",\"location\":\"westcentralus\",\"name\":\"sampleloadbalancer\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"74bb0b34-c32a-4d0c-a623-fcfd27470526\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"74bb0b34-c32a-4d0c-a623-fcfd27470526\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\",\"name\":\"samplenatpool\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"67bb3851-edfd-4298-8205-4fd07bfe01f6\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotestyhaxhd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="About to send resource to Azure" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Successfully sent resource to Azure" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Resource successfully created/updated" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Got ARM status" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Enabled\"},\"type\":\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1936" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2000" generation=1 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesAuthorizationRuleController "msg"="Successfully created resource" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" name="authsecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" status="{\"etag\":\"W/\\\"e0b504e0-3bba-45ec-b9c2-e9d73c5a42f9\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip\",\"location\":\"westcentralus\",\"name\":\"samplepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.168.176.70\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"cb6dec98-c30f-48b7-9632-ff9d9a9a29ba\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1928" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1982" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1997" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyAzureAsyncOperation/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyOperationResults/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Done with reconcile" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1996" generation=1 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1995" generation=1 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1983" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"b26a9f1f-95e8-4a9f-bd78-a1af6af315ec", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1999" generation=1 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="Resource not created yet, will check again" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="Didn't commit obj as there was no change" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1997" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyAzureAsyncOperation/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyOperationResults/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:22Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1976" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1977" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1932" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:22Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="updated resource in etcd" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Resource successfully created/updated" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Got ARM status" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default\",\"name\":\"default\",\"properties\":{\"monthlyRetention\":\"PT0S\",\"weekOfYear\":0,\"weeklyRetention\":\"P30D\",\"yearlyRetention\":\"PT0S\"},\"type\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1994" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Got ARM status" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak\",\"location\":\"West Central US\",\"name\":\"asotestyftnak\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestyftnak\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestyftnak.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1982" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="About to send resource to Azure" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2010" generation=1 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Done with reconcile" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2009" generation=1 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] LoadBalancerController "msg"="Done with reconcile" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2014" generation=1 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Done with reconcile" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2015" generation=1 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesSecurityAlertPolicyController "msg"="Done with reconcile" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2013" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAuditingSettingController "msg"="Done with reconcile" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Resource not created yet, will check again" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Didn't commit obj as there was no change" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1825" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2018" generation=1 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1947" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2008" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"6a2674da-7c27-4262-bba6-8add5cc294c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2017" generation=1 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Done with reconcile" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2021" generation=1 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2020" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesTransparentDataEncryptionController "msg"="Done with reconcile" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2023" generation=1 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2013" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAuditingSettingController "msg"="Resource successfully created/updated" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesAuditingSettingController "msg"="Got ARM status" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/Default\",\"name\":\"Default\",\"properties\":{\"auditActionsAndGroups\":[\"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP\",\"FAILED_DATABASE_AUTHENTICATION_GROUP\",\"BATCH_COMPLETED_GROUP\"],\"isAzureMonitorTargetEnabled\":false,\"isManagedIdentityInUse\":false,\"isStorageSecondaryKeyInUse\":false,\"retentionDays\":0,\"state\":\"Enabled\",\"storageAccountSubscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"storageEndpoint\":\"https://asotestsqlstorage.blob.core.windows.net/\"},\"type\":\"Microsoft.Sql/servers/databases/auditingSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2020" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2029" generation=1 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Done with reconcile" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Set owner reference" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1982" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1947" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Got ARM status" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb\",\"name\":\"asotestwurheb\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Resource successfully created/updated" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] RouteTableController "msg"="Got ARM status" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" status="{\"etag\":\"W/\\\"c2a26e8b-f772-4965-9d2a-a233239f57c4\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable\",\"location\":\"westcentralus\",\"name\":\"sampleroutetable\",\"properties\":{\"disableBgpRoutePropagation\":true,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"00aa40b9-5a2b-4bd1-9b3a-094f1e0253de\"},\"type\":\"Microsoft.Network/routeTables\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2027" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestyhaxhd", UID:"4bbe25a2-196d-4860-b8e0-4277180df220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesTransparentDataEncryptionController "msg"="Resource creation/update failure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: InternalServerError\n--------------------------------------------------------------------------------\n{\n \"name\": \"8d2a8b52-6dc1-4028-b773-d38f2b55a425\",\n \"status\": \"Failed\",\n \"startTime\": \"2001-02-03T04:05:06Z\",\n \"error\": {\n \"code\": \"InternalServerError\",\n \"message\": \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: InternalServerError, Severity: Warning, RetryClassification: RetrySlow, Cause: An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: InternalServerError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "name": "8d2a8b52-6dc1-4028-b773-d38f2b55a425", +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "startTime": "2001-02-03T04:05:06Z", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InternalServerError", +[controller:test-integration-envtest] "message": "An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="About to send resource to Azure" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Successfully sent resource to Azure" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1690" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1904" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="updated resource in etcd" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2034" generation=1 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1901" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1881" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:23Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:23Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotestgadbkx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2040" generation=1 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesAuditingSettingController "msg"="Done with reconcile" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Set owner reference" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1935" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2048" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyAzureAsyncOperation/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyOperationResults/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2046" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Done with reconcile" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="adding finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2047" generation=1 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="2m40s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2042" generation=1 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2045" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"b26a9f1f-95e8-4a9f-bd78-a1af6af315ec", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/28ce28f0-c955-4de1-b74b-a488e7d1e796?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj\",\"name\":\"asotestyyutyj\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2039" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Set owner reference" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="Set owner reference" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=RouteTable" ownerName="sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2046" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2048" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyAzureAsyncOperation/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyOperationResults/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2045" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"b26a9f1f-95e8-4a9f-bd78-a1af6af315ec", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/28ce28f0-c955-4de1-b74b-a488e7d1e796?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2051" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"6a2674da-7c27-4262-bba6-8add5cc294c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6860c5af-954c-44e5-9807-72d83ee7c1b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2051" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"6a2674da-7c27-4262-bba6-8add5cc294c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6860c5af-954c-44e5-9807-72d83ee7c1b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" status="{\"etag\":\"W/\\\"b152286d-fe69-4e13-9ee2-3e85b544a0e7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1\",\"name\":\"aso-sample-subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" status="{\"etag\":\"W/\\\"c3574497-7da9-4f4b-8216-43786e912fab\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule\",\"name\":\"samplerule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to source port 23-45 and destination port 45-56\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"46-56\",\"direction\":\"Inbound\",\"priority\":123,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"23-45\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Resource creation/update failure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"RetryableErrorDueToAnotherOperation\",\n \"message\": \"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "RetryableErrorDueToAnotherOperation", +[controller:test-integration-envtest] "message": "Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2054" generation=1 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestyhaxhd", UID:"4bbe25a2-196d-4860-b8e0-4277180df220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2052" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Resource successfully created/updated" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Got ARM status" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default\",\"name\":\"default\",\"properties\":{\"diffBackupIntervalInHours\":12,\"retentionDays\":7},\"type\":\"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2050" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="adding finalizer" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="adding finalizer" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="adding finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="About to send resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Successfully sent resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Resource creation/update failure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": []\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2061" generation=1 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"6a2674da-7c27-4262-bba6-8add5cc294c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2007" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="About to send resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully sent resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2064" generation=1 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"b26a9f1f-95e8-4a9f-bd78-a1af6af315ec", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1797" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Got ARM status" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl\",\"location\":\"West Central US\",\"name\":\"asotestedijsl\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"disableLocalAuth\":true,\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestedijsl\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestedijsl.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2070" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2071" generation=1 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Done with reconcile" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestyyutyj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2060" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2062" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2067" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Done with reconcile" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2066" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2065" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestgadbkx", UID:"b20d41da-ced8-430e-8890-681cf9d98fb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2070" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2074" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2033" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2067" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2074" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/authorizationrules/asotestgwznuu\",\"name\":\"asotestgwznuu\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Getting Kubernetes resources for export" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Resource successfully created/updated" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] DnsResolversOutboundEndpointController "msg"="Got ARM status" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" status="{\"etag\":\"\\\"51006ac7-0000-0400-0000-64ac9cc90000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset\",\"location\":\"westus2\",\"name\":\"aso-sample-outbound-ep-dnsforwardingruleset\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3d09d8b7-da86-4a28-a117-e0f3cfc34e90\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers/outboundEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Resource successfully created/updated" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ServersDatabasesTransparentDataEncryptionController "msg"="Got ARM status" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/Current\",\"name\":\"Current\",\"properties\":{\"state\":\"Enabled\"},\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2077" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8c4b6b56-409f-4d06-bf5f-f6289065acf1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2068" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"459273a7-a88e-490d-ba2d-5f3c38ca4fef", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Got ARM status" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb\",\"name\":\"asotestqaeexb\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz\",\"name\":\"asotestojebhz\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2077" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8c4b6b56-409f-4d06-bf5f-f6289065acf1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1980" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Got ARM status" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt\",\"name\":\"asotesthoycyt\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesAuthorizationRuleController "msg"="Successfully created resource" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" name="authsecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="updated resource in etcd" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2083" generation=1 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Resource successfully created/updated" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1993" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Got ARM status" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" status="{\"etag\":\"W/\\\"88f7ae70-1236-4038-abda-85cbd9edaaf7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering\",\"name\":\"samplepeering\",\"properties\":{\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"allowVirtualNetworkAccess\":true,\"doNotVerifyRemoteGateways\":false,\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\",\"remoteAddressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2\"},\"resourceGuid\":\"7b8cbbf0-dcbb-0081-273b-9761b3e0adef\",\"useRemoteGateways\":false},\"type\":\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" status="{\"etag\":\"W/\\\"f1d83fc8-c6e3-42c8-93e2-3c2d7de48414\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westcentralus\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"vaqps4snpgkuliunpjcedvoygg.yx.internal.cloudapp.net\"},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"f1d83fc8-c6e3-42c8-93e2-3c2d7de48414\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"4112991c-909b-4c25-942f-dccb8388684e\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:24Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="About to send resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Successfully sent resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Set owner reference" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2085" generation=1 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2086" generation=1 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ServersDatabasesTransparentDataEncryptionController "msg"="Done with reconcile" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="Set owner reference" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="1965" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1972" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2088" generation=1 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Resource successfully created/updated" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Got ARM status" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" status="{\"etag\":\"W/\\\"7bb3c665-5edc-43b0-bd4b-9d54f5ed3749\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway\",\"location\":\"westcentralus\",\"name\":\"samplevnetgateway\",\"properties\":{\"activeActive\":false,\"bgpSettings\":{\"asn\":65515,\"bgpPeeringAddress\":\"172.16.255.254\",\"bgpPeeringAddresses\":[{\"defaultBgpIpAddresses\":[\"172.16.255.254\"],\"ipconfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"tunnelIpAddresses\":[\"20.168.177.175\"]}],\"peerWeight\":0},\"enableBgp\":false,\"enablePrivateIpAddress\":false,\"gatewayType\":\"Vpn\",\"ipConfigurations\":[{\"etag\":\"W/\\\"7bb3c665-5edc-43b0-bd4b-9d54f5ed3749\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"name\":\"config1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\"}}}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7d8a027b-684c-4b86-baa2-a824723327a4\",\"sku\":{\"capacity\":2,\"name\":\"VpnGw2\",\"tier\":\"VpnGw2\"},\"vpnGatewayGeneration\":\"Generation2\",\"vpnType\":\"RouteBased\"},\"type\":\"Microsoft.Network/virtualNetworkGateways\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2096" generation=1 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2094" generation=1 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="Done with reconcile" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="adding finalizer" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2095" generation=1 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestgadbkx", UID:"b20d41da-ced8-430e-8890-681cf9d98fb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2097" generation=1 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2098" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"459273a7-a88e-490d-ba2d-5f3c38ca4fef", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b85547af-8e5d-4c17-859c-2a323f445bfc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="adding finalizer" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2098" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"459273a7-a88e-490d-ba2d-5f3c38ca4fef", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b85547af-8e5d-4c17-859c-2a323f445bfc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2091" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2c84dd60-844a-4585-8a0c-6d051b943e24?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2091" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2c84dd60-844a-4585-8a0c-6d051b943e24?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2103" generation=1 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2090" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestyyutyj", UID:"b604d66e-3dd7-4bee-a135-f6973adf29f4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" status="{\"etag\":\"W/\\\"ee0ccc7a-b238-49a9-8b14-ee5d667e4c68\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-GCUPSZ/providers/Microsoft.Network/networkInterfaces/SAMPLENIC/ipConfigurations/IPCONFIG1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Resource successfully created/updated" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Got ARM status" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" status="{\"etag\":\"W/\\\"f4b44dd9-1951-481d-833e-151a4d285b64\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute\",\"name\":\"sampleroute\",\"properties\":{\"addressPrefix\":\"cab:cab::/96\",\"hasBgpOverride\":false,\"nextHopIpAddress\":\"ace:cab:deca:f00d::1\",\"nextHopType\":\"VirtualAppliance\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/routeTables/routes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1731" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2105" generation=1 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2101" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestojebhz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1915" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Got ARM status" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny\",\"location\":\"westcentralus\",\"name\":\"asotestzjviny\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxMessageSizeInKilobytes\":256,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2104" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2110" generation=1 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"459273a7-a88e-490d-ba2d-5f3c38ca4fef", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotesthoycyt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw\",\"name\":\"asotestlijqaw\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2109" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicController "msg"="Got ARM status" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz\",\"location\":\"westcentralus\",\"name\":\"asotesteenzrz\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxMessageSizeInKilobytes\":256,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2114" generation=1 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2117" generation=1 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestyyutyj", UID:"b604d66e-3dd7-4bee-a135-f6973adf29f4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2118" generation=1 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2115" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/authorizationrules/asotestexokpd\",\"location\":\"westcentralus\",\"name\":\"asotestexokpd\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Getting Kubernetes resources for export" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" ResourcesToWrite=1 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2119" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestojebhz", UID:"87f937a8-dcb0-4377-90b7-3ba72734b845", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2120" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesthoycyt", UID:"25fe39df-a054-413f-bab4-66bc60efbf1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:25Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:25Z] NamespacesAuthorizationRuleController "msg"="Successfully created resource" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" name="authsecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2127" generation=1 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicController "msg"="Done with reconcile" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2125" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Reconcile invoked" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2126" generation=1 uid="9f37009c-942a-4310-9879-da652ac1538d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:25 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="applying ownership" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2016" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2131" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Set owner reference" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd\",\"name\":\"asotestquccdd\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc\",\"name\":\"asotestswxzyc\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2132" generation=1 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2135" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2130" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2131" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2137" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="adding finalizer" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2136" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2137" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner does not yet exist" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2131" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2142" generation=1 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesthoycyt", UID:"25fe39df-a054-413f-bab4-66bc60efbf1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2145" generation=1 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestojebhz", UID:"87f937a8-dcb0-4377-90b7-3ba72734b845", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2144" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2137" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="updated resource in etcd" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2140" generation=1 uid="9f37009c-942a-4310-9879-da652ac1538d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:25 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="adding finalizer" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2131" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="Reconcile invoked" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2150" generation=1 uid="65bee298-085c-4f1b-b9f7-0ee35104ad3a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="applying ownership" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="1860" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2137" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="Set owner reference" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Determined CreateOrUpdate action" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner does not yet exist" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2154" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="applying ownership" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2155" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesteenzrz", UID:"d8aee3b6-25cf-440b-ab3c-e75bcfd6b060", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2131" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="About to send resource to Azure" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Successfully sent resource to Azure" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2137" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestswxzyc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2152" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="Set owner reference" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2131" generation=2 uid="8139d6b6-4449-4c00-80bb-2768d9bdc22e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2137" generation=2 uid="45ca54fe-7148-4c56-b1ac-996abe708d84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner does not yet exist" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2159" generation=1 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateLinkServiceController "msg"="applying ownership" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="adding finalizer" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="About to send resource to Azure" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Successfully sent resource to Azure" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2162" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="adding finalizer" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="updated resource in etcd" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2165" generation=1 uid="9f37009c-942a-4310-9879-da652ac1538d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:25 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/221fa325-28d6-485d-9373-a9d020e36f45?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Done with reconcile" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2163" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] BastionHostController "msg"="applying ownership" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateLinkServiceController "msg"="Set owner reference" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Reconcile invoked" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2165" generation=1 uid="9f37009c-942a-4310-9879-da652ac1538d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:25 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/221fa325-28d6-485d-9373-a9d020e36f45?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu\",\"location\":\"westcentralus\",\"name\":\"asotestroeizu\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2170" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2172" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Determined CreateOrUpdate action" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRulesetController "msg"="applying ownership" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Resource successfully created/updated" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="updated resource in etcd" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2166" generation=1 uid="65bee298-085c-4f1b-b9f7-0ee35104ad3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="Got ARM status" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" status="{\"etag\":\"W/\\\"4919c6ee-e8a9-4c31-a133-164ae278686b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix\",\"location\":\"westus2\",\"name\":\"aso-sample-ipprefix\",\"properties\":{\"ipPrefix\":\"4.155.22.176/28\",\"prefixLength\":28,\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"resourceGuid\":\"374dd2d0-7628-4963-9cd2-53af27c1394d\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPPrefixes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/aso-sample-sqlsecret aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestsqlstorage aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/vulnerabilityassessments aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlvnet aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlsubnet aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdqgjqg aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwenbxt aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestubsqct aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttcwsht aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesthozjgi aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestiduxfx aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestulcgqg aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestyllufl aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestzmywpu aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestvinoxb aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestoxzset aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestjdhujz aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkrftcu aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestlboexz aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdwzgal aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttdlrym aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestggernv]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRulesetController "msg"="Set owner reference" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="Determined CreateOrUpdate action" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2177" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2172" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="updated resource in etcd" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2171" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-leywfp": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8139d6b6-4449-4c00-80bb-2768d9bdc22e, UID in object meta: " name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotest-rg-vbehns resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vbehns": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotest-rg-vbehns, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 45ca54fe-7148-4c56-b1ac-996abe708d84, UID in object meta: " name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateLinkServiceController "msg"="adding finalizer" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2175" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestswxzyc", UID:"d07a7e97-3f35-4572-b422-e92f3a2f057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] BastionHostController "msg"="Set owner reference" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2180" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2172" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2183" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="applying ownership" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2180" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2184" generation=1 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesteenzrz", UID:"d8aee3b6-25cf-440b-ab3c-e75bcfd6b060", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="About to send resource to Azure" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NatGatewayController "msg"="Successfully sent resource to Azure" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotest-rg-vbehns aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestpqebnz aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestkryvrq aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyhaxhd aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyyutyj aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestlijqaw]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRulesetController "msg"="adding finalizer" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2012" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="About to send resource to Azure" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PrivateEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="1591" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2172" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2188" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2188" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:26Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com "asotest-rg-leywfp" not found)" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2180" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:26Z] PublicIPPrefixController "msg"="updated resource in etcd" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2189" generation=1 uid="9f37009c-942a-4310-9879-da652ac1538d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:25 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PublicIPPrefixController "msg"="Done with reconcile" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="adding finalizer" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestroeizu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk\",\"name\":\"asotestaknclk\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="updated resource in etcd" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2186" generation=1 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="updated resource in etcd" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2196" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="updated resource in etcd" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2191" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2198" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error, re-queuing..." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Determined CreateOrUpdate action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="updated resource in etcd" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2199" generation=1 uid="65bee298-085c-4f1b-b9f7-0ee35104ad3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ac785157-55fe-42df-8d93-23952291ce39?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="Done with reconcile" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2195" generation=2 uid="449334f3-a9a7-4cdc-a267-9ed810942bc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"45ca54fe-7148-4c56-b1ac-996abe708d84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2196" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2193" generation=2 uid="7cc821c6-8ebc-480c-8152-be6a27f5fc22" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2202" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-leywfp\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="updated resource in etcd" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2197" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2172" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="Reconcile invoked" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2199" generation=1 uid="65bee298-085c-4f1b-b9f7-0ee35104ad3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ac785157-55fe-42df-8d93-23952291ce39?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Determined Delete action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Starting delete of resource" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2180" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2198" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="applying ownership" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="Determined CreateOrUpdate action" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="Resource successfully created/updated" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2202" generation=1 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-leywfp\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="Got ARM status" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" status="{\"etag\":\"W/\\\"cf8664bc-6279-4b23-832b-410f1215e1c7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw\",\"location\":\"westus2\",\"name\":\"aso-sample-netgw\",\"properties\":{\"idleTimeoutInMinutes\":4,\"provisioningState\":\"Succeeded\",\"publicIpAddresses\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip\"}],\"resourceGuid\":\"121d4457-4509-4c31-b389-c39d3fa99a2f\"},\"sku\":{\"name\":\"Standard\"},\"type\":\"Microsoft.Network/natGateways\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountController "msg"="Determined Delete action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountController "msg"="Starting delete of resource" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="About to send resource to Azure" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2188" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="About to send resource to Azure" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Successfully sent resource to Azure" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Successfully sent resource to Azure" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2203" generation=2 uid="42c0981c-c801-4a7d-af5e-3a7697157462" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:15 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com "asotest-rg-leywfp" not found)" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] VirtualNetworkController "msg"="Determined Delete action" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2172" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2180" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2196" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2188" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="About to send resource to Azure" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2209" generation=1 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestswxzyc", UID:"d07a7e97-3f35-4572-b422-e92f3a2f057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Successfully sent resource to Azure" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Resource successfully created/updated" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Got ARM status" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" status="{\"etag\":\"\\\"1300190d-0000-0400-0000-64ac9cf20000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver\",\"location\":\"westus2\",\"name\":\"aso-sample-resolver\",\"properties\":{\"dnsResolverState\":\"Connected\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"6b4fc71e-c4fb-47a6-bd22-f2e91b0ece8d\",\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2205" generation=2 uid="71fa412b-26d5-4c8b-9b53-c5b36d3de943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"8139d6b6-4449-4c00-80bb-2768d9bdc22e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-leywfp\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestsqlstorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestsqlstorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestsqlstorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7cc821c6-8ebc-480c-8152-be6a27f5fc22, UID in object meta: " name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestpqebnz resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotestpqebnz": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestpqebnz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 449334f3-a9a7-4cdc-a267-9ed810942bc9, UID in object meta: " name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="updated resource in etcd" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2218" generation=1 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77871966-8cb9-45fb-9e5a-dfc03dd2c9cd?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Done with reconcile" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2198" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error, re-queuing..." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Determined Delete action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Starting delete of resource" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ServerController "msg"="Delete succeeded, removing finalizer" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2198" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="applying ownership" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2218" generation=1 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77871966-8cb9-45fb-9e5a-dfc03dd2c9cd?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2180" generation=2 uid="d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2196" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlvnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplesqlvnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlvnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 42c0981c-c801-4a7d-af5e-3a7697157462, UID in object meta: " name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Resource successfully created/updated" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Got ARM status" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" status="{\"etag\":\"W/\\\"155bffd8-0a4b-4171-ac34-e2fe2049cef2\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint\",\"location\":\"westus2\",\"name\":\"aso-sample-privateendpoint\",\"properties\":{\"customDnsConfigs\":[{\"fqdn\":\"asosamplestorage.blob.core.windows.net\",\"ipAddresses\":[\"10.0.0.4\"]}],\"customNetworkInterfaceName\":\"\",\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/networkInterfaces/aso-sample-privateendpoint.nic.b05002b2-74c2-4362-94bd-2a839f801184\"}],\"privateLinkServiceConnections\":[{\"etag\":\"W/\\\"155bffd8-0a4b-4171-ac34-e2fe2049cef2\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateLinkServiceConnections/testEndpoint\",\"name\":\"testEndpoint\",\"properties\":{\"groupIds\":[\"blob\"],\"privateLinkServiceConnectionState\":{\"actionsRequired\":\"None\",\"description\":\"Auto-Approved\",\"status\":\"Approved\"},\"privateLinkServiceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"}],\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1\"}},\"type\":\"Microsoft.Network/privateEndpoints\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Determined CreateOrUpdate action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Resource not created yet, will check again" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Didn't commit obj as there was no change" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Done with reconcile" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="updated resource in etcd" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2225" generation=1 uid="65bee298-085c-4f1b-b9f7-0ee35104ad3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NatGatewayController "msg"="Done with reconcile" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="updated resource in etcd" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2222" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Extension post-reconcile check running" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Extension post-reconcile check succeeded" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" Result=extensions.PostReconcileCheckResult{action:"Success", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="updated resource in etcd" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2223" generation=2 uid="539444fc-2129-4eb8-b9a5-970548ddf9b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"449334f3-a9a7-4cdc-a267-9ed810942bc9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2218" generation=1 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77871966-8cb9-45fb-9e5a-dfc03dd2c9cd?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2221" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestroeizu", UID:"451d7690-9bfe-4eae-a33b-6818d4c0509a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2222" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Determined CreateOrUpdate action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Resource successfully created/updated" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotest-rg-bwxmby resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bwxmby": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotest-rg-bwxmby, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7, UID in object meta: " name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2188" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Resource not created yet, will check again" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Didn't commit obj as there was no change" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Got ARM status" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" status="{\"etag\":\"W/\\\"6867568a-87c7-4440-a353-d90431cbd2c5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls\",\"location\":\"westus2\",\"name\":\"aso-sample-pls\",\"properties\":{\"alias\":\"aso-sample-pls.b85271a9-6824-4551-b758-edf24168337f.westus2.azure.privatelinkservice\",\"autoApproval\":{\"subscriptions\":[\"00000000-0000-0000-0000-000000000000\"]},\"enableProxyProtocol\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"6867568a-87c7-4440-a353-d90431cbd2c5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls/ipConfigurations/config\",\"name\":\"config\",\"properties\":{\"primary\":true,\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\"}},\"type\":\"Microsoft.Network/privateLinkServices/ipConfigurations\"}],\"loadBalancerFrontendIpConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"}],\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/networkInterfaces/aso-sample-pls.nic.facea96c-ab94-4dca-bda1-b1549018c505\"}],\"provisioningState\":\"Succeeded\",\"visibility\":{\"subscriptions\":[\"00000000-0000-0000-0000-000000000000\"]}},\"type\":\"Microsoft.Network/privateLinkServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2222" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2188" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2229" generation=1 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotest-rg-bwxmby aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestojebhz aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestquccdd aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestymtocl aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestwurheb aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Resource not created yet, will check again" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Didn't commit obj as there was no change" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Successfully created resource" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" name="plsconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] ServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo resource status: Operation cannot be fulfilled on servers.sql.azure.com "asotestwidzfo": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/servers/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 71fa412b-26d5-4c8b-9b53-c5b36d3de943, UID in object meta: " name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2231" generation=2 uid="4bbe25a2-196d-4860-b8e0-4277180df220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"449334f3-a9a7-4cdc-a267-9ed810942bc9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Set owner reference" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsResolver" ownerName="aso-sample-resolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2222" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2198" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error, re-queuing..." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs\",\"location\":\"westcentralus\",\"name\":\"asotestnmosgs\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="updated resource in etcd" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2238" generation=1 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestkryvrq resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestkryvrq": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestkryvrq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 539444fc-2129-4eb8-b9a5-970548ddf9b1, UID in object meta: " name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicController "msg"="Determined Delete action" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Resource not created yet, will check again" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Didn't commit obj as there was no change" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2198" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="applying ownership" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2240" generation=2 uid="f060792f-9d97-4b95-9fcf-8cf9cffc7d06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"d2ef5f0c-bd10-40bb-b190-1b5a42f4acf7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2242" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2157" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="updated resource in etcd" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2243" generation=1 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateLinkServiceController "msg"="Done with reconcile" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Determined Delete action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Starting delete of resource" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2222" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Set owner reference" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=PrivateEndpoint" ownerName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Resource successfully created/updated" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Got ARM status" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" status="{\"etag\":\"\\\"3301edfd-0000-0400-0000-64ac9cec0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset\",\"location\":\"westus2\",\"name\":\"aso-sample-ruleset\",\"properties\":{\"dnsResolverOutboundEndpoints\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"57748b0d-282f-4667-9bd5-d9b5e5119442\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsForwardingRulesets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="adding finalizer" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2247" generation=1 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestroeizu", UID:"451d7690-9bfe-4eae-a33b-6818d4c0509a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyhaxhd resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotestyhaxhd": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyhaxhd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4bbe25a2-196d-4860-b8e0-4277180df220, UID in object meta: " name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="Set owner reference" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsResolver" ownerName="aso-sample-resolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotesthzpbpj": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f060792f-9d97-4b95-9fcf-8cf9cffc7d06, UID in object meta: " name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2253" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="updated resource in etcd" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2257" generation=1 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="40s" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:27Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2252" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="adding finalizer" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversInboundEndpointController "msg"="adding finalizer" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2256" generation=2 uid="b604d66e-3dd7-4bee-a135-f6973adf29f4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestyhaxhd", UID:"4bbe25a2-196d-4860-b8e0-4277180df220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2253" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2255" generation=2 uid="4521abb4-0491-4b55-83d7-e5645cf5c08f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestsqlstorage", UID:"7cc821c6-8ebc-480c-8152-be6a27f5fc22", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="About to send resource to Azure" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] DnsResolversOutboundEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2261" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2253" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2259" generation=2 uid="62611ad8-5b47-4e3a-b5b3-20ee220e8021" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"42c0981c-c801-4a7d-af5e-3a7697157462", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:27Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2262" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2264" generation=2 uid="5b546fa5-eb76-423c-8d73-ab5796f9e60a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2260" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"28e2550f-9f34-4aef-aa42-5ea4b9caced8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="1m20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2268" generation=2 uid="adf4e7e7-c18b-45d3-82dd-1cffb93683d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2149" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Determined CreateOrUpdate action" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "sqlstorageservice": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4521abb4-0491-4b55-83d7-e5645cf5c08f, UID in object meta: " name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyyutyj resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestyyutyj": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyyutyj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b604d66e-3dd7-4bee-a135-f6973adf29f4, UID in object meta: " name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="2m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAdvancedThreatProtectionSettingController "msg"="Determined Delete action" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAdvancedThreatProtectionSettingController "msg"="Starting delete of resource" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAdvancedThreatProtectionSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAdvancedThreatProtectionSettingController "msg"="Delete succeeded, removing finalizer" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2253" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Set owner reference" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsForwardingRuleset" ownerName="aso-sample-ruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2226" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlsubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesqlsubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlsubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 62611ad8-5b47-4e3a-b5b3-20ee220e8021, UID in object meta: " name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2271" generation=2 uid="dbecdcaa-8350-44de-be7d-fbad9f3a5289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2253" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Resource successfully created/updated" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Got ARM status" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" status="{\"etag\":\"W/\\\"f25241dd-e9e9-4def-b85f-119548ea60fa\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion\",\"location\":\"westus2\",\"name\":\"aso-sample-bastion\",\"properties\":{\"dnsName\":\"bst-9aee536d-7b1d-4974-86a1-88b55e65552e.bastion.azure.com\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion/bastionHostIpConfigurations/IpConf\"}],\"provisioningState\":\"Succeeded\",\"scaleUnits\":2},\"sku\":{\"name\":\"Basic\"},\"type\":\"Microsoft.Network/bastionHosts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="adding finalizer" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="About to send resource to Azure" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="About to send resource to Azure" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Successfully sent resource to Azure" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2279" generation=2 uid="5cdbfeb9-58d0-4412-964d-12a83f12aa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2280" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestymtocl resource status: Operation cannot be fulfilled on namespacesauthorizationrules.servicebus.azure.com "asotestymtocl": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestymtocl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5b546fa5-eb76-423c-8d73-ab5796f9e60a, UID in object meta: " name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2282" generation=2 uid="b20d41da-ced8-430e-8890-681cf9d98fb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"f060792f-9d97-4b95-9fcf-8cf9cffc7d06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestwurheb resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestwurheb": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestwurheb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dbecdcaa-8350-44de-be7d-fbad9f3a5289, UID in object meta: " name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2284" generation=2 uid="f98207fa-0776-418e-a67e-ef4d315b4960" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestyyutyj", UID:"b604d66e-3dd7-4bee-a135-f6973adf29f4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicController "msg"="Determined Delete action" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersElasticPoolController "msg"="Determined Delete action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersElasticPoolController "msg"="Starting delete of resource" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersElasticPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersElasticPoolController "msg"="Delete succeeded, removing finalizer" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersAdvancedThreatProtectionSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdqgjqg resource status: Operation cannot be fulfilled on serversadvancedthreatprotectionsettings.sql.azure.com "asotestdqgjqg": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversadvancedthreatprotectionsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdqgjqg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adf4e7e7-c18b-45d3-82dd-1cffb93683d8, UID in object meta: " name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2280" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2253" generation=2 uid="11826fa9-b0f1-41eb-a9fe-544e6d1077d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2292" generation=2 uid="c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2287" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsForwardingRuleset", Name:"aso-sample-ruleset", UID:"b9ca3939-a3df-4a81-80dd-167eaaa3c117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="updated resource in etcd" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2293" generation=1 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersFirewallRuleController "msg"="Determined Delete action" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersFirewallRuleController "msg"="Starting delete of resource" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Determined CreateOrUpdate action" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotestgadbkx": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b20d41da-ced8-430e-8890-681cf9d98fb9, UID in object meta: " name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2280" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2298" generation=2 uid="35c91f0a-11e7-4412-b1a3-99780cdb3fcd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersElasticPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttcwsht resource status: Operation cannot be fulfilled on serverselasticpools.sql.azure.com "asotesttcwsht": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serverselasticpools/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttcwsht, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5cdbfeb9-58d0-4412-964d-12a83f12aa4f, UID in object meta: " name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestlijqaw resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestlijqaw": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestlijqaw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f98207fa-0776-418e-a67e-ef4d315b4960, UID in object meta: " name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersOutboundFirewallRuleController "msg"="Determined Delete action" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersOutboundFirewallRuleController "msg"="Starting delete of resource" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersOutboundFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersOutboundFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="About to send resource to Azure" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2300" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"28e2550f-9f34-4aef-aa42-5ea4b9caced8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/84dd0523-b1fc-47ea-8b9d-5a015fc773c1?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Done with reconcile" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Successfully sent resource to Azure" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Resource successfully created/updated" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Got ARM status" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" status="{\"etag\":\"\\\"9c0056af-0000-0400-0000-64ac9d020000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule\",\"name\":\"aso-sample-rule\",\"properties\":{\"domainName\":\"test.\",\"forwardingRuleState\":\"Disabled\",\"provisioningState\":\"Succeeded\",\"targetDnsServers\":[{\"ipAddress\":\"192.168.1.1\",\"port\":53}]},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsForwardingRulesets/forwardingRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesthozjgi resource status: Operation cannot be fulfilled on serversfirewallrules.sql.azure.com "asotesthozjgi": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversfirewallrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesthozjgi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c5417e4e-c45b-4a74-90fa-5fc9c1b35b2b, UID in object meta: " name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2304" generation=2 uid="9caa313f-782b-4b30-88f3-2ef95f0b781c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVirtualNetworkRuleController "msg"="Determined Delete action" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVirtualNetworkRuleController "msg"="Starting delete of resource" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVirtualNetworkRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVirtualNetworkRuleController "msg"="Delete succeeded, removing finalizer" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotest-rg-jwyavv resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-jwyavv": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotest-rg-jwyavv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 11826fa9-b0f1-41eb-a9fe-544e6d1077d8, UID in object meta: " name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2300" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"28e2550f-9f34-4aef-aa42-5ea4b9caced8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/84dd0523-b1fc-47ea-8b9d-5a015fc773c1?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2308" generation=2 uid="1f1a2bda-6331-43fc-b6fc-db6b12925a45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2280" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAuditingSettingController "msg"="Determined Delete action" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAuditingSettingController "msg"="Starting delete of resource" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2311" generation=2 uid="87f937a8-dcb0-4377-90b7-3ba72734b845" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestgadbkx", UID:"b20d41da-ced8-430e-8890-681cf9d98fb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Determined CreateOrUpdate action" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAuditingSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersAuditingSettingController "msg"="Delete succeeded, removing finalizer" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersOutboundFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestiduxfx resource status: Operation cannot be fulfilled on serversoutboundfirewallrules.sql.azure.com "asotestiduxfx": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversoutboundfirewallrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestiduxfx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 35c91f0a-11e7-4412-b1a3-99780cdb3fcd, UID in object meta: " name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Resource successfully created/updated" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Got ARM status" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" status="{\"etag\":\"W/\\\"bf2f7b61-d78b-42cb-a9ee-7625d904e953\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup\",\"name\":\"aso-sample-dnszonegroup\",\"properties\":{\"privateDnsZoneConfigs\":[{\"name\":\"config\",\"properties\":{\"privateDnsZoneId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net\",\"recordSets\":[{\"fqdn\":\"asosamplestorage.privatelink.blob.core.windows.net\",\"ipAddresses\":[\"10.0.0.4\"],\"provisioningState\":\"Succeeded\",\"recordSetName\":\"asosamplestorage\",\"recordType\":\"A\",\"ttl\":10}]}}],\"provisioningState\":\"Succeeded\"}}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2313" generation=2 uid="cef9ae18-d3e8-49cf-b198-c6bcf0e342ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersVirtualNetworkRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestulcgqg resource status: Operation cannot be fulfilled on serversvirtualnetworkrules.sql.azure.com "asotestulcgqg": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversvirtualnetworkrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestulcgqg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9caa313f-782b-4b30-88f3-2ef95f0b781c, UID in object meta: " name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersConnectionPolicyController "msg"="Determined Delete action" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersConnectionPolicyController "msg"="Starting delete of resource" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersConnectionPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersConnectionPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2316" generation=1 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsForwardingRuleset", Name:"aso-sample-ruleset", UID:"b9ca3939-a3df-4a81-80dd-167eaaa3c117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Done with reconcile" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2280" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotest-rg-jwyavv aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestaknclk aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestyftnak aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestgwznuu aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestqaeexb aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotesthoycyt aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersAuditingSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestyllufl resource status: Operation cannot be fulfilled on serversauditingsettings.sql.azure.com "asotestyllufl": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversauditingsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestyllufl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1f1a2bda-6331-43fc-b6fc-db6b12925a45, UID in object meta: " name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestojebhz resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestojebhz": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestojebhz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 87f937a8-dcb0-4377-90b7-3ba72734b845, UID in object meta: " name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2280" generation=2 uid="25f96c24-2d98-4115-bd44-8eeade2ab9a6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersConnectionPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestjdhujz resource status: Operation cannot be fulfilled on serversconnectionpolicies.sql.azure.com "asotestjdhujz": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversconnectionpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestjdhujz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: cef9ae18-d3e8-49cf-b198-c6bcf0e342ba, UID in object meta: " name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2325" generation=2 uid="1954a7bf-9cf4-4fa8-96d2-bb8d29715a68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2273" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersDatabaseController "msg"="Determined Delete action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersDatabaseController "msg"="Starting delete of resource" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2328" generation=1 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"28e2550f-9f34-4aef-aa42-5ea4b9caced8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Done with reconcile" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2327" generation=2 uid="86d8912a-d569-4c48-a076-f6a21178ec8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"11826fa9-b0f1-41eb-a9fe-544e6d1077d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Resource successfully created/updated" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Got ARM status" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" status="{\"etag\":\"\\\"510056cc-0000-0400-0000-64ac9dbf0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep\",\"location\":\"westus2\",\"name\":\"aso-sample-outbound-ep\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c04d984b-c2d9-44bb-b05c-15fde636c575\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers/outboundEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2330" generation=2 uid="7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Determined Delete action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Starting delete of resource" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersSecurityAlertPolicyController "msg"="Determined Delete action" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotest-rg-vwbpuo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vwbpuo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotest-rg-vwbpuo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 25f96c24-2d98-4115-bd44-8eeade2ab9a6, UID in object meta: " name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotest-rg-vwbpuo aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestexokpd aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestzjviny aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotesteenzrz aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestroeizu aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestnmosgs]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersSecurityAlertPolicyController "msg"="Starting delete of resource" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersSecurityAlertPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersSecurityAlertPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2335" generation=2 uid="b240b541-2264-4166-8d0b-512a9f4ae8ee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestyftnak resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotestyftnak": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestyftnak, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 86d8912a-d569-4c48-a076-f6a21178ec8a, UID in object meta: " name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2340" generation=2 uid="609a3a47-c939-4881-8e85-f4923f446d40" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestojebhz", UID:"87f937a8-dcb0-4377-90b7-3ba72734b845", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2342" generation=1 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVulnerabilityAssessmentController "msg"="Determined Delete action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVulnerabilityAssessmentController "msg"="Starting delete of resource" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVulnerabilityAssessmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersVulnerabilityAssessmentController "msg"="Delete succeeded, removing finalizer" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm resource status: Operation cannot be fulfilled on serversdatabases.sql.azure.com "asotestkekpcm": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabases/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1954a7bf-9cf4-4fa8-96d2-bb8d29715a68, UID in object meta: " name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2346" generation=1 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersIPV6FirewallRuleController "msg"="Reconcile invoked" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2345" generation=2 uid="37cf8c51-42dc-4834-8311-426cb4f0ca72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"71fa412b-26d5-4c8b-9b53-c5b36d3de943", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2297" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersSecurityAlertPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestlboexz resource status: Operation cannot be fulfilled on serverssecurityalertpolicies.sql.azure.com "asotestlboexz": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serverssecurityalertpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestlboexz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7fbf6a39-071c-4bcd-879a-d6bd66a7f9a3, UID in object meta: " name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Resource successfully created/updated" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersIPV6FirewallRuleController "msg"="Determined Delete action" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersIPV6FirewallRuleController "msg"="Starting delete of resource" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersIPV6FirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ServersIPV6FirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] DnsResolversInboundEndpointController "msg"="Got ARM status" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" status="{\"etag\":\"\\\"5100f3cb-0000-0400-0000-64ac9da00000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep\",\"location\":\"westus2\",\"name\":\"aso-sample-inbound-ep\",\"properties\":{\"ipConfigurations\":[{\"privateIpAddress\":\"10.0.0.4\",\"privateIpAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep\"}}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"314bc9ec-590d-4e44-983b-c0de0437c285\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers/inboundEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2351" generation=2 uid="3f07c07d-f5f6-46d2-9d84-9383706a50e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestquccdd resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestquccdd": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestquccdd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 609a3a47-c939-4881-8e85-f4923f446d40, UID in object meta: " name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2348" generation=2 uid="f1822ccf-cd49-44e6-ad03-5ebfac2c5917" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"25f96c24-2d98-4115-bd44-8eeade2ab9a6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] ServersVulnerabilityAssessmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdwzgal resource status: Operation cannot be fulfilled on serversvulnerabilityassessments.sql.azure.com "asotestdwzgal": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversvulnerabilityassessments/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdwzgal, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b240b541-2264-4166-8d0b-512a9f4ae8ee, UID in object meta: " name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2035" generation=2 uid="74960934-396f-49ab-bdd3-eebf4db31bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2349" generation=1 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Determined Delete action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Starting delete of resource" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl\",\"location\":\"westus2\",\"name\":\"asotest-rg-vfmqkl\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2356" generation=2 uid="a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:28Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestgwznuu resource status: Operation cannot be fulfilled on namespacesauthorizationrules.servicebus.azure.com "asotestgwznuu": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestgwznuu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3f07c07d-f5f6-46d2-9d84-9383706a50e4, UID in object meta: " name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2362" generation=2 uid="25fe39df-a054-413f-bab4-66bc60efbf1d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"86d8912a-d569-4c48-a076-f6a21178ec8a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotestedijsl": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f1822ccf-cd49-44e6-ad03-5ebfac2c5917, UID in object meta: " name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/asotest-rg-ichwpb resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ichwpb": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/asotest-rg-ichwpb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 74960934-396f-49ab-bdd3-eebf4db31bb6, UID in object meta: " name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersIPV6FirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestggernv resource status: Operation cannot be fulfilled on serversipv6firewallrules.sql.azure.com "asotestggernv": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversipv6firewallrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestggernv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 37cf8c51-42dc-4834-8311-426cb4f0ca72, UID in object meta: " name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2366" generation=1 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Determined Delete action" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2365" generation=1 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2368" generation=2 uid="67f52da5-cd08-43aa-94c5-695b79f5c4d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/asotest-rg-ichwpb aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaysubnet aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaypublicip aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2 aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepublicip aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroutetable aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplensg aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleinboundnatrule aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplenic aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplerule aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroute aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnetgateway aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepeering]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestqaeexb resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestqaeexb": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestqaeexb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a2543fdf-2e8c-4ddd-b7cf-eebf8de51cc9, UID in object meta: " name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotesthoycyt resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotesthoycyt": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotesthoycyt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 25fe39df-a054-413f-bab4-66bc60efbf1d, UID in object meta: " name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2377" generation=2 uid="d6ecc41e-5048-484a-8fbe-4e736ab1042b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"4521abb4-0491-4b55-83d7-e5645cf5c08f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:14 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2375" generation=1 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2376" generation=2 uid="a4afa137-a141-4ac0-b6bf-91f772cf84e9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2380" generation=1 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="applying ownership" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2385" generation=2 uid="f02eef8f-7d85-4cfb-9739-641f5efbc379" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2384" generation=2 uid="0f389a97-a3e7-4963-aa32-33226974f1ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2382" generation=2 uid="d8aee3b6-25cf-440b-ab3c-e75bcfd6b060" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"f1822ccf-cd49-44e6-ad03-5ebfac2c5917", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2386" generation=1 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/vulnerabilityassessments resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "vulnerabilityassessments": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/vulnerabilityassessments, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d6ecc41e-5048-484a-8fbe-4e736ab1042b, UID in object meta: " name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestzjviny resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestzjviny": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestzjviny, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a4afa137-a141-4ac0-b6bf-91f772cf84e9, UID in object meta: " name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Determined Delete action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Starting delete of resource" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAuditingSettingController "msg"="Determined Delete action" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAuditingSettingController "msg"="Starting delete of resource" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAuditingSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAuditingSettingController "msg"="Delete succeeded, removing finalizer" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Determined Delete action" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix\",\"location\":\"westus2\",\"name\":\"asotest-rg-srelix\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestexokpd resource status: Operation cannot be fulfilled on namespacesauthorizationrules.servicebus.azure.com "asotestexokpd": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestexokpd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 67f52da5-cd08-43aa-94c5-695b79f5c4d7, UID in object meta: " name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Set owner reference" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2392" generation=2 uid="15bd9eb9-94cc-4e02-91ee-0695b2cedd0e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:16 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2393" generation=2 uid="8835be09-a531-4f83-9332-6aa570e17ba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="adding finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersDatabasesAuditingSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwenbxt resource status: Operation cannot be fulfilled on serversdatabasesauditingsettings.sql.azure.com "asotestwenbxt": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesauditingsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwenbxt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0f389a97-a3e7-4963-aa32-33226974f1ae, UID in object meta: " name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotesteenzrz resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotesteenzrz": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotesteenzrz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d8aee3b6-25cf-440b-ab3c-e75bcfd6b060, UID in object meta: " name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesSecurityAlertPolicyController "msg"="Determined Delete action" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesSecurityAlertPolicyController "msg"="Starting delete of resource" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesSecurityAlertPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesSecurityAlertPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2398" generation=2 uid="d07a7e97-3f35-4572-b422-e92f3a2f057c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesthoycyt", UID:"25fe39df-a054-413f-bab4-66bc60efbf1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaypublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "gatewaypublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaypublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f02eef8f-7d85-4cfb-9739-641f5efbc379, UID in object meta: " name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2400" generation=2 uid="1c6b3887-fbad-4a35-a9fe-5744b3184cbe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet2": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 15bd9eb9-94cc-4e02-91ee-0695b2cedd0e, UID in object meta: " name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2401" generation=2 uid="b38abe86-b0a4-4699-a1b2-2ee59644f3c0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2404" generation=1 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Determined Delete action" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Starting delete of resource" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Delete succeeded, removing finalizer" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2409" generation=2 uid="59f1ae4c-f67f-4567-9fcd-32030e0d0d7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersDatabasesSecurityAlertPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestubsqct resource status: Operation cannot be fulfilled on serversdatabasessecurityalertpolicies.sql.azure.com "asotestubsqct": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasessecurityalertpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestubsqct, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8835be09-a531-4f83-9332-6aa570e17ba0, UID in object meta: " name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2408" generation=1 uid="ea337d5d-5a5d-417e-949c-129cffabe61e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="applying ownership" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2405" generation=1 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"d64be6b8-13aa-4564-a04a-c1e6337a55a5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2412" generation=2 uid="f1c6ad70-c308-4871-9aa9-5d04613a148b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] RouteTableController "msg"="Determined Delete action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] RouteTableController "msg"="Starting delete of resource" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] RouteTableController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] RouteTableController "msg"="Delete succeeded, removing finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Determined Delete action" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Starting delete of resource" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Set owner reference" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2413" generation=2 uid="451d7690-9bfe-4eae-a33b-6818d4c0509a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesteenzrz", UID:"d8aee3b6-25cf-440b-ab3c-e75bcfd6b060", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:21 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestswxzyc": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d07a7e97-3f35-4572-b422-e92f3a2f057c, UID in object meta: " name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2417" generation=2 uid="89fed26a-8761-4592-b979-2812de9352b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2416" generation=1 uid="747dffee-1766-40f1-8a66-e520255fdbe1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2415" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1c6b3887-fbad-4a35-a9fe-5744b3184cbe, UID in object meta: " name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestzmywpu resource status: Operation cannot be fulfilled on serversdatabasesadvancedthreatprotectionsettings.sql.azure.com "asotestzmywpu": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesadvancedthreatprotectionsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestzmywpu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b38abe86-b0a4-4699-a1b2-2ee59644f3c0, UID in object meta: " name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] RouteTableController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroutetable resource status: Operation cannot be fulfilled on routetables.network.azure.com "sampleroutetable": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetables/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroutetable, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 59f1ae4c-f67f-4567-9fcd-32030e0d0d7b, UID in object meta: " name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="adding finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2423" generation=2 uid="689a80a0-bce7-415f-acd4-f731a9db4681" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2424" generation=2 uid="6e4f5087-e747-4688-ac9b-5256311e4380" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestswxzyc", UID:"d07a7e97-3f35-4572-b422-e92f3a2f057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2422" generation=2 uid="7bbf32c4-f75b-4070-b630-4e6fc14903f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined Delete action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesTransparentDataEncryptionController "msg"="Starting delete of resource" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesTransparentDataEncryptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesTransparentDataEncryptionController "msg"="Delete succeeded, removing finalizer" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestvinoxb resource status: Operation cannot be fulfilled on serversdatabasesbackupshorttermretentionpolicies.sql.azure.com "asotestvinoxb": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesbackupshorttermretentionpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestvinoxb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f1c6ad70-c308-4871-9aa9-5d04613a148b, UID in object meta: " name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2428" generation=2 uid="2a11518d-ce70-4db5-b313-5918b16b8f99" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Determined Delete action" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Starting delete of resource" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2429" generation=1 uid="ea337d5d-5a5d-417e-949c-129cffabe61e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "samplensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 89fed26a-8761-4592-b979-2812de9352b6, UID in object meta: " name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2434" generation=2 uid="bbaa03c3-b418-4455-8615-1995713e4eaf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2439" generation=1 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"d64be6b8-13aa-4564-a04a-c1e6337a55a5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestroeizu resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestroeizu": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestroeizu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 451d7690-9bfe-4eae-a33b-6818d4c0509a, UID in object meta: " name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2439" generation=1 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"d64be6b8-13aa-4564-a04a-c1e6337a55a5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="2443" generation=2 uid="183d92a3-abdc-486c-9d5e-bce33205aa32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"1954a7bf-9cf4-4fa8-96d2-bb8d29715a68", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Determined Delete action" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Starting delete of resource" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkrftcu resource status: Operation cannot be fulfilled on serversdatabasesbackuplongtermretentionpolicies.sql.azure.com "asotestkrftcu": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesbackuplongtermretentionpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkrftcu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2a11518d-ce70-4db5-b313-5918b16b8f99, UID in object meta: " name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:29Z] ServersDatabasesTransparentDataEncryptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestoxzset resource status: Operation cannot be fulfilled on serversdatabasestransparentdataencryptions.sql.azure.com "asotestoxzset": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasestransparentdataencryptions/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestoxzset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7bbf32c4-f75b-4070-b630-4e6fc14903f2, UID in object meta: " name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Delete succeeded, removing finalizer" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Resource not created yet, will check again" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Didn't commit obj as there was no change" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2438" generation=1 uid="747dffee-1766-40f1-8a66-e520255fdbe1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2446" generation=2 uid="e4a47c14-8fca-45b6-927e-773bd7b8efae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkGatewayController "msg"="Determined Delete action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkGatewayController "msg"="Starting delete of resource" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkGatewayController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkGatewayController "msg"="Delete succeeded, removing finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:29Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2439" generation=1 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"d64be6b8-13aa-4564-a04a-c1e6337a55a5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="2449" generation=2 uid="b340b280-f1da-4275-867e-5f57dad5317b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestroeizu", UID:"451d7690-9bfe-4eae-a33b-6818d4c0509a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:22 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Got ARM status" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" status="{\"etag\":\"82e2f7af-8dfb-48a9-8bbc-1cc3bf2cc854\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com\",\"location\":\"global\",\"name\":\"aso-sample-pdz.com\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 689a80a0-bce7-415f-acd4-f731a9db4681, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bbaa03c3-b418-4455-8615-1995713e4eaf, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttdlrym resource status: Operation cannot be fulfilled on serversdatabasesvulnerabilityassessments.sql.azure.com "asotesttdlrym": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesvulnerabilityassessments/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttdlrym, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 183d92a3-abdc-486c-9d5e-bce33205aa32, UID in object meta: " name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2456" generation=2 uid="7b3d1a5c-eac8-4fd9-8f34-21c70803fae8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"74960934-396f-49ab-bdd3-eebf4db31bb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2459" generation=1 uid="ea337d5d-5a5d-417e-949c-129cffabe61e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] VirtualNetworkGatewayController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnetgateway resource status: Operation cannot be fulfilled on virtualnetworkgateways.network.azure.com "samplevnetgateway": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkgateways/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnetgateway, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e4a47c14-8fca-45b6-927e-773bd7b8efae, UID in object meta: " name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2459" generation=1 uid="ea337d5d-5a5d-417e-949c-129cffabe61e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestnmosgs resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestnmosgs": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestnmosgs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b340b280-f1da-4275-867e-5f57dad5317b, UID in object meta: " name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2465" generation=1 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"d64be6b8-13aa-4564-a04a-c1e6337a55a5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Got ARM status" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" status="{\"etag\":\"bcfc1629-c1a9-4f5e-9bb8-7268ff1dfb61\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com\",\"location\":\"global\",\"name\":\"aso-sample-pdz.com\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2469" generation=1 uid="747dffee-1766-40f1-8a66-e520255fdbe1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a9fb857-afb3-4baf-92b8-c5c4e7b12db0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2467" generation=1 uid="019bd909-c07c-4376-9442-4f20c07e228e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancer": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7b3d1a5c-eac8-4fd9-8f34-21c70803fae8, UID in object meta: " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2469" generation=1 uid="747dffee-1766-40f1-8a66-e520255fdbe1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a9fb857-afb3-4baf-92b8-c5c4e7b12db0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" status="{\"etag\":\"W/\\\"cb7a7b85-f506-45bc-9a10-58e7e1d73dad\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\",\"location\":\"westus2\",\"name\":\"aso-sample-vn\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f3406373-1dda-4b7d-bff3-8d632517f3b2\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2476" generation=1 uid="ea337d5d-5a5d-417e-949c-129cffabe61e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2478" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2482" generation=1 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2481" generation=1 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2480" generation=1 uid="019bd909-c07c-4376-9442-4f20c07e228e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2485" generation=1 uid="747dffee-1766-40f1-8a66-e520255fdbe1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe\",\"location\":\"westus2\",\"name\":\"asotest-rg-gfsexe\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2488" generation=2 uid="84be9c85-c243-4a07-a28f-d7a50b61ddcc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"15bd9eb9-94cc-4e02-91ee-0695b2cedd0e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:15 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2489" generation=1 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2490" generation=1 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2492" generation=2 uid="220836e3-f6dc-4d7c-a200-abab8f834857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"59f1ae4c-f67f-4567-9fcd-32030e0d0d7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2494" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-zklaaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl\",\"location\":\"westus2\",\"name\":\"asotest-rg-emkabl\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] RouteTablesRouteController "msg"="Determined Delete action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] RouteTablesRouteController "msg"="Starting delete of resource" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] RouteTablesRouteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] RouteTablesRouteController "msg"="Delete succeeded, removing finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2496" generation=1 uid="019bd909-c07c-4376-9442-4f20c07e228e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaysubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "gatewaysubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaysubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 84be9c85-c243-4a07-a28f-d7a50b61ddcc, UID in object meta: " name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2494" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2501" generation=1 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="f535b52c-766b-4e59-8657-ceb329b11feb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:16 +0000 UTC" deletionTimestamp="2023-09-08 21:20:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2494" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] RouteTablesRouteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroute resource status: Operation cannot be fulfilled on routetablesroutes.network.azure.com "sampleroute": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetablesroutes/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroute, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 220836e3-f6dc-4d7c-a200-abab8f834857, UID in object meta: " name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2504" generation=1 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2499" generation=2 uid="7c768fdc-5916-4d30-813b-265c893d9399" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"89fed26a-8761-4592-b979-2812de9352b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2494" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/asotest-rg-gcupsz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gcupsz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/asotest-rg-gcupsz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f535b52c-766b-4e59-8657-ceb329b11feb, UID in object meta: " name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2513" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2508" generation=2 uid="75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2511" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="applying ownership" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplerule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "samplerule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplerule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7c768fdc-5916-4d30-813b-265c893d9399, UID in object meta: " name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Owner does not yet exist" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2516" generation=2 uid="1bb6d478-5773-4cd0-9d35-78d3d1715496" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"bbaa03c3-b418-4455-8615-1995713e4eaf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2512" generation=1 uid="02a8f1ca-1885-4358-b854-22a9a5e0f89f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined Delete action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Starting delete of resource" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Delete succeeded, removing finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2494" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Set owner reference" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2518" generation=1 uid="74965368-e7be-4920-be91-c9a34247d313" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="Set owner reference" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2519" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2494" generation=2 uid="d64be6b8-13aa-4564-a04a-c1e6337a55a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:28 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Owner does not yet exist" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="Set owner reference" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 75c1c5b1-7e9c-47b9-bd58-c4c72f0b5218, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/asotest-rg-gcupsz aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaypublicip aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet2 aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaysubnet aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepeering aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleloadbalancer aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplensg aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepublicip aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnetgateway aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplesubnet aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplenic aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplerule aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroute]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="adding finalizer" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2522" generation=2 uid="922cb9c4-3474-4fd1-9bfe-f97120cad103" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"LoadBalancer", Name:"sampleloadbalancer", UID:"7b3d1a5c-eac8-4fd9-8f34-21c70803fae8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2523" generation=1 uid="50c89ac1-0329-4cb2-81a7-af486fc7a1c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="applying ownership" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepeering resource status: Operation cannot be fulfilled on virtualnetworksvirtualnetworkpeerings.network.azure.com "samplepeering": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworksvirtualnetworkpeerings/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepeering, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1bb6d478-5773-4cd0-9d35-78d3d1715496, UID in object meta: " name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="adding finalizer" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2528" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancersInboundNatRuleController "msg"="Determined Delete action" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancersInboundNatRuleController "msg"="Starting delete of resource" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancersInboundNatRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] LoadBalancersInboundNatRuleController "msg"="Delete succeeded, removing finalizer" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="adding finalizer" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Owner does not yet exist" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Owner does not yet exist" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2531" generation=1 uid="d59e57b1-1795-4314-a534-f71895ddf98c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="adding finalizer" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Owner does not yet exist" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="Set owner reference" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="updated resource in etcd" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2534" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2537" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/asotest-rg-vfmqkl resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vfmqkl": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/asotest-rg-vfmqkl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d64be6b8-13aa-4564-a04a-c1e6337a55a5, UID in object meta: " name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2539" generation=1 uid="f3aed5cd-ac1f-444d-8d4f-140d8847d863" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/asotest-rg-vfmqkl aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/aso-sample-pdz.com]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2544" generation=2 uid="4cc762cf-f6f7-45be-a691-9692a65646dd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2540" generation=1 uid="50c89ac1-0329-4cb2-81a7-af486fc7a1c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2541" generation=1 uid="74965368-e7be-4920-be91-c9a34247d313" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZoneController "msg"="Reconcile invoked" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2545" generation=1 uid="aec5d5b9-e421-4ff9-9636-6acd3a8016ad" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZoneController "msg"="applying ownership" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="About to send resource to Azure" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Successfully sent resource to Azure" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Got ARM status" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz\",\"location\":\"westcentralus\",\"name\":\"asotestruzoxz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PublicIPAddressController "msg"="Determined Delete action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PublicIPAddressController "msg"="Starting delete of resource" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Set owner reference" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] LoadBalancersInboundNatRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleinboundnatrule resource status: Operation cannot be fulfilled on loadbalancersinboundnatrules.network.azure.com "sampleinboundnatrule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancersinboundnatrules/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleinboundnatrule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 922cb9c4-3474-4fd1-9bfe-f97120cad103, UID in object meta: " name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="adding finalizer" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2549" generation=1 uid="4f922100-4a80-4546-98e8-b792c509a0fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2546" generation=1 uid="02a8f1ca-1885-4358-b854-22a9a5e0f89f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZoneController "msg"="Set owner reference" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2554" generation=2 uid="987ab222-818d-46a8-8182-46c60571506a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:17 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2555" generation=1 uid="f66100ec-e34c-4d87-8826-6c87a1d70e48" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesARecordController "msg"="applying ownership" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2553" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2560" generation=1 uid="50c89ac1-0329-4cb2-81a7-af486fc7a1c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesAAAARecordController "msg"="Set owner reference" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2556" generation=1 uid="d59e57b1-1795-4314-a534-f71895ddf98c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2558" generation=2 uid="bdd4cd25-3707-4595-a304-abf1e96ce073" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"d64be6b8-13aa-4564-a04a-c1e6337a55a5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="adding finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesARecordController "msg"="Set owner reference" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="updated resource in etcd" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZoneController "msg"="adding finalizer" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesPTRRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaypublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "gatewaypublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaypublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4cc762cf-f6f7-45be-a691-9692a65646dd, UID in object meta: " name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Determined Delete action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2566" generation=1 uid="399597ad-81c6-4586-98a5-b06eaf38ccf4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2567" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesAAAARecordController "msg"="adding finalizer" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesTXTRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] DnsZonesARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:30Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2571" generation=1 uid="f3aed5cd-ac1f-444d-8d4f-140d8847d863" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2578" generation=1 uid="74965368-e7be-4920-be91-c9a34247d313" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesSRVRecordController "msg"="Done with reconcile" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:30Z] PrivateDnsZonesTXTRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2577" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2584" generation=1 uid="02a8f1ca-1885-4358-b854-22a9a5e0f89f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="Done with reconcile" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2574" generation=2 uid="019bd909-c07c-4376-9442-4f20c07e228e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Set owner reference" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet2 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet2": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 987ab222-818d-46a8-8182-46c60571506a, UID in object meta: " name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2576" generation=1 uid="becd7e1a-ae8b-4949-906f-ee430d4eadd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="adding finalizer" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2584" generation=1 uid="02a8f1ca-1885-4358-b854-22a9a5e0f89f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2578" generation=1 uid="74965368-e7be-4920-be91-c9a34247d313" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2568" generation=2 uid="b255f73e-14fa-49f3-bd70-a49b7dee9e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2580" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="updated resource in etcd" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2575" generation=1 uid="aec5d5b9-e421-4ff9-9636-6acd3a8016ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"80aca42a-8755-456f-aa9d-c36330adfbfd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2582" generation=1 uid="4f922100-4a80-4546-98e8-b792c509a0fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2586" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2590" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/aso-sample-pdz.com resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "aso-sample-pdz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/aso-sample-pdz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bdd4cd25-3707-4595-a304-abf1e96ce073, UID in object meta: " name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesSRVRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesSRVRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesSRVRecordController "msg"="Got ARM status" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" status="{\"etag\":\"bc84f05d-1166-4078-a801-61d19b5be958\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv\",\"name\":\"aso-sample-recordset-srv\",\"properties\":{\"fqdn\":\"aso-sample-recordset-srv.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"srvRecords\":[{\"port\":80,\"priority\":0,\"target\":\"target.asosample.com\",\"weight\":50}],\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/SRV\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2581" generation=2 uid="6a2674da-7c27-4262-bba6-8add5cc294c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="Got ARM status" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" status="{\"etag\":\"5019c75f-b543-475a-a45b-c3a5c55394a0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr\",\"name\":\"aso-sample-recordset-ptr\",\"properties\":{\"fqdn\":\"aso-sample-recordset-ptr.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ptrRecords\":[{\"ptrdname\":\"asosample.com\"}],\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/PTR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2590" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="About to send resource to Azure" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2595" generation=1 uid="d59e57b1-1795-4314-a534-f71895ddf98c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Done with reconcile" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2580" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="Set owner reference" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2594" generation=2 uid="10e0c881-b6a4-480a-b8fc-8ac866908520" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2595" generation=1 uid="d59e57b1-1795-4314-a534-f71895ddf98c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="adding finalizer" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleloadbalancer resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancer": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleloadbalancer, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b255f73e-14fa-49f3-bd70-a49b7dee9e49, UID in object meta: " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Got ARM status" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" status="{\"etag\":\"9e91f37d-50a9-470e-8549-31d5eef88116\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt\",\"name\":\"aso-sample-recordset-txt\",\"properties\":{\"fqdn\":\"aso-sample-recordset-txt.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600,\"txtRecords\":[{\"value\":[\"ASO sample value\"]}]},\"type\":\"Microsoft.Network/privateDnsZones/TXT\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2603" generation=1 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2600" generation=2 uid="6d6b1077-3287-415b-be6c-21de0a172f50" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2593" generation=1 uid="f66100ec-e34c-4d87-8826-6c87a1d70e48" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="About to send resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2596" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully sent resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "samplensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6a2674da-7c27-4262-bba6-8add5cc294c9, UID in object meta: " name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkGatewayController "msg"="Determined Delete action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkGatewayController "msg"="Starting delete of resource" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkGatewayController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkGatewayController "msg"="Delete succeeded, removing finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2613" generation=1 uid="02a8f1ca-1885-4358-b854-22a9a5e0f89f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2615" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesPTRRecordController "msg"="Done with reconcile" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="updated resource in etcd" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2608" generation=1 uid="aec5d5b9-e421-4ff9-9636-6acd3a8016ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"80aca42a-8755-456f-aa9d-c36330adfbfd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com?api-version=2018-05-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Done with reconcile" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2609" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2611" generation=1 uid="74965368-e7be-4920-be91-c9a34247d313" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesSRVRecordController "msg"="Done with reconcile" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2614" generation=2 uid="019bd909-c07c-4376-9442-4f20c07e228e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHRlNFWEUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="adding finalizer" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2607" generation=1 uid="399597ad-81c6-4586-98a5-b06eaf38ccf4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 10e0c881-b6a4-480a-b8fc-8ac866908520, UID in object meta: " name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2615" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2590" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2614" generation=2 uid="019bd909-c07c-4376-9442-4f20c07e228e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:30 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHRlNFWEUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2616" generation=2 uid="fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2580" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Reconcile invoked" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2608" generation=1 uid="aec5d5b9-e421-4ff9-9636-6acd3a8016ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"80aca42a-8755-456f-aa9d-c36330adfbfd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com?api-version=2018-05-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2609" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Got ARM status" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" status="{\"etag\":\"05536831-7f54-46b6-8537-d28d7ba112b1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com\",\"location\":\"global\",\"name\":\"aso-sample-dz.com\",\"properties\":{\"maxNumberOfRecordSets\":10000,\"nameServers\":[\"ns1-03.azure-dns.com.\",\"ns2-03.azure-dns.net.\",\"ns3-03.azure-dns.org.\",\"ns4-03.azure-dns.info.\"],\"numberOfRecordSets\":2,\"zoneType\":\"Public\"},\"type\":\"Microsoft.Network/dnszones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2625" generation=1 uid="d59e57b1-1795-4314-a534-f71895ddf98c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesTXTRecordController "msg"="Done with reconcile" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2580" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2628" generation=1 uid="f3aed5cd-ac1f-444d-8d4f-140d8847d863" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2590" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] VirtualNetworkGatewayController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnetgateway resource status: Operation cannot be fulfilled on virtualnetworkgateways.network.azure.com "samplevnetgateway": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkgateways/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnetgateway, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6d6b1077-3287-415b-be6c-21de0a172f50, UID in object meta: " name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2629" generation=1 uid="4f922100-4a80-4546-98e8-b792c509a0fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2622" generation=2 uid="5a13b33b-61ed-40fe-823f-438634831a2a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Done with reconcile" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2630" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2621" generation=1 uid="becd7e1a-ae8b-4949-906f-ee430d4eadd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2628" generation=1 uid="f3aed5cd-ac1f-444d-8d4f-140d8847d863" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2627" generation=1 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2630" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2632" generation=2 uid="459273a7-a88e-490d-ba2d-5f3c38ca4fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"f535b52c-766b-4e59-8657-ceb329b11feb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:23 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2629" generation=1 uid="4f922100-4a80-4546-98e8-b792c509a0fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Resource successfully created/updated" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Got ARM status" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" status="{\"etag\":\"\\\"7f012fcd-0000-0100-0000-64a820ff0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink\",\"location\":\"global\",\"name\":\"aso-sample-vnetlink\",\"properties\":{\"provisioningState\":\"Succeeded\",\"registrationEnabled\":false,\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\"},\"virtualNetworkLinkState\":\"Completed\"},\"type\":\"Microsoft.Network/privateDnsZones/virtualNetworkLinks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2637" generation=1 uid="f66100ec-e34c-4d87-8826-6c87a1d70e48" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Done with reconcile" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2615" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] RouteTableController "msg"="Determined Delete action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] RouteTableController "msg"="Starting delete of resource" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] RouteTableController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] RouteTableController "msg"="Delete succeeded, removing finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesAAAARecordController "msg"="Got ARM status" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" status="{\"etag\":\"68ea953e-d665-48de-bf91-5f8313c4b1e0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa\",\"name\":\"aso-sample-recordset-aaaa\",\"properties\":{\"aaaaRecords\":[{\"ipv6Address\":\"2001:0db8:85a3:0000:0000:8a2e:0370:7334\"}],\"fqdn\":\"aso-sample-recordset-aaaa.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/AAAA\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotest-rg-gfsexe aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotestruzoxz]... +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotest-rg-gfsexe resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gfsexe": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotest-rg-gfsexe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 019bd909-c07c-4376-9442-4f20c07e228e, UID in object meta: " name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2637" generation=1 uid="f66100ec-e34c-4d87-8826-6c87a1d70e48" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab\",\"location\":\"westus2\",\"name\":\"asotest-rg-buwtab\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2609" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2615" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="updated resource in etcd" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2643" generation=1 uid="aec5d5b9-e421-4ff9-9636-6acd3a8016ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"80aca42a-8755-456f-aa9d-c36330adfbfd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZoneController "msg"="Done with reconcile" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesARecordController "msg"="Got ARM status" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" status="{\"etag\":\"cd40947a-49a6-4bca-8224-ae69aa222b86\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a\",\"name\":\"aso-sample-recordset-a\",\"properties\":{\"aRecords\":[{\"ipv4Address\":\"10.0.1.9\"}],\"fqdn\":\"aso-sample-recordset-a.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/A\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2609" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesMXRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2642" generation=1 uid="399597ad-81c6-4586-98a5-b06eaf38ccf4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Done with reconcile" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2640" generation=1 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2562" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5a13b33b-61ed-40fe-823f-438634831a2a, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2590" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCAARecordController "msg"="Set owner reference" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2551" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2642" generation=1 uid="399597ad-81c6-4586-98a5-b06eaf38ccf4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2590" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:31Z] RouteTableController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable resource status: Operation cannot be fulfilled on routetables.network.azure.com "sampleroutetable": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetables/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 459273a7-a88e-490d-ba2d-5f3c38ca4fef, UID in object meta: " name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2580" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2527" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2630" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesNSRecordController "msg"="Set owner reference" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] PrivateDnsZonesCNAMERecordController "msg"="Got ARM status" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" status="{\"etag\":\"0bfb9e7a-ec66-421e-a952-0c194a32bc6b\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname\",\"name\":\"aso-sample-recordset-cname\",\"properties\":{\"cnameRecord\":{\"cname\":\"asosample.com\"},\"fqdn\":\"aso-sample-recordset-cname.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/CNAME\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesSRVRecordController "msg"="Set owner reference" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2630" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2580" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2650" generation=2 uid="50c89ac1-0329-4cb2-81a7-af486fc7a1c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:31Z] DnsZonesTXTRecordController "msg"="Set owner reference" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2653" generation=1 uid="4f922100-4a80-4546-98e8-b792c509a0fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesAAAARecordController "msg"="Done with reconcile" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2651" generation=1 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2652" generation=1 uid="f3aed5cd-ac1f-444d-8d4f-140d8847d863" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Starting delete of resource" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="Set owner reference" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="adding finalizer" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2658" generation=1 uid="becd7e1a-ae8b-4949-906f-ee430d4eadd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="Done with reconcile" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="Set owner reference" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="Set owner reference" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2658" generation=1 uid="becd7e1a-ae8b-4949-906f-ee430d4eadd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="Set owner reference" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2533" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="adding finalizer" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="adding finalizer" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2660" generation=1 uid="f66100ec-e34c-4d87-8826-6c87a1d70e48" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesARecordController "msg"="Done with reconcile" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2656" generation=1 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Set owner reference" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="adding finalizer" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="adding finalizer" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2662" generation=1 uid="399597ad-81c6-4586-98a5-b06eaf38ccf4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesCNAMERecordController "msg"="Done with reconcile" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="adding finalizer" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="Got ARM status" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" status="{\"etag\":\"1acb2683-bbc0-4475-85c4-6eb2e10dee1d\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx\",\"name\":\"aso-sample-recordset-mx\",\"properties\":{\"fqdn\":\"aso-sample-recordset-mx.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"mxRecords\":[{\"exchange\":\"mail.aso-sample.com\",\"preference\":0}],\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/MX\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz\",\"location\":\"westus2\",\"name\":\"asotest-rg-bstmoz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2665" generation=1 uid="4cdfa022-f841-477f-b8f8-18cee992e13a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="adding finalizer" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2671" generation=2 uid="50c89ac1-0329-4cb2-81a7-af486fc7a1c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUUlVaT1haLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="adding finalizer" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="adding finalizer" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2663" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2671" generation=2 uid="50c89ac1-0329-4cb2-81a7-af486fc7a1c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUUlVaT1haLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2666" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2667" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2668" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2676" generation=2 uid="1efd4c55-6b91-441a-a845-c193f18c90c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"987ab222-818d-46a8-8182-46c60571506a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2680" generation=1 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2681" generation=1 uid="becd7e1a-ae8b-4949-906f-ee430d4eadd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] PrivateDnsZonesMXRecordController "msg"="Done with reconcile" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2673" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2669" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2675" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2682" generation=2 uid="acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"6a2674da-7c27-4262-bba6-8add5cc294c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2677" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="About to send resource to Azure" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="About to send resource to Azure" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="About to send resource to Azure" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="About to send resource to Azure" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotestruzoxz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotestruzoxz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotestruzoxz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 50c89ac1-0329-4cb2-81a7-af486fc7a1c1, UID in object meta: " name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="Resource successfully created/updated" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="Got ARM status" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" status="{\"etag\":\"216e247c-0549-426a-8cf5-c09aa19bda7f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/CAA/aso-sample-record-caa\",\"name\":\"aso-sample-record-caa\",\"properties\":{\"caaRecords\":[{\"flags\":0,\"tag\":\"aso\",\"value\":\"test\"}],\"fqdn\":\"aso-sample-record-caa.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/CAA\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="Resource successfully created/updated" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="Got ARM status" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" status="{\"etag\":\"7a9ffffd-ee05-45d4-9eab-0186177933e7\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/A/aso-sample-record-a\",\"name\":\"aso-sample-record-a\",\"properties\":{\"ARecords\":[{\"ipv4Address\":\"10.0.1.9\"}],\"fqdn\":\"aso-sample-record-a.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/A\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="Got ARM status" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" status="{\"etag\":\"7a18b747-0e60-46c8-a547-cbda3e4a2140\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/SRV/aso-sample-record-srv\",\"name\":\"aso-sample-record-srv\",\"properties\":{\"fqdn\":\"aso-sample-record-srv.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"SRVRecords\":[{\"port\":80,\"priority\":0,\"target\":\"target.asosample.com\",\"weight\":50}],\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/SRV\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="About to send resource to Azure" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2678" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="Got ARM status" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" status="{\"etag\":\"1b0d3131-e352-49cd-8b1f-f26b2ef9b757\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/TXT/aso-sample-record-txt\",\"name\":\"aso-sample-record-txt\",\"properties\":{\"fqdn\":\"aso-sample-record-txt.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"TXTRecords\":[{\"value\":[\"ASO sample value\"]}],\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/TXT\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="Got ARM status" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" status="{\"etag\":\"810751b1-fbba-4da5-8871-3ff218c5c9d9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/NS/aso-sample-record-ns\",\"name\":\"aso-sample-record-ns\",\"properties\":{\"fqdn\":\"aso-sample-record-ns.aso-sample-dz.com.\",\"NSRecords\":[{\"nsdname\":\"ns.asotest.com\"}],\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/NS\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="About to send resource to Azure" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="Resource successfully created/updated" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="Got ARM status" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" status="{\"etag\":\"bdb92574-2a33-44df-af67-a6778926c1c3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/CNAME/aso-sample-record-cname\",\"name\":\"aso-sample-record-cname\",\"properties\":{\"CNAMERecord\":{\"cname\":\"asosample.com\"},\"fqdn\":\"aso-sample-record-cname.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/CNAME\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="About to send resource to Azure" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="Got ARM status" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" status="{\"etag\":\"c5690324-3ce6-41d5-9cfb-ea3d23209443\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/PTR/aso-sample-record-ptr\",\"name\":\"aso-sample-record-ptr\",\"properties\":{\"fqdn\":\"aso-sample-record-ptr.aso-sample-dz.com.\",\"PTRRecords\":[{\"ptrdname\":\"asosample.com\"}],\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/PTR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaysubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "gatewaysubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaysubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1efd4c55-6b91-441a-a845-c193f18c90c9, UID in object meta: " name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2690" generation=2 uid="420b59a2-31bd-4176-b886-c3fbea37d8bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="About to send resource to Azure" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Got ARM status" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" status="{\"etag\":\"f7e7c4c9-9a98-415e-8c19-12e2388fbd2a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/MX/aso-sample-record-mx\",\"name\":\"aso-sample-record-mx\",\"properties\":{\"fqdn\":\"aso-sample-record-mx.aso-sample-dz.com.\",\"MXRecords\":[{\"exchange\":\"mail.aso-sample.com\",\"preference\":0}],\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/MX\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplerule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "samplerule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplerule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: acf3ae74-f6bc-45b2-aa2f-3e5afcb672b5, UID in object meta: " name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="About to send resource to Azure" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2561" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2689" generation=1 uid="4cdfa022-f841-477f-b8f8-18cee992e13a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2692" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined Delete action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Starting delete of resource" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Delete succeeded, removing finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="Resource successfully created/updated" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="Got ARM status" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" status="{\"etag\":\"40d46323-520d-450a-82dd-559ef4bddc78\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa\",\"name\":\"aso-sample-record-aaaa\",\"properties\":{\"AAAARecords\":[{\"ipv6Address\":\"2001:0db8:85a3:0000:0000:8a2e:0370:7334\"}],\"fqdn\":\"aso-sample-record-aaaa.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/AAAA\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2695" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2697" generation=1 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesSRVRecordController "msg"="Done with reconcile" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2702" generation=1 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesARecordController "msg"="Done with reconcile" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Resource successfully created/updated" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2703" generation=1 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCAARecordController "msg"="Done with reconcile" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Got ARM status" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg\",\"identity\":{\"principalId\":\"2f793422-989d-40d8-aa8c-975ab718237e\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"West US 2\",\"name\":\"asotestqctlbg\",\"properties\":{\"authOptions\":{\"aadOrApiKey\":{\"aadAuthFailureMode\":\"http403\"}},\"disableLocalAuth\":false,\"encryptionWithCmk\":{\"encryptionComplianceStatus\":\"Compliant\",\"enforcement\":\"Disabled\"},\"hostingMode\":\"default\",\"networkRuleSet\":{},\"partitionCount\":1,\"provisioningState\":\"succeeded\",\"publicNetworkAccess\":\"Disabled\",\"replicaCount\":1,\"status\":\"running\",\"statusDetails\":\"\"},\"sku\":{\"name\":\"standard\"},\"type\":\"Microsoft.Search/searchServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Getting Kubernetes resources for export" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2700" generation=1 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesNSRecordController "msg"="Done with reconcile" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2704" generation=1 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesTXTRecordController "msg"="Done with reconcile" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2699" generation=1 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesPTRRecordController "msg"="Done with reconcile" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2701" generation=1 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesCNAMERecordController "msg"="Done with reconcile" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2698" generation=2 uid="cead05b0-2c0f-4800-83a1-c44ecea00ef7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"fcb3f6f4-7c21-4691-b9b8-fccb0c2bbc0b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2707" generation=1 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesMXRecordController "msg"="Done with reconcile" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:32Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepeering resource status: Operation cannot be fulfilled on virtualnetworksvirtualnetworkpeerings.network.azure.com "samplepeering": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworksvirtualnetworkpeerings/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepeering, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 420b59a2-31bd-4176-b886-c3fbea37d8bc, UID in object meta: " name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] SearchServiceController "msg"="Successfully created resource" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" name="searchservicekeyssecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2711" generation=2 uid="a14e0379-7eaa-410f-b695-8c32ccbe7cfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"459273a7-a88e-490d-ba2d-5f3c38ca4fef", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:20 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:25 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2706" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] RouteTablesRouteController "msg"="Determined Delete action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] RouteTablesRouteController "msg"="Starting delete of resource" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] RouteTablesRouteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] RouteTablesRouteController "msg"="Delete succeeded, removing finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2715" generation=1 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:32Z] DnsZonesAAAARecordController "msg"="Done with reconcile" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: cead05b0-2c0f-4800-83a1-c44ecea00ef7, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2716" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="applying ownership" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2721" generation=1 uid="4cdfa022-f841-477f-b8f8-18cee992e13a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2721" generation=1 uid="4cdfa022-f841-477f-b8f8-18cee992e13a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2723" generation=1 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] SearchServiceController "msg"="updated resource in etcd" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2728" generation=1 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2726" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] RouteTablesRouteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroute resource status: Operation cannot be fulfilled on routetablesroutes.network.azure.com "sampleroute": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetablesroutes/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroute, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a14e0379-7eaa-410f-b695-8c32ccbe7cfb, UID in object meta: " name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="Set owner reference" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic does not exist (networkinterfaces.network.azure.com "workspacescomputenic" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic does not exist (networkinterfaces.network.azure.com "workspacescomputenic" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"47bc033a-83f5-4664-ae60-b5ecbc3cf487\",\"principalId\":\"5f823609-6edd-4946-a40f-55eebd4f49f4\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="adding finalizer" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2730" generation=1 uid="08a63985-2fb6-4e71-b6a7-48a6d4157e34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="applying ownership" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="Set owner reference" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2734" generation=1 uid="bafcf6e7-39e4-49d2-b527-a0281322b221" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="applying ownership" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2736" generation=1 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="adding finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw\",\"location\":\"westus2\",\"name\":\"asotest-rg-tspxpw\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2745" generation=1 uid="4cdfa022-f841-477f-b8f8-18cee992e13a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2744" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic does not exist (networkinterfaces.network.azure.com \\\"workspacescomputenic\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="Set owner reference" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VaultController "msg"="Reconcile invoked" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2742" generation=1 uid="c0bf5ee4-df60-4ac6-a25f-98921a9c2e13" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VaultController "msg"="applying ownership" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2743" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2748" generation=1 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="updated resource in etcd" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2737" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="adding finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:33Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VaultController "msg"="Set owner reference" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2744" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic does not exist (networkinterfaces.network.azure.com \\\"workspacescomputenic\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="About to send resource to Azure" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2750" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2746" generation=1 uid="08a63985-2fb6-4e71-b6a7-48a6d4157e34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2753" generation=1 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VaultController "msg"="adding finalizer" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2755" generation=1 uid="150b6b4f-16de-4524-9931-f243b0329af9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkSecurityGroupController "msg"="applying ownership" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2752" generation=1 uid="bafcf6e7-39e4-49d2-b527-a0281322b221" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="About to send resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:33Z] PublicIPAddressController "msg"="Got ARM status" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" status="{\"etag\":\"W/\\\"cd823fe2-610e-48c4-b352-214619390b9e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\",\"location\":\"westus3\",\"name\":\"workspacescomputepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.171.45.67\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"e1049feb-9994-48a1-92bd-6b70b3c465c4\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2756" generation=1 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2754" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Found subnets to include on VNET" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" count=1 names=[]string{"workspacescomputesubnet"} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="About to send resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Got ARM status" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" status="{\"etag\":\"W/\\\"4ead219f-76f2-4efa-8aa7-e612ee674d3b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet\",\"location\":\"westus3\",\"name\":\"workspacescomputevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"31e946d7-25a4-4853-9562-dbaae3b85428\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin\",\"location\":\"westus2\",\"name\":\"asotest-rg-ddhnin\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2761" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="applying ownership" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Set owner reference" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="updated resource in etcd" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="updated resource in etcd" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2763" generation=1 uid="c0bf5ee4-df60-4ac6-a25f-98921a9c2e13" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Determined CreateOrUpdate action" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="adding finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2768" generation=1 uid="08a63985-2fb6-4e71-b6a7-48a6d4157e34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Done with reconcile" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Set owner reference" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="About to send resource to Azure" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Successfully sent resource to Azure" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Resource successfully created/updated" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Got ARM status" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault\",\"location\":\"westus3\",\"name\":\"aso-ml-vault\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"c8d42d17-0044-4119-99f9-9207b705c9df\",\"objectId\":\"2735f286-1d85-49bc-bfec-c5994ede7e7f\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://aso-ml-vault.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2771" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2775" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2776" generation=1 uid="bafcf6e7-39e4-49d2-b527-a0281322b221" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2777" generation=1 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2718" generation=2 uid="3cf5ab5a-cabf-422e-b7c2-765869325b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2780" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2775" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2712" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2781" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2780" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="adding finalizer" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="updated resource in etcd" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2785" generation=1 uid="c0bf5ee4-df60-4ac6-a25f-98921a9c2e13" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Done with reconcile" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2774" generation=1 uid="150b6b4f-16de-4524-9931-f243b0329af9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg does not exist (networksecuritygroups.network.azure.com "workspacescomputensg" not found)" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg does not exist (networksecuritygroups.network.azure.com "workspacescomputensg" not found)" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2784" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2786" generation=1 uid="e2fb45d6-f6de-4446-9be6-003c5ab7407f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2775" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2788" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2784" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/asotest-rg-srelix resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-srelix": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/asotest-rg-srelix, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3cf5ab5a-cabf-422e-b7c2-765869325b34, UID in object meta: " name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2441" generation=2 uid="92d361fc-bdb8-491f-a035-33f3e97f90d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:29 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/asotest-rg-srelix aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-pdz.com aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vn aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-ptr aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-srv aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-txt aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vnetlink aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-aaaa aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-a aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-cname aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-mx]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2775" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2797" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg does not exist (networksecuritygroups.network.azure.com \\\"workspacescomputensg\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2797" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg does not exist (networksecuritygroups.network.azure.com \\\"workspacescomputensg\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2775" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2795" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="applying ownership" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="updated resource in etcd" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2794" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asotest-rg-faseaf resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-faseaf": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asotest-rg-faseaf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 92d361fc-bdb8-491f-a035-33f3e97f90d8, UID in object meta: " name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2802" generation=1 uid="150b6b4f-16de-4524-9931-f243b0329af9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/43815d01-c64f-4443-9d16-d82ecf304f02?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2804" generation=2 uid="ea337d5d-5a5d-417e-949c-129cffabe61e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Set owner reference" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2806" generation=1 uid="5d350ad4-c0b5-48ad-9b15-4babefc161c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="applying ownership" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Determined Delete action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2805" generation=1 uid="e2fb45d6-f6de-4446-9be6-003c5ab7407f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2766" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2775" generation=2 uid="80aca42a-8755-456f-aa9d-c36330adfbfd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2784" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2802" generation=1 uid="150b6b4f-16de-4524-9931-f243b0329af9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/43815d01-c64f-4443-9d16-d82ecf304f02?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asotest-rg-faseaf aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn2 aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-inbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asosamplestorage aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/bastionpublicip aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet1 aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep-dnsforwardingruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/privatelink.blob.core.windows.net aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vnetlink aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-publicip aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-bastion aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep-dnsforwardingruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-loadbalancer aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1 aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ipprefix aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-rule aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-inbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-netgw aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-privateendpoint aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-pls aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-bastion aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-dnszonegroup]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource successfully created/updated" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Got ARM status" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage\",\"kind\":\"BlobStorage\",\"location\":\"westus3\",\"name\":\"asomlworkspacestorage\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asomlworkspacestorage.blob.core.windows.net/\",\"dfs\":\"https://asomlworkspacestorage.dfs.core.windows.net/\",\"table\":\"https://asomlworkspacestorage.table.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="adding finalizer" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Set owner reference" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2809" generation=2 uid="747dffee-1766-40f1-8a66-e520255fdbe1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"3cf5ab5a-cabf-422e-b7c2-765869325b34", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:29 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:30 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Got ARM status" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" status="{\"etag\":\"W/\\\"2da67d4c-cf3f-4442-8826-35f761752a1d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\",\"location\":\"westus3\",\"name\":\"workspacescomputensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllOutBound\"}],\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"51a9ec44-32b7-48de-86e8-16f21c04e234\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2811" generation=1 uid="17665cc4-dfd5-4edf-8baa-d864db952c5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2784" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2780" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="applying ownership" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="About to send resource to Azure" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Successfully sent resource to Azure" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="adding finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/asotest-rg-emkabl aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-cname aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-mx aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-srv aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-txt aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-aaaa aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-a aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-caa aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ns aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ptr]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2780" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Successfully created resource" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Set owner reference" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2808" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"bafcf6e7-39e4-49d2-b527-a0281322b221", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2820" generation=1 uid="150b6b4f-16de-4524-9931-f243b0329af9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-pdz.com resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "aso-sample-pdz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-pdz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ea337d5d-5a5d-417e-949c-129cffabe61e, UID in object meta: " name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2819" generation=1 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="applying ownership" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2821" generation=2 uid="e2b11fc6-7780-47bd-b097-4ee2081f1117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vn resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 747dffee-1766-40f1-8a66-e520255fdbe1, UID in object meta: " name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2815" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/asotest-rg-emkabl resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-emkabl": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/asotest-rg-emkabl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 80aca42a-8755-456f-aa9d-c36330adfbfd, UID in object meta: " name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2822" generation=1 uid="5d350ad4-c0b5-48ad-9b15-4babefc161c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2826" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="adding finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2827" generation=2 uid="efa0d529-83c3-48f4-b872-6df1c3a984fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2826" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2738" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="About to send resource to Azure" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Set owner reference" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="updated resource in etcd" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2829" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2764" generation=2 uid="fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined Delete action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Starting delete of resource" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" status="{\"etag\":\"W/\\\"2be38f61-4dde-455b-abf9-ca06b399de4c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\",\"name\":\"workspacescomputesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2833" generation=1 uid="e2fb45d6-f6de-4446-9be6-003c5ab7407f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2831" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="updated resource in etcd" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2838" generation=1 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] DnsZoneController "msg"="Reconcile invoked" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2840" generation=2 uid="aec5d5b9-e421-4ff9-9636-6acd3a8016ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"80aca42a-8755-456f-aa9d-c36330adfbfd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="adding finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2833" generation=1 uid="e2fb45d6-f6de-4446-9be6-003c5ab7407f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2829" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Reconcile invoked" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2836" generation=2 uid="ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:18 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Resource not created yet, will check again" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] DnsZoneController "msg"="Determined Delete action" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] DnsZoneController "msg"="Starting delete of resource" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn2 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn2": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e2b11fc6-7780-47bd-b097-4ee2081f1117, UID in object meta: " name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] DnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] DnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Determined Delete action" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Starting delete of resource" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2846" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="applying ownership" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkInterfaceController "msg"="adding finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2835" generation=1 uid="17665cc4-dfd5-4edf-8baa-d864db952c5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asosamplestorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asosamplestorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asosamplestorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: efa0d529-83c3-48f4-b872-6df1c3a984fe, UID in object meta: " name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2842" generation=2 uid="02a8f1ca-1885-4358-b854-22a9a5e0f89f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2847" generation=2 uid="f1182d8f-b87c-4ef2-8025-9d1426bb59d4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"f1c6ca99-20c0-43f8-bc3d-ef80e19f24aa\",\"principalId\":\"9eb30ccf-608b-4e7d-9223-6b2f4a5035c9\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2829" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2852" generation=1 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"bafcf6e7-39e4-49d2-b527-a0281322b221", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2853" generation=2 uid="74965368-e7be-4920-be91-c9a34247d313" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotest-rg-zklaaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-zklaaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotest-rg-zklaaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3, UID in object meta: " name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZonesPTRRecordController "msg"="Determined Delete action" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZonesPTRRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZonesPTRRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZonesPTRRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2856" generation=1 uid="5d350ad4-c0b5-48ad-9b15-4babefc161c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00a0d252-ff69-41ca-8026-eb4a6c3dc19c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Resource not created yet, will check again" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VaultController "msg"="Set owner reference" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="2858" generation=2 uid="7405f205-b445-48ce-8fa6-2491ffb22431" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2851" generation=1 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] DnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com resource status: Operation cannot be fulfilled on dnszones.network.azure.com "aso-sample-dz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszones/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: aec5d5b9-e421-4ff9-9636-6acd3a8016ad, UID in object meta: " name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:34Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2784" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:34Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesSRVRecordController "msg"="Determined Delete action" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesSRVRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesSRVRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesSRVRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2784" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="About to send resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2829" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2856" generation=1 uid="5d350ad4-c0b5-48ad-9b15-4babefc161c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00a0d252-ff69-41ca-8026-eb4a6c3dc19c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotest-rg-zklaaa aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotestqctlbg]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZoneController "msg"="Determined Delete action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="About to send resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/bastionpublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "bastionpublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/bastionpublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ce57607e-372c-4dbe-b4f6-02ae9ad0c7cf, UID in object meta: " name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="adding finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f1182d8f-b87c-4ef2-8025-9d1426bb59d4, UID in object meta: " name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupController "msg"="Got ARM status" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" status="{\"etag\":\"W/\\\"102a3ac7-7ad6-406a-bdb4-6ff4fcdeba26\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\",\"location\":\"westus3\",\"name\":\"workspacescomputensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllOutBound\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26be8c34-36a8-4d2c-bf94-8794cf480ca8\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2860" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Reconcile invoked" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2868" generation=2 uid="30b84b74-0e35-4652-8d3c-beb4453aa6bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Resource not created yet, will check again" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2861" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"150b6b4f-16de-4524-9931-f243b0329af9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2867" generation=2 uid="f3aed5cd-ac1f-444d-8d4f-140d8847d863" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2878" generation=2 uid="2a60a436-be34-4436-bde3-854f556d4e62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:19 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2876" generation=2 uid="4f922100-4a80-4546-98e8-b792c509a0fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesPTRRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-ptr resource status: Operation cannot be fulfilled on privatednszonesptrrecords.network.azure.com "aso-sample-recordset-ptr": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesptrrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-ptr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 02a8f1ca-1885-4358-b854-22a9a5e0f89f, UID in object meta: " name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Determined Delete action" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Starting delete of resource" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/privatelink.blob.core.windows.net resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "privatelink.blob.core.windows.net": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/privatelink.blob.core.windows.net, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7405f205-b445-48ce-8fa6-2491ffb22431, UID in object meta: " name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesSRVRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-srv resource status: Operation cannot be fulfilled on privatednszonessrvrecords.network.azure.com "aso-sample-recordset-srv": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonessrvrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-srv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 74965368-e7be-4920-be91-c9a34247d313, UID in object meta: " name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2829" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2884" generation=1 uid="17665cc4-dfd5-4edf-8baa-d864db952c5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/fc5d3d58-d6e2-41e6-86d1-a065ff1acf52?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Done with reconcile" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2862" generation=2 uid="d59e57b1-1795-4314-a534-f71895ddf98c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2882" generation=2 uid="f66100ec-e34c-4d87-8826-6c87a1d70e48" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2885" generation=1 uid="e2fb45d6-f6de-4446-9be6-003c5ab7407f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined Delete action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Starting delete of resource" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Resource successfully created/updated" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2886" generation=1 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/98c9f124-b307-4d50-9f35-d8aee5d7929d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Got ARM status" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany\",\"location\":\"westcentralus\",\"name\":\"asotestpawany\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"47bc033a-83f5-4664-ae60-b5ecbc3cf487\",\"objectId\":\"5f823609-6edd-4946-a40f-55eebd4f49f4\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},{\"applicationId\":\"1c793267-c310-d4ae-7bd5-5af5bef875d3\",\"objectId\":\"1C793267-c310-d4ae-7BD5-5Af5BEF875D3\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://asotestpawany.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesAAAARecordController "msg"="Determined Delete action" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesAAAARecordController "msg"="Starting delete of resource" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesAAAARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesAAAARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2884" generation=1 uid="17665cc4-dfd5-4edf-8baa-d864db952c5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/fc5d3d58-d6e2-41e6-86d1-a065ff1acf52?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesARecordController "msg"="Determined Delete action" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesARecordController "msg"="Starting delete of resource" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Got ARM status" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" status="{\"etag\":\"W/\\\"6e0d379e-ffdb-4c93-a213-129a56a9d8c0\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\",\"location\":\"westus3\",\"name\":\"workspacescomputenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"03dosmneevjurflc1ovohocufa.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"6e0d379e-ffdb-4c93-a213-129a56a9d8c0\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"macAddress\":\"60-45-BD-C9-6F-4E\",\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\"},\"nicType\":\"Standard\",\"primary\":true,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f9e2e6-b610-4a49-a0d5-aa29a6b01c9f\",\"virtualMachine\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesTXTRecordController "msg"="Determined Delete action" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesTXTRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesTXTRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesTXTRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2893" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2881" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2890" generation=1 uid="5d350ad4-c0b5-48ad-9b15-4babefc161c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2880" generation=2 uid="2d8220cc-11f7-4063-8ea4-3c44c01d3fc4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2888" generation=2 uid="399597ad-81c6-4586-98a5-b06eaf38ccf4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Got ARM status" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" status="{\"etag\":\"W/\\\"949b609a-6370-48b2-a414-b4eb6ff63b23\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\",\"location\":\"westus3\",\"name\":\"workspacescomputepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.168.38.196\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"55024ed7-2c30-4024-94a0-4609b2a0ac8d\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-publicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "aso-sample-publicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-publicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 30b84b74-0e35-4652-8d3c-beb4453aa6bb, UID in object meta: " name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesCNAMERecordController "msg"="Determined Delete action" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesCNAMERecordController "msg"="Starting delete of resource" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesCNAMERecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesCNAMERecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2891" generation=2 uid="81c3901f-c51c-4bfe-a512-e37d1442532e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="adding finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="2889" generation=2 uid="49014270-c7ad-42cc-a44f-9f91bec415cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"fc0c8c2f-a417-48d1-bd9d-4b37a8a2f2f3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2893" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesMXRecordController "msg"="Determined Delete action" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesMXRecordController "msg"="Starting delete of resource" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesMXRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesMXRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesCNAMERecordController "msg"="Determined Delete action" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesCNAMERecordController "msg"="Starting delete of resource" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2894" generation=2 uid="3cb9384b-da09-4737-ab0b-30ecec4c06cd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn-dnsresolver": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2a60a436-be34-4436-bde3-854f556d4e62, UID in object meta: " name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2886" generation=1 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/98c9f124-b307-4d50-9f35-d8aee5d7929d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="About to send resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Successfully sent resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] SearchServiceController "msg"="Determined Delete action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] SearchServiceController "msg"="Starting delete of resource" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] SearchServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] SearchServiceController "msg"="Delete succeeded, removing finalizer" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsResolverController "msg"="Determined Delete action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsResolverController "msg"="Starting delete of resource" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsResolverController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsResolverController "msg"="Delete succeeded, removing finalizer" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesCNAMERecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesCNAMERecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="2900" generation=2 uid="becd7e1a-ae8b-4949-906f-ee430d4eadd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"ea337d5d-5a5d-417e-949c-129cffabe61e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2792" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2886" generation=1 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/98c9f124-b307-4d50-9f35-d8aee5d7929d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] DnsZonesCNAMERecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-cname resource status: Operation cannot be fulfilled on dnszonescnamerecords.network.azure.com "aso-sample-record-cname": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonescnamerecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-cname, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2d8220cc-11f7-4063-8ea4-3c44c01d3fc4, UID in object meta: " name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2912" generation=1 uid="17665cc4-dfd5-4edf-8baa-d864db952c5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2911" generation=1 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Done with reconcile" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="updated resource in etcd" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2910" generation=1 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPAddressController "msg"="Done with reconcile" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Got ARM status" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" status="{\"etag\":\"W/\\\"c0d65d1b-c44c-49a8-898d-81798a19286d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet\",\"location\":\"westus3\",\"name\":\"workspacescomputevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a937acb7-b374-4b82-b879-5a79964025fc\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2905" generation=2 uid="f6cef1e5-4a2f-43f3-8515-1237b9eea888" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2909" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="applying ownership" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-a resource status: Operation cannot be fulfilled on privatednszonesarecords.network.azure.com "aso-sample-recordset-a": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesarecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-a, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f66100ec-e34c-4d87-8826-6c87a1d70e48, UID in object meta: " name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesTXTRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-txt resource status: Operation cannot be fulfilled on privatednszonestxtrecords.network.azure.com "aso-sample-recordset-txt": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonestxtrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-txt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d59e57b1-1795-4314-a534-f71895ddf98c, UID in object meta: " name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesAAAARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-aaaa resource status: Operation cannot be fulfilled on privatednszonesaaaarecords.network.azure.com "aso-sample-recordset-aaaa": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesaaaarecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-aaaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4f922100-4a80-4546-98e8-b792c509a0fe, UID in object meta: " name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] DnsResolverController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset resource status: Operation cannot be fulfilled on dnsresolvers.network.azure.com "aso-sample-resolver-dnsforwardingruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolvers/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3cb9384b-da09-4737-ab0b-30ecec4c06cd, UID in object meta: " name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] DnsZonesMXRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-mx resource status: Operation cannot be fulfilled on dnszonesmxrecords.network.azure.com "aso-sample-record-mx": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesmxrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-mx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 81c3901f-c51c-4bfe-a512-e37d1442532e, UID in object meta: " name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2845" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesMXRecordController "msg"="Determined Delete action" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesMXRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesMXRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PrivateDnsZonesMXRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vnetlink resource status: Operation cannot be fulfilled on privatednszonesvirtualnetworklinks.network.azure.com "aso-sample-vnetlink": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesvirtualnetworklinks/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vnetlink, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f3aed5cd-ac1f-444d-8d4f-140d8847d863, UID in object meta: " name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2920" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"150b6b4f-16de-4524-9931-f243b0329af9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/c2d90fb3-3e96-4506-b1a4-ab7430d6912d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Resource successfully created/updated" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Got ARM status" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1\",\"kind\":\"BlobStorage\",\"location\":\"westus3\",\"name\":\"asoworkspacestorageacct1\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asoworkspacestorageacct1.blob.core.windows.net/\",\"dfs\":\"https://asoworkspacestorageacct1.dfs.core.windows.net/\",\"table\":\"https://asoworkspacestorageacct1.table.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesSRVRecordController "msg"="Determined Delete action" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesSRVRecordController "msg"="Starting delete of resource" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesSRVRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesSRVRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2920" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"150b6b4f-16de-4524-9931-f243b0329af9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/c2d90fb3-3e96-4506-b1a4-ab7430d6912d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2924" generation=2 uid="133c5276-f767-4745-95a4-f0d9be013884" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesCNAMERecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-cname resource status: Operation cannot be fulfilled on privatednszonescnamerecords.network.azure.com "aso-sample-recordset-cname": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonescnamerecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-cname, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 399597ad-81c6-4586-98a5-b06eaf38ccf4, UID in object meta: " name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2919" generation=2 uid="1e86d7cb-caa9-40b9-96b8-9e084f2b367c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:22 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesTXTRecordController "msg"="Determined Delete action" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesTXTRecordController "msg"="Starting delete of resource" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesTXTRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesTXTRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] LoadBalancerController "msg"="Determined Delete action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] LoadBalancerController "msg"="Starting delete of resource" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2927" generation=1 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2928" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" status="{\"etag\":\"W/\\\"fa67a3d7-453f-4df2-8bdb-84ffd9fedb2f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule\",\"name\":\"workspacescomputensgrule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to any source port\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"direction\":\"Inbound\",\"priority\":101,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"*\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Set owner reference" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2917" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] StorageAccountController "msg"="Successfully created resource" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2930" generation=2 uid="b26a9f1f-95e8-4a9f-bd78-a1af6af315ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2928" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] PrivateDnsZonesMXRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-mx resource status: Operation cannot be fulfilled on privatednszonesmxrecords.network.azure.com "aso-sample-recordset-mx": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesmxrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-mx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: becd7e1a-ae8b-4949-906f-ee430d4eadd4, UID in object meta: " name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] DnsZonesSRVRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-srv resource status: Operation cannot be fulfilled on dnszonessrvrecords.network.azure.com "aso-sample-record-srv": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonessrvrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-srv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f6cef1e5-4a2f-43f3-8515-1237b9eea888, UID in object meta: " name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] DnsZonesTXTRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-txt resource status: Operation cannot be fulfilled on dnszonestxtrecords.network.azure.com "aso-sample-record-txt": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonestxtrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-txt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 133c5276-f767-4745-95a4-f0d9be013884, UID in object meta: " name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2933" generation=2 uid="3a005930-a3fa-4689-a50a-dccd7ecd6fef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesAAAARecordController "msg"="Determined Delete action" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesAAAARecordController "msg"="Starting delete of resource" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesAAAARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] DnsZonesAAAARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2934" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2893" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="About to send resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] PublicIPPrefixController "msg"="Reconcile invoked" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2940" generation=2 uid="9f37009c-942a-4310-9879-da652ac1538d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:25 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:26 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="adding finalizer" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2893" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:35Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-loadbalancer resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "aso-sample-loadbalancer": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-loadbalancer, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1e86d7cb-caa9-40b9-96b8-9e084f2b367c, UID in object meta: " name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:35Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2928" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PublicIPPrefixController "msg"="Determined Delete action" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PublicIPPrefixController "msg"="Starting delete of resource" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PublicIPPrefixController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PublicIPPrefixController "msg"="Delete succeeded, removing finalizer" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsZonesAAAARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-aaaa resource status: Operation cannot be fulfilled on dnszonesaaaarecords.network.azure.com "aso-sample-record-aaaa": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesaaaarecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-aaaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3a005930-a3fa-4689-a50a-dccd7ecd6fef, UID in object meta: " name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2801" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2947" generation=2 uid="a7731655-63a4-40a1-b28a-0754d0642171" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2956" generation=1 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2950" generation=1 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"150b6b4f-16de-4524-9931-f243b0329af9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2942" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"5d350ad4-c0b5-48ad-9b15-4babefc161c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2948" generation=2 uid="f411a222-a348-4ea1-a59f-aae45696ba56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] PublicIPPrefixController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ipprefix resource status: Operation cannot be fulfilled on publicipprefixes.network.azure.com "aso-sample-ipprefix": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipprefixes/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ipprefix, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9f37009c-942a-4310-9879-da652ac1538d, UID in object meta: " name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="2952" generation=1 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="workspacescomputevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2928" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesARecordController "msg"="Determined Delete action" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesARecordController "msg"="Starting delete of resource" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsResolverController "msg"="Determined Delete action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsResolverController "msg"="Starting delete of resource" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsResolverController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsResolverController "msg"="Delete succeeded, removing finalizer" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NatGatewayController "msg"="Reconcile invoked" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2960" generation=2 uid="65bee298-085c-4f1b-b9f7-0ee35104ad3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b26a9f1f-95e8-4a9f-bd78-a1af6af315ec, UID in object meta: " name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2961" generation=2 uid="bded7630-042f-4a3b-8239-bafad5750fdb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NatGatewayController "msg"="Determined Delete action" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NatGatewayController "msg"="Starting delete of resource" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NatGatewayController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NatGatewayController "msg"="Delete succeeded, removing finalizer" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="updated resource in etcd" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2951" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesCAARecordController "msg"="Determined Delete action" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesCAARecordController "msg"="Starting delete of resource" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesCAARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesCAARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2964" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2928" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2963" generation=2 uid="f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:30 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2965" generation=2 uid="28e2550f-9f34-4aef-aa42-5ea4b9caced8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2970" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2967" generation=1 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource successfully created/updated" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Got ARM status" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault\",\"location\":\"westus3\",\"name\":\"mlworkspaces-vault\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"c8d42d17-0044-4119-99f9-9207b705c9df\",\"objectId\":\"2735f286-1d85-49bc-bfec-c5994ede7e7f\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://mlworkspaces-vault.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateEndpointController "msg"="Determined Delete action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesNSRecordController "msg"="Determined Delete action" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesNSRecordController "msg"="Starting delete of resource" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateEndpointController "msg"="Starting delete of resource" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesNSRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesNSRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2964" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsResolverController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver resource status: Operation cannot be fulfilled on dnsresolvers.network.azure.com "aso-sample-resolver": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolvers/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f411a222-a348-4ea1-a59f-aae45696ba56, UID in object meta: " name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2966" generation=1 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2970" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Resource successfully created/updated" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Got ARM status" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\",\"location\":\"westus3\",\"name\":\"workspacescomputevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/disks/workspacescomputevm_disk1_0868db3e5469496ab6b9f7583e2e0666\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"workspacescomputevm_disk1_0868db3e5469496ab6b9f7583e2e0666\",\"osType\":\"Linux\"}},\"vmId\":\"c16d4495-8374-4ff5-9a78-dccd35b0259b\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="2973" generation=2 uid="5d23d66f-f14f-4970-9633-1ed0e61ab79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"aec5d5b9-e421-4ff9-9636-6acd3a8016ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsZonesARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-a resource status: Operation cannot be fulfilled on dnszonesarecords.network.azure.com "aso-sample-record-a": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesarecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-a, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a7731655-63a4-40a1-b28a-0754d0642171, UID in object meta: " name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsZonesCAARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-caa resource status: Operation cannot be fulfilled on dnszonescaarecords.network.azure.com "aso-sample-record-caa": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonescaarecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-caa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bded7630-042f-4a3b-8239-bafad5750fdb, UID in object meta: " name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="About to send resource to Azure" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2976" generation=2 uid="8a7e8141-98d1-4439-9e9b-3069c7886e17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesPTRRecordController "msg"="Determined Delete action" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesPTRRecordController "msg"="Starting delete of resource" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesPTRRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsZonesPTRRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa\",\"location\":\"westus2\",\"name\":\"asotest-rg-xezdqa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Successfully sent resource to Azure" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] NatGatewayController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-netgw resource status: Operation cannot be fulfilled on natgateways.network.azure.com "aso-sample-netgw": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/natgateways/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-netgw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 65bee298-085c-4f1b-b9f7-0ee35104ad3a, UID in object meta: " name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2893" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="2984" generation=1 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2893" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2978" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateLinkServiceController "msg"="Determined Delete action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateLinkServiceController "msg"="Starting delete of resource" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsZonesNSRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ns resource status: Operation cannot be fulfilled on dnszonesnsrecords.network.azure.com "aso-sample-record-ns": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesnsrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ns, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f9fcea53-dcfa-4e8b-9374-701d9ce6dbe4, UID in object meta: " name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateLinkServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] PrivateLinkServiceController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2970" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] PrivateEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-privateendpoint resource status: Operation cannot be fulfilled on privateendpoints.network.azure.com "aso-sample-privateendpoint": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privateendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-privateendpoint, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 28e2550f-9f34-4aef-aa42-5ea4b9caced8, UID in object meta: " name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2987" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2980" generation=1 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2988" generation=2 uid="fb349338-90d8-4bce-9757-ce66a63ee408" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2992" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"5d350ad4-c0b5-48ad-9b15-4babefc161c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/454bfb49-cd8c-4be2-9438-fe5662eee1a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2992" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"5d350ad4-c0b5-48ad-9b15-4babefc161c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/454bfb49-cd8c-4be2-9438-fe5662eee1a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2970" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsZonesPTRRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ptr resource status: Operation cannot be fulfilled on dnszonesptrrecords.network.azure.com "aso-sample-record-ptr": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesptrrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ptr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5d23d66f-f14f-4970-9633-1ed0e61ab79d, UID in object meta: " name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] BastionHostController "msg"="Determined Delete action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] BastionHostController "msg"="Starting delete of resource" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] BastionHostController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] BastionHostController "msg"="Delete succeeded, removing finalizer" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" status="{\"etag\":\"W/\\\"d256d840-dc2e-4c3e-971c-d7d5f0543479\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule\",\"name\":\"workspacescomputensgrule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to any source port\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"direction\":\"Inbound\",\"priority\":101,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"*\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw\",\"location\":\"westus2\",\"name\":\"asotest-rg-ycutlw\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] PrivateLinkServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-pls resource status: Operation cannot be fulfilled on privatelinkservices.network.azure.com "aso-sample-pls": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatelinkservices/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-pls, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8a7e8141-98d1-4439-9e9b-3069c7886e17, UID in object meta: " name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2970" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2999" generation=1 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="2996" generation=2 uid="b9ca3939-a3df-4a81-80dd-167eaaa3c117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"92d361fc-bdb8-491f-a035-33f3e97f90d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:27 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2970" generation=2 uid="7ce81c49-aace-4fcb-8937-a83270ef5b84" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="updated resource in etcd" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3001" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsForwardingRulesetController "msg"="Determined Delete action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsForwardingRulesetController "msg"="Starting delete of resource" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsForwardingRulesetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] DnsForwardingRulesetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] BastionHostController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-bastion resource status: Operation cannot be fulfilled on bastionhosts.network.azure.com "aso-sample-bastion": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/bastionhosts/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-bastion, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fb349338-90d8-4bce-9757-ce66a63ee408, UID in object meta: " name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="adding finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3004" generation=1 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"5d350ad4-c0b5-48ad-9b15-4babefc161c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3001" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3005" generation=1 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource not created yet, will check again" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3001" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3010" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/4fe476dc-bd74-48b5-8e4d-58872a29d5d6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource not created yet, will check again" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] DnsForwardingRulesetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset resource status: Operation cannot be fulfilled on dnsforwardingrulesets.network.azure.com "aso-sample-ruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsforwardingrulesets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b9ca3939-a3df-4a81-80dd-167eaaa3c117, UID in object meta: " name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2871" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3010" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/4fe476dc-bd74-48b5-8e4d-58872a29d5d6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3013" generation=1 uid="6c973c09-3682-4641-b3f4-5bc0027a2864" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] UserAssignedIdentityController "msg"="applying ownership" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3001" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource not created yet, will check again" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotest-rg-buwtab resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-buwtab": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotest-rg-buwtab, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7ce81c49-aace-4fcb-8937-a83270ef5b84, UID in object meta: " name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" status="{\"etag\":\"W/\\\"7926c9b2-def8-4120-b285-f1bc0aae424d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\",\"name\":\"workspacescomputesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] UserAssignedIdentityController "msg"="Set owner reference" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3001" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3018" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3011" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Resource successfully created/updated" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VaultController "msg"="Got ARM status" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe\",\"location\":\"westcentralus\",\"name\":\"asotestbwkwxe\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"f1c6ca99-20c0-43f8-bc3d-ef80e19f24aa\",\"objectId\":\"9eb30ccf-608b-4e7d-9223-6b2f4a5035c9\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://asotestbwkwxe.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3021" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotest-rg-buwtab aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotestpawany]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] UserAssignedIdentityController "msg"="adding finalizer" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:36Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3024" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] WorkspaceController "msg"="applying ownership" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3022" generation=1 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3028" generation=1 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3029" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:36Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="updated resource in etcd" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3032" generation=1 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Set owner reference" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3037" generation=2 uid="4cdfa022-f841-477f-b8f8-18cee992e13a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="adding finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] NetworkInterfaceController "msg"="Got ARM status" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" status="{\"etag\":\"W/\\\"1a94492d-4972-4457-9e1b-5a68c7212ce5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\",\"location\":\"westus3\",\"name\":\"workspacescomputenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"w4wdpkluwobexodzlj2zmqbf5e.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"1a94492d-4972-4457-9e1b-5a68c7212ce5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\"},\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"6b490ad8-7723-492c-a288-44f9d2452c3b\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3038" generation=2 uid="787e8df6-a22c-4394-975c-18b69d90853c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"e2b11fc6-7780-47bd-b097-4ee2081f1117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3033" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3040" generation=2 uid="c46fd02b-2d49-46fc-918a-edde8017a5f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"7ce81c49-aace-4fcb-8937-a83270ef5b84", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="Determined Delete action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="Starting delete of resource" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VaultController "msg"="Delete succeeded, removing finalizer" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3030" generation=1 uid="6c973c09-3682-4641-b3f4-5bc0027a2864" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"da308498-ed09-4b9f-a1af-9834ace8905d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3036" generation=1 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3042" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3044" generation=2 uid="fd03751b-711e-4bb4-bb4f-5baf1675b55d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="adding finalizer" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns\",\"location\":\"westus2\",\"name\":\"asotest-rg-hjxcns\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3051" generation=1 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] NetworkInterfaceController "msg"="Done with reconcile" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3046" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3048" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-bastion resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-bastion": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-bastion, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 787e8df6-a22c-4394-975c-18b69d90853c, UID in object meta: " name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3045" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3056" generation=1 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4cdfa022-f841-477f-b8f8-18cee992e13a, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotestpawany resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "asotestpawany": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotestpawany, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c46fd02b-2d49-46fc-918a-edde8017a5f2, UID in object meta: " name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3055" generation=2 uid="258f5f38-21be-41a8-a991-1685988873a3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"f1182d8f-b87c-4ef2-8025-9d1426bb59d4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fd03751b-711e-4bb4-bb4f-5baf1675b55d, UID in object meta: " name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="updated resource in etcd" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3054" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3068" generation=1 uid="6c973c09-3682-4641-b3f4-5bc0027a2864" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"da308498-ed09-4b9f-a1af-9834ace8905d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="3064" generation=2 uid="a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"7405f205-b445-48ce-8fa6-2491ffb22431", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:20 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3068" generation=1 uid="6c973c09-3682-4641-b3f4-5bc0027a2864" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"da308498-ed09-4b9f-a1af-9834ace8905d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="About to send resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined Delete action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Starting delete of resource" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3071" generation=2 uid="56755094-f026-4ff0-b4bc-5080fea8eed8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:17 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep-dnsforwardingruleset resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-outbound-ep-dnsforwardingruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep-dnsforwardingruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 258f5f38-21be-41a8-a991-1685988873a3, UID in object meta: " name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3074" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Owner does not yet exist" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" NamespacedName="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Got ARM status" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\",\"location\":\"westcentralus\",\"name\":\"asotestqckbee\",\"properties\":{\"clientId\":\"fac17045-fe7a-43eb-96ec-97783f626e60\",\"principalId\":\"7bf60842-ab4f-4ec5-974c-0ab300f2c901\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vnetlink resource status: Operation cannot be fulfilled on privatednszonesvirtualnetworklinks.network.azure.com "aso-sample-vnetlink": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesvirtualnetworklinks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vnetlink, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a1d35ab2-9f2e-4e8a-b40d-2d9db17fff44, UID in object meta: " name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3080" generation=2 uid="08321747-43b4-4747-94a6-e8ad11007522" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2a60a436-be34-4436-bde3-854f556d4e62", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:19 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:21 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3081" generation=1 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="applying ownership" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Successfully created resource" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3087" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="Set owner reference" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-inbound-ep resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-inbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-inbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 56755094-f026-4ff0-b4bc-5080fea8eed8, UID in object meta: " name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="updated resource in etcd" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3090" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3087" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3092" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="3091" generation=2 uid="c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"3cb9384b-da09-4737-ab0b-30ecec4c06cd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="adding finalizer" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Determined Delete action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Starting delete of resource" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3090" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3096" generation=1 uid="6c973c09-3682-4641-b3f4-5bc0027a2864" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"da308498-ed09-4b9f-a1af-9834ace8905d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] UserAssignedIdentityController "msg"="Done with reconcile" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3087" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-outbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 08321747-43b4-4747-94a6-e8ad11007522, UID in object meta: " name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3090" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3099" generation=2 uid="d55dd164-67ff-4df6-995e-3d7a2afcb925" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"b26a9f1f-95e8-4a9f-bd78-a1af6af315ec", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:18 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:24 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3087" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep-dnsforwardingruleset resource status: Operation cannot be fulfilled on dnsresolversoutboundendpoints.network.azure.com "aso-sample-outbound-ep-dnsforwardingruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolversoutboundendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep-dnsforwardingruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c8de6bb1-c9ec-4eae-b1eb-332a0256c2a6, UID in object meta: " name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3035" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3101" generation=1 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3104" generation=1 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3090" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3087" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="3107" generation=2 uid="24b51066-7c35-4f96-b86f-d7947d038de2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="Set owner reference" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ownerGvk="managedidentity.azure.com/v1api20181130storage, Kind=UserAssignedIdentity" ownerName="asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversInboundEndpointController "msg"="Determined Delete action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversInboundEndpointController "msg"="Starting delete of resource" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversInboundEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversInboundEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="About to send resource to Azure" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3090" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3110" generation=1 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d55dd164-67ff-4df6-995e-3d7a2afcb925, UID in object meta: " name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg\",\"location\":\"westus2\",\"name\":\"asotest-rg-qvtfsg\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3067" generation=2 uid="014fd824-10e4-427a-bbc4-b776794ad935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3087" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="adding finalizer" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="3112" generation=2 uid="413ec278-1e32-4661-80a1-5adb21ebfdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"f411a222-a348-4ea1-a59f-aae45696ba56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Got ARM status" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw\",\"identity\":{\"principalId\":\"aaf502ff-2e02-4913-aa3c-fe248535aaf8\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"asotestwokcjw\",\"properties\":{\"allowPublicAccessWhenBehindVnet\":true,\"description\":\"\",\"discoveryUrl\":\"https://westus3.api.azureml.ms/discovery\",\"friendlyName\":\"\",\"hbiWorkspace\":false,\"keyVault\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Keyvault/vaults/aso-ml-vault\",\"mlFlowTrackingUri\":\"azureml://westus3.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw\",\"notebookInfo\":{\"fqdn\":\"ml-asotestwokcjw-westus3-16f3b61c-1882-48c5-a127-3bc612a511ac.westus2.notebooks.azure.net\",\"resourceId\":\"4749ece93ecf44fe98a16e0f47fbec8c\"},\"privateLinkCount\":0,\"provisioningState\":\"Succeeded\",\"storageAccount\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage\",\"storageHnsEnabled\":false,\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"workspaceId\":\"16f3b61c-1882-48c5-a127-3bc612a511ac\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.MachineLearningServices/workspaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Getting Kubernetes resources for export" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" ResourcesToWrite=1 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] DnsResolversInboundEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-inbound-ep resource status: Operation cannot be fulfilled on dnsresolversinboundendpoints.network.azure.com "aso-sample-inbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolversinboundendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-inbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 24b51066-7c35-4f96-b86f-d7947d038de2, UID in object meta: " name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Determined Delete action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Starting delete of resource" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Resource successfully created/updated" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] VirtualMachineController "msg"="Got ARM status" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\",\"location\":\"westus3\",\"name\":\"workspacescomputevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/disks/workspacescomputevm_disk1_baed27b7301a4b909a82f5e19822d43a\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"workspacescomputevm_disk1_baed27b7301a4b909a82f5e19822d43a\",\"osType\":\"Linux\"}},\"vmId\":\"c545b550-1c2d-4ad6-8fc9-6b1554689ccb\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspaceController "msg"="Successfully created resource" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" name="workspace-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="3117" generation=2 uid="bde12379-51ec-4e57-bdfc-bd3a12d7e3ff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"28e2550f-9f34-4aef-aa42-5ea4b9caced8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] DnsResolversOutboundEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep resource status: Operation cannot be fulfilled on dnsresolversoutboundendpoints.network.azure.com "aso-sample-outbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolversoutboundendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 413ec278-1e32-4661-80a1-5adb21ebfdbd, UID in object meta: " name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="3123" generation=2 uid="d2669c25-6f2d-4aed-923d-8ad2810d4991" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsForwardingRuleset", Name:"aso-sample-ruleset", UID:"b9ca3939-a3df-4a81-80dd-167eaaa3c117", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:26 +0000 UTC" deletionTimestamp="2023-09-08 21:20:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:28 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Determined Delete action" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Starting delete of resource" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotest-rg-ddhnin resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ddhnin": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotest-rg-ddhnin, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 014fd824-10e4-427a-bbc4-b776794ad935, UID in object meta: " name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Delete succeeded, removing finalizer" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3127" generation=1 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3118" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"6c973c09-3682-4641-b3f4-5bc0027a2864", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3124" generation=1 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/68b3c772-d220-4795-be53-c65d3d70bbb9?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:37Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3124" generation=1 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/68b3c772-d220-4795-be53-c65d3d70bbb9?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Determined Delete action" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Starting delete of resource" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Delete succeeded, removing finalizer" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotest-rg-ddhnin aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotestbwkwxe]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Resource not created yet, will check again" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Resource creation/update failure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-dnszonegroup resource status: Operation cannot be fulfilled on privateendpointsprivatednszonegroups.network.azure.com "aso-sample-dnszonegroup": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privateendpointsprivatednszonegroups/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-dnszonegroup, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bde12379-51ec-4e57-bdfc-bd3a12d7e3ff, UID in object meta: " name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3133" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3124" generation=1 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/68b3c772-d220-4795-be53-c65d3d70bbb9?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-rule resource status: Operation cannot be fulfilled on dnsforwardingrulesetsforwardingrules.network.azure.com "aso-sample-rule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsforwardingrulesetsforwardingrules/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-rule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d2669c25-6f2d-4aed-923d-8ad2810d4991, UID in object meta: " name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="updated resource in etcd" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3137" generation=1 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3136" generation=1 uid="369e0bb8-00f1-42fc-b43b-20c7e307f8e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3063" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Resource successfully created/updated" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Got ARM status" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"samplekubestoragealpha\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://samplekubestoragealpha.blob.core.windows.net/\",\"dfs\":\"https://samplekubestoragealpha.dfs.core.windows.net/\",\"file\":\"https://samplekubestoragealpha.file.core.windows.net/\",\"queue\":\"https://samplekubestoragealpha.queue.core.windows.net/\",\"table\":\"https://samplekubestoragealpha.table.core.windows.net/\",\"web\":\"https://samplekubestoragealpha.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3065" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3079" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Set owner reference" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Set owner reference" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3141" generation=2 uid="e2fb45d6-f6de-4446-9be6-003c5ab7407f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster\",\"identity\":{\"principalId\":\"6d079ce0-7752-4247-b2c8-2eb2c3b6b9f8\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-2023.01.20\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-171236a1.portal.hcp.westus3.azmk8s.io\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-171236a1.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"42bd1597-1c9f-4455-bbee-3977b0cae64f\",\"objectId\":\"b29a4bed-dba0-4053-8d34-d0426e12f4d7\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-ycutlw_samplemanagedcluster_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster-agentpool\"}},\"kubernetesVersion\":\"1.24.9\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"loadBalancerProfile\":{\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-ycutlw_samplemanagedcluster_westus3/providers/Microsoft.Network/publicIPAddresses/2ece7df4-2c51-4e3a-b56c-87bcec6e7bea\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"serviceCidr\":\"10.0.0.0/16\"},\"nodeResourceGroup\":\"MC_asotest-rg-ycutlw_samplemanagedcluster_westus3\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"servicePrincipalProfile\":{\"clientId\":\"msi\"}},\"sku\":{\"name\":\"Basic\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3105" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3146" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"6c973c09-3682-4641-b3f4-5bc0027a2864", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3145" generation=1 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3144" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="applying ownership" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3146" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"6c973c09-3682-4641-b3f4-5bc0027a2864", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3148" generation=2 uid="d47717be-422f-4144-a746-ca57d31f2e16" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"014fd824-10e4-427a-bbc4-b776794ad935", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:35 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="Set owner reference" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="adding finalizer" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VaultController "msg"="Determined Delete action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VaultController "msg"="Starting delete of resource" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] VaultController "msg"="Delete succeeded, removing finalizer" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e2fb45d6-f6de-4446-9be6-003c5ab7407f, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Successfully sent resource to Azure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3152" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="adding finalizer" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Resource successfully created/updated" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Got ARM status" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi\",\"name\":\"asotestqgmdzi\",\"properties\":{\"audiences\":[\"api://AzureADTokenExchange\"],\"issuer\":\"https://oidc.prod-aks.azure.com/00000000-0000-0000-0000-00000000000/\",\"subject\":\"system:serviceaccount:default:default\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3150" generation=1 uid="369e0bb8-00f1-42fc-b43b-20c7e307f8e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="adding finalizer" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3047" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3162" generation=1 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3160" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragealpha", UID:"0dcbc67c-db4b-433c-aa48-172103f2031c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3161" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3159" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3165" generation=1 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"6c973c09-3682-4641-b3f4-5bc0027a2864", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] FederatedIdentityCredentialController "msg"="Done with reconcile" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Determined CreateOrUpdate action" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3156" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="About to send resource to Azure" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Successfully sent resource to Azure" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Resource successfully created/updated" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Got ARM status" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz\",\"name\":\"asotestsflbjz\",\"properties\":{\"authType\":\"PAT\",\"category\":\"ACR\",\"target\":\"www.sample.com\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/connections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="updated resource in etcd" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3167" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:38Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3171" generation=1 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3173" generation=1 uid="369e0bb8-00f1-42fc-b43b-20c7e307f8e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3173" generation=1 uid="369e0bb8-00f1-42fc-b43b-20c7e307f8e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3178" generation=1 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] WorkspacesConnectionController "msg"="Done with reconcile" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:38Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="About to send resource to Azure" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Successfully sent resource to Azure" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3179" generation=2 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"250f3aae-ef87-463a-9384-39d2cf94bbc2\",\"principalId\":\"df2a8435-df64-4803-abf7-436cc3779660\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3182" generation=1 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3180" generation=1 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk\",\"location\":\"westus2\",\"name\":\"asotest-rg-mkcsgk\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3185" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3189" generation=1 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3195" generation=1 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragealpha", UID:"0dcbc67c-db4b-433c-aa48-172103f2031c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3197" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/8564fe05-b72b-4a67-8e32-1dc2703a44f4?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3089" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3198" generation=2 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw\",\"location\":\"westus2\",\"name\":\"asotest-rg-tizurw\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3199" generation=1 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="samplekubestoragequeuesalpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3202" generation=1 uid="369e0bb8-00f1-42fc-b43b-20c7e307f8e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3198" generation=2 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3197" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/8564fe05-b72b-4a67-8e32-1dc2703a44f4?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3204" generation=1 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="updated resource in etcd" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3203" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Resource not created yet, will check again" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Didn't commit obj as there was no change" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3203" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3197" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/8564fe05-b72b-4a67-8e32-1dc2703a44f4?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3198" generation=2 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Resource successfully created/updated" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Got ARM status" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac\",\"location\":\"westus3\",\"name\":\"asotestbruoac\",\"properties\":{\"computeLocation\":\"westus3\",\"computeType\":\"VirtualMachine\",\"createdOn\":\"2023-07-07T17:44:09.1938707+00:00\",\"disableLocalAuth\":true,\"isAttachedCompute\":true,\"modifiedOn\":\"2023-07-07T17:44:12.0304592+00:00\",\"properties\":{\"address\":\"20.171.45.67\",\"sshPort\":22,\"virtualMachineSize\":\"STANDARD_A1_V2\"},\"provisioningState\":\"Succeeded\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/computes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3198" generation=2 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3211" generation=1 uid="7d02cde1-c0bd-4142-9e3d-a3b1b102487f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3203" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3212" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesalpha", UID:"95958e01-5d07-459b-88b5-89b48914f6c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3213" generation=1 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="applying ownership" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3198" generation=2 uid="da308498-ed09-4b9f-a1af-9834ace8905d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="Set owner reference" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3203" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3219" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="adding finalizer" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3220" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3222" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha\",\"name\":\"samplequeuealpha\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3223" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="applying ownership" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3203" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Got ARM status" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg\",\"identity\":{\"principalId\":\"e1edfcdd-fdd7-4d55-9228-75ee7fa55e19\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"asotestbovcwg\",\"properties\":{\"allowPublicAccessWhenBehindVnet\":true,\"description\":\"\",\"discoveryUrl\":\"https://westus3.api.azureml.ms/discovery\",\"friendlyName\":\"\",\"hbiWorkspace\":false,\"keyVault\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Keyvault/vaults/mlworkspaces-vault\",\"mlFlowTrackingUri\":\"azureml://westus3.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg\",\"notebookInfo\":{\"fqdn\":\"ml-asotestbovcwg-westus3-16c5a3ec-7da8-4040-9798-d51462f5b681.westus2.notebooks.azure.net\",\"resourceId\":\"dd5d14afa0894cb48160eb148d970c7c\"},\"privateLinkCount\":0,\"provisioningState\":\"Succeeded\",\"storageAccount\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1\",\"storageHnsEnabled\":false,\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"workspaceId\":\"16c5a3ec-7da8-4040-9798-d51462f5b681\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.MachineLearningServices/workspaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Getting Kubernetes resources for export" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3217" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="Owner does not yet exist" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="Set owner reference" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-12126/asotest-rg-xezdqa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-xezdqa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-managedidentity-12126/asotest-rg-xezdqa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: da308498-ed09-4b9f-a1af-9834ace8905d, UID in object meta: " name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-managedidentity-12126/asotest-rg-xezdqa aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqckbee aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqgmdzi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3229" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspaceController "msg"="Successfully created resource" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" name="workspace-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3227" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3225" generation=1 uid="7d02cde1-c0bd-4142-9e3d-a3b1b102487f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="adding finalizer" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner does not yet exist" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:39Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3234" generation=1 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesalpha", UID:"95958e01-5d07-459b-88b5-89b48914f6c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3233" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3228" generation=1 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"48930b1b-944f-4b77-9961-f64e60d4d3dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:39Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3237" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Owner does not yet exist" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Owner does not yet exist" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3240" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3241" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3209" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3243" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3239" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105\",\"name\":\"pool202105\",\"properties\":{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-2023.01.20\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner does not yet exist" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3247" generation=2 uid="6c973c09-3682-4641-b3f4-5bc0027a2864" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"da308498-ed09-4b9f-a1af-9834ace8905d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Determined Delete action" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3255" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspaceController "msg"="updated resource in etcd" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3256" generation=1 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3251" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Owner does not yet exist" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" NamespacedName="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner does not yet exist" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Owner does not yet exist" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3263" generation=1 uid="7d02cde1-c0bd-4142-9e3d-a3b1b102487f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3265" generation=1 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"48930b1b-944f-4b77-9961-f64e60d4d3dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/operationResults/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3262" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3263" generation=1 uid="7d02cde1-c0bd-4142-9e3d-a3b1b102487f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="Reconcile invoked" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3270" generation=1 uid="ab5b96d7-65fa-4344-84a0-1b2f21025111" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="applying ownership" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3265" generation=1 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"48930b1b-944f-4b77-9961-f64e60d4d3dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/operationResults/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqckbee resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "asotestqckbee": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqckbee, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6c973c09-3682-4641-b3f4-5bc0027a2864, UID in object meta: " name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3174" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3274" generation=1 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3273" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Owner does not yet exist" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="Set owner reference" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3265" generation=1 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"48930b1b-944f-4b77-9961-f64e60d4d3dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/operationResults/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"2b33c9ed-219e-48f6-8a3f-b7ae3ebf7b43\",\"principalId\":\"84685fdf-f478-42cf-90c9-69503b295e80\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="Set owner reference" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestbovcwg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3169" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3276" generation=2 uid="f988aff2-ffde-45a1-b021-c66204313876" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"6c973c09-3682-4641-b3f4-5bc0027a2864", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3278" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Got ARM status" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta\",\"identity\":{\"type\":\"None\"},\"kind\":\"MongoDB\",\"location\":\"East US\",\"name\":\"sample-mongodb-account-beta\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"FullFidelity\"},\"apiProperties\":{\"serverVersion\":\"3.6\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"capabilities\":[{\"name\":\"EnableMongo\"}],\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-mongodb-account-beta.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="adding finalizer" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] FederatedIdentityCredentialController "msg"="Determined Delete action" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] FederatedIdentityCredentialController "msg"="Starting delete of resource" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] FederatedIdentityCredentialController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] FederatedIdentityCredentialController "msg"="Delete succeeded, removing finalizer" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainController "msg"="Reconcile invoked" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3280" generation=1 uid="57732357-88a9-41a1-9f6a-b60a3e8760e8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainController "msg"="applying ownership" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Successfully created resource" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" name="db-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3278" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="adding finalizer" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesComputeController "msg"="Set owner reference" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestbovcwg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3285" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainController "msg"="Set owner reference" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3289" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] FederatedIdentityCredentialController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqgmdzi resource status: Operation cannot be fulfilled on federatedidentitycredentials.managedidentity.azure.com "asotestqgmdzi": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/federatedidentitycredentials/aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqgmdzi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f988aff2-ffde-45a1-b021-c66204313876, UID in object meta: " name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3294" generation=1 uid="7d02cde1-c0bd-4142-9e3d-a3b1b102487f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="updated resource in etcd" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3287" generation=1 uid="ab5b96d7-65fa-4344-84a0-1b2f21025111" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DomainController "msg"="adding finalizer" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3298" generation=1 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"48930b1b-944f-4b77-9961-f64e60d4d3dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="About to send resource to Azure" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] TopicController "msg"="Successfully sent resource to Azure" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:40Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:40Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3296" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="updated resource in etcd" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3299" generation=1 uid="57732357-88a9-41a1-9f6a-b60a3e8760e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="Determined CreateOrUpdate action" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3278" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesComputeController "msg"="adding finalizer" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3278" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="About to send resource to Azure" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Successfully sent resource to Azure" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3235" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="About to send resource to Azure" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="Successfully sent resource to Azure" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="Resource successfully created/updated" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="Got ARM status" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn\",\"name\":\"asotestxmfumn\",\"properties\":{\"authType\":\"PAT\",\"category\":\"ACR\",\"target\":\"www.sample.com\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/connections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="updated resource in etcd" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3307" generation=1 uid="ab5b96d7-65fa-4344-84a0-1b2f21025111" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A785745-4CF3-4DD7-AE7F-111D765F7D47?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="Done with reconcile" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3308" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3267" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="Reconcile invoked" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3307" generation=1 uid="ab5b96d7-65fa-4344-84a0-1b2f21025111" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A785745-4CF3-4DD7-AE7F-111D765F7D47?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseController "msg"="Set owner reference" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Owner does not yet exist" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3314" generation=1 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Got ARM status" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta\",\"identity\":{\"type\":\"None\"},\"kind\":\"GlobalDocumentDB\",\"location\":\"East US\",\"name\":\"sample-sqldb-account-beta\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"WellDefined\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-sqldb-account-beta.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="Resource successfully created/updated" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="Got ARM status" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv\",\"location\":\"westcentralus\",\"name\":\"asotestiollvv\",\"properties\":{\"endpoint\":\"https://asotestiollvv.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"36d43eca-3830-418c-a385-07d87cddd3b0\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3316" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3318" generation=1 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesConnectionController "msg"="Done with reconcile" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3311" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3278" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseController "msg"="adding finalizer" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="updated resource in etcd" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3320" generation=1 uid="57732357-88a9-41a1-9f6a-b60a3e8760e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A0A95CC-4B54-4BBE-89B6-998497A848D3?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Done with reconcile" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3278" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3319" generation=1 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3323" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="updated resource in etcd" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3326" generation=1 uid="ab5b96d7-65fa-4344-84a0-1b2f21025111" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] TopicController "msg"="Done with reconcile" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Reconcile invoked" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3320" generation=1 uid="57732357-88a9-41a1-9f6a-b60a3e8760e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A0A95CC-4B54-4BBE-89B6-998497A848D3?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Owner does not yet exist" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] EventSubscriptionController "msg"="Set owner reference" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Topic" ownerName="asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv\",\"location\":\"westus2\",\"name\":\"asotest-rg-ytsfwv\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3328" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Resource successfully created/updated" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DomainController "msg"="Got ARM status" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu\",\"location\":\"westcentralus\",\"name\":\"asotestltoilu\",\"properties\":{\"endpoint\":\"https://asotestltoilu.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"4ad7064e-0758-4f86-a7a5-cdc162e62e27\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/domains\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3331" generation=1 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:41Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3279" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3282" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3334" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3329" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"556e5386-6b27-4253-a39c-96bd26ee45fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="About to send resource to Azure" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Successfully sent resource to Azure" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Set owner reference" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3338" generation=1 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Set owner reference" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] EventSubscriptionController "msg"="adding finalizer" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Owner does not yet exist" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainController "msg"="updated resource in etcd" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3343" generation=1 uid="57732357-88a9-41a1-9f6a-b60a3e8760e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainController "msg"="Done with reconcile" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3340" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="About to send resource to Azure" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Successfully sent resource to Azure" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3345" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3348" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="applying ownership" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3264" generation=2 uid="8151f5bb-e3af-4039-a65a-4a2fb57d10e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:31 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="Set owner reference" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Domain" ownerName="asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3349" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/1e8650bb-4586-4463-a950-b7a39338e217?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3352" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="Set owner reference" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3349" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/1e8650bb-4586-4463-a950-b7a39338e217?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="adding finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="adding finalizer" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3355" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Resource not created yet, will check again" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Didn't commit obj as there was no change" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bstmoz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8151f5bb-e3af-4039-a65a-4a2fb57d10e9, UID in object meta: " name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3350" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"ab5b96d7-65fa-4344-84a0-1b2f21025111", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="adding finalizer" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Owner does not yet exist" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3357" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3361" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"556e5386-6b27-4253-a39c-96bd26ee45fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/operationResults/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz aso-test-samples-creationanddeletion-test-machinelearning-f987c/vm-admin-pw aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputesubnet aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevm aso-test-samples-creationanddeletion-test-machinelearning-f987c/asomlworkspacestorage aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensgrule aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputepublicip aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet aso-test-samples-creationanddeletion-test-machinelearning-f987c/aso-ml-vault aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestbruoac aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestsflbjz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3349" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/1e8650bb-4586-4463-a950-b7a39338e217?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="adding finalizer" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3361" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"556e5386-6b27-4253-a39c-96bd26ee45fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/operationResults/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3363" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="applying ownership" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Resource successfully created/updated" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] WorkspacesComputeController "msg"="Got ARM status" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh\",\"location\":\"westus3\",\"name\":\"asotestrrljlh\",\"properties\":{\"computeLocation\":\"westus3\",\"computeType\":\"VirtualMachine\",\"createdOn\":\"2023-07-07T17:44:08.9586647+00:00\",\"disableLocalAuth\":true,\"isAttachedCompute\":true,\"modifiedOn\":\"2023-07-07T17:44:10.5266886+00:00\",\"properties\":{\"address\":\"20.168.38.196\",\"sshPort\":22,\"virtualMachineSize\":\"STANDARD_A1_V2\"},\"provisioningState\":\"Succeeded\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/computes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3366" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3359" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Resource successfully created/updated" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Got ARM status" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta\",\"name\":\"sample-db-mongodb-beta\",\"properties\":{\"resource\":{\"id\":\"sample-db-mongodb-beta\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3373" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3365" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="Set owner reference" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:42Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3369" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3370" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"57732357-88a9-41a1-9f6a-b60a3e8760e8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:42Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2987" generation=1 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="About to send resource to Azure" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="Successfully sent resource to Azure" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="adding finalizer" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3231" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3380" generation=1 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"556e5386-6b27-4253-a39c-96bd26ee45fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3381" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com "asotest-rg-bstmoz" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="About to send resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Successfully sent resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DomainsTopicController "msg"="About to send resource to Azure" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DomainsTopicController "msg"="Successfully sent resource to Azure" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="About to send resource to Azure" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Successfully sent resource to Azure" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Set owner reference" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3382" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3272" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3385" generation=2 uid="c159c5b9-765c-40f7-bd9f-a6325e85c944" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Determined Delete action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Starting delete of resource" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3222" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3391" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"ab5b96d7-65fa-4344-84a0-1b2f21025111", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89C4173B-EA8D-44D2-B477-09F9D32DD996?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3391" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"ab5b96d7-65fa-4344-84a0-1b2f21025111", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89C4173B-EA8D-44D2-B477-09F9D32DD996?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="Resource successfully created/updated" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] EventSubscriptionController "msg"="Got ARM status" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh\",\"name\":\"asotesthdrkoh\",\"properties\":{\"destination\":{\"endpointType\":\"StorageQueue\",\"properties\":{\"queueName\":\"samplequeuealpha\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha\"}},\"eventDeliverySchema\":\"EventGridSchema\",\"filter\":{\"subjectBeginsWith\":\"\",\"subjectEndsWith\":\"\"},\"provisioningState\":\"Succeeded\",\"retryPolicy\":{\"eventTimeToLiveInMinutes\":1440,\"maxDeliveryAttempts\":30},\"topic\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/microsoft.eventgrid/topics/asotestiollvv\"},\"type\":\"Microsoft.EventGrid/eventSubscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3392" generation=2 uid="6ce43274-3bc0-4db8-94e4-68dc3049300b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3395" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3398" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3399" generation=2 uid="08a63985-2fb6-4e71-b6a7-48a6d4157e34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:33 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com "asotest-rg-bstmoz" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="adding finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3395" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] StorageAccountController "msg"="Determined Delete action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] StorageAccountController "msg"="Starting delete of resource" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "workspacescomputevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c159c5b9-765c-40f7-bd9f-a6325e85c944, UID in object meta: " name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3404" generation=2 uid="bafcf6e7-39e4-49d2-b527-a0281322b221" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] PublicIPAddressController "msg"="Determined Delete action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] PublicIPAddressController "msg"="Starting delete of resource" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"57732357-88a9-41a1-9f6a-b60a3e8760e8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4412E274-89EF-46E5-9766-F1762E046A24?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualNetworkController "msg"="Determined Delete action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3395" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualNetworkController "msg"="Starting delete of resource" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DomainsTopicController "msg"="Done with reconcile" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3405" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] VaultController "msg"="Reconcile invoked" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3412" generation=2 uid="c0bf5ee4-df60-4ac6-a25f-98921a9c2e13" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3411" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asomlworkspacestorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asomlworkspacestorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asomlworkspacestorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6ce43274-3bc0-4db8-94e4-68dc3049300b, UID in object meta: " name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3405" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"57732357-88a9-41a1-9f6a-b60a3e8760e8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4412E274-89EF-46E5-9766-F1762E046A24?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3417" generation=1 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"ab5b96d7-65fa-4344-84a0-1b2f21025111", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] VaultController "msg"="Determined Delete action" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:43Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] VaultController "msg"="Starting delete of resource" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] VaultController "msg"="Delete succeeded, removing finalizer" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DomainsTopicController "msg"="Resource successfully created/updated" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DomainsTopicController "msg"="Got ARM status" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu\",\"name\":\"asotestrjhntu\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.EventGrid/domains/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3395" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "workspacescomputevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bafcf6e7-39e4-49d2-b527-a0281322b221, UID in object meta: " name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3414" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3422" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3405" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3395" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3422" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/aso-ml-vault resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "aso-ml-vault": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-machinelearning-f987c/aso-ml-vault, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c0bf5ee4-df60-4ac6-a25f-98921a9c2e13, UID in object meta: " name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3423" generation=2 uid="096c3bac-a584-4886-8696-da74e66f7227" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "workspacescomputepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 08a63985-2fb6-4e71-b6a7-48a6d4157e34, UID in object meta: " name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Resource successfully created/updated" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Got ARM status" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583\",\"name\":\"2bffb017-2385-5855-9fac-9984a599e583\",\"properties\":{\"principalId\":\"df2a8435-df64-4803-abf7-436cc3779660\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleDefinitions/00000000-0000-0000-0000-000000000002\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta\"},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3427" generation=2 uid="150b6b4f-16de-4524-9931-f243b0329af9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkInterfaceController "msg"="Determined Delete action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkInterfaceController "msg"="Starting delete of resource" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="About to send resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Successfully sent resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3405" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3429" generation=1 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"57732357-88a9-41a1-9f6a-b60a3e8760e8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DomainsTopicController "msg"="Done with reconcile" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3433" generation=2 uid="b457762a-938a-47c4-bd7c-d6fa1e8c2e85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"8151f5bb-e3af-4039-a65a-4a2fb57d10e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com "asotest-rg-bstmoz" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "workspacescomputensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 150b6b4f-16de-4524-9931-f243b0329af9, UID in object meta: " name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "workspacescomputenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 096c3bac-a584-4886-8696-da74e66f7227, UID in object meta: " name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3405" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspaceController "msg"="Determined Delete action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspaceController "msg"="Starting delete of resource" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Resource successfully created/updated" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Got ARM status" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta\",\"name\":\"sample-sql-db-beta\",\"properties\":{\"resource\":{\"_colls\":\"colls/\",\"_etag\":\"\\\"00009603-0000-0100-0000-6493315b0000\\\"\",\"id\":\"sample-sql-db-beta\",\"_rid\":\"gzEGAA==\",\"_ts\":1687368027,\"_users\":\"users/\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3439" generation=1 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3441" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/operationResults/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3442" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3441" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/operationResults/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3410" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Resource successfully created/updated" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Got ARM status" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection\",\"name\":\"sample-mongo-collection\",\"properties\":{\"resource\":{\"id\":\"sample-mongo-collection\",\"indexes\":[{\"key\":{\"keys\":[\"_id\"]}},{\"key\":{\"keys\":[\"col1\",\"col2\"]}}]}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3445" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default/operationResults/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Got ARM status" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account\",\"identity\":{\"type\":\"None\"},\"kind\":\"GlobalDocumentDB\",\"location\":\"East US\",\"name\":\"sample-sqldb-account\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"WellDefined\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-sqldb-account.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw resource status: Operation cannot be fulfilled on workspaces.machinelearningservices.azure.com "asotestwokcjw": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspaces/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b457762a-938a-47c4-bd7c-d6fa1e8c2e85, UID in object meta: " name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3445" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default/operationResults/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3448" generation=1 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default\",\"name\":\"JwJy\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3422" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3290" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3422" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3451" generation=1 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3397" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Set owner reference" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Got ARM status" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account\",\"identity\":{\"type\":\"None\"},\"kind\":\"MongoDB\",\"location\":\"East US\",\"name\":\"sample-mongodb-account\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"FullFidelity\"},\"apiProperties\":{\"serverVersion\":\"3.6\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"capabilities\":[{\"name\":\"EnableMongo\"}],\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-mongodb-account.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com "asotestwokcjw" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3236" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3455" generation=1 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3461" generation=1 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3377" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3368" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3337" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3462" generation=1 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3459" generation=2 uid="0a4c6200-32af-48b3-85be-1325171d20a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"bafcf6e7-39e4-49d2-b527-a0281322b221", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:34 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3465" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com \\\"asotestwokcjw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3245" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="adding finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3464" generation=2 uid="b8a2ad70-4b58-478c-af08-c85019773dd4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"150b6b4f-16de-4524-9931-f243b0329af9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:33 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3305" generation=2 uid="b295346d-6731-4efe-9bc4-fc9edc19d0f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:40 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseController "msg"="Set owner reference" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-mongodb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="Set owner reference" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3465" generation=1 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com \\\"asotestwokcjw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlRoleAssignmentController "msg"="Set owner reference" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabaseCollection" ownerName="sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseController "msg"="adding finalizer" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3468" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com "asotestwokcjw" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="adding finalizer" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "workspacescomputesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0a4c6200-32af-48b3-85be-1325171d20a9, UID in object meta: " name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlRoleAssignmentController "msg"="adding finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-1670c/asotest-rg-ycutlw aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster aso-test-samples-creationanddeletion-test-containerservic-1670c/pool202105]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3475" generation=2 uid="8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1670c/asotest-rg-ycutlw resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ycutlw": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-1670c/asotest-rg-ycutlw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b295346d-6731-4efe-9bc4-fc9edc19d0f7, UID in object meta: " name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3478" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensgrule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "workspacescomputensgrule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensgrule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b8a2ad70-4b58-478c-af08-c85019773dd4, UID in object meta: " name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesConnectionController "msg"="Determined Delete action" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesConnectionController "msg"="Starting delete of resource" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesConnectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesConnectionController "msg"="Delete succeeded, removing finalizer" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3476" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3471" generation=2 uid="599a5de0-40eb-4c60-acbe-a4403dcaeee8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"b457762a-938a-47c4-bd7c-d6fa1e8c2e85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com \\\"asotestwokcjw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Determined Delete action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Starting delete of resource" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Delete succeeded, removing finalizer" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3481" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="About to send resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Successfully sent resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="About to send resource to Azure" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="Successfully sent resource to Azure" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3479" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3488" generation=2 uid="6e7fd2cb-e52c-4165-8d0b-dfe563158889" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"b295346d-6731-4efe-9bc4-fc9edc19d0f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] WorkspacesConnectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestsflbjz resource status: Operation cannot be fulfilled on workspacesconnections.machinelearningservices.azure.com "asotestsflbjz": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacesconnections/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestsflbjz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8a1a6b1c-9ee5-4c7d-bf5e-232ebbd7e493, UID in object meta: " name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:32 +0000 UTC" deletionTimestamp="2023-09-08 21:20:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseController "msg"="About to send resource to Azure" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseController "msg"="Successfully sent resource to Azure" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlRoleAssignmentController "msg"="About to send resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlRoleAssignmentController "msg"="Successfully sent resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] WorkspacesComputeController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestbruoac resource status: Operation cannot be fulfilled on workspacescomputes.machinelearningservices.azure.com "asotestbruoac": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacescomputes/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestbruoac, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 599a5de0-40eb-4c60-acbe-a4403dcaeee8, UID in object meta: " name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3485" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"31f8b837-9ffa-489f-8d5b-b9ac6f8b141b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3494" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3494" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3495" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3457" generation=2 uid="7955ede1-2483-4af7-b3a4-d8b04914d6d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3499" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6e7fd2cb-e52c-4165-8d0b-dfe563158889, UID in object meta: " name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-tspxpw": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5, UID in object meta: " name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3495" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3499" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3494" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw aso-test-samples-creationanddeletion-test-machinelearning-329d5/vm-admin-pw aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputenic aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensgrule aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputesubnet aso-test-samples-creationanddeletion-test-machinelearning-329d5/asoworkspacestorageacct1 aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputepublicip aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevm aso-test-samples-creationanddeletion-test-machinelearning-329d5/mlworkspaces-vault aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestrrljlh aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestxmfumn]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3506" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3504" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3494" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotest-rg-hjxcns aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplequeuealpha aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragealpha aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotesthdrkoh aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestltoilu aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestrjhntu]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3509" generation=2 uid="209905c8-bfb7-4677-b63a-bf9cc39f7630" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"6e7fd2cb-e52c-4165-8d0b-dfe563158889", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:36 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3504" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3495" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3506" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3499" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Resource not created yet, will check again" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3133" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3495" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3506" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3494" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotest-rg-hjxcns resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-hjxcns": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotest-rg-hjxcns, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7955ede1-2483-4af7-b3a4-d8b04914d6d3, UID in object meta: " name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3504" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default\",\"name\":\"auGv\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Resource successfully created/updated" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Got ARM status" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container\",\"name\":\"sample-sql-container\",\"properties\":{\"resource\":{\"conflictResolutionPolicy\":{\"conflictResolutionPath\":\"/_ts\",\"conflictResolutionProcedure\":\"\",\"mode\":\"LastWriterWins\"},\"defaultTtl\":200,\"_etag\":\"\\\"00009d03-0000-0100-0000-649331960000\\\"\",\"id\":\"sample-sql-container\",\"indexingPolicy\":{\"automatic\":true,\"excludedPaths\":[{\"path\":\"/myPathToNotIndex/*\"},{\"path\":\"/\\\"_etag\\\"/?\"}],\"includedPaths\":[{\"path\":\"/*\"}],\"indexingMode\":\"consistent\"},\"partitionKey\":{\"kind\":\"Hash\",\"paths\":[\"/myPartitionKey\"]},\"_rid\":\"gzEGAPyQbq4=\",\"_ts\":1687368086,\"uniqueKeyPolicy\":{}}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Resource not created yet, will check again" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3499" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1670c/pool202105 resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool202105": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-1670c/pool202105, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 209905c8-bfb7-4677-b63a-bf9cc39f7630, UID in object meta: " name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3506" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3504" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Resource successfully created/updated" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Got ARM status" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb\",\"name\":\"sample-db-mongodb\",\"properties\":{\"resource\":{\"id\":\"sample-db-mongodb\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3381" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3520" generation=1 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3516" generation=2 uid="8d0524f7-1b66-4a91-acc9-2aff954b83b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3522" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"31f8b837-9ffa-489f-8d5b-b9ac6f8b141b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default/operationResults/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3521" generation=2 uid="0dcbc67c-db4b-433c-aa48-172103f2031c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkInterfaceController "msg"="Determined Delete action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkInterfaceController "msg"="Starting delete of resource" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3499" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3522" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"31f8b837-9ffa-489f-8d5b-b9ac6f8b141b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default/operationResults/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3504" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Determined Delete action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Starting delete of resource" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Resource successfully created/updated" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Got ARM status" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db\",\"name\":\"sample-sql-db\",\"properties\":{\"resource\":{\"_colls\":\"colls/\",\"_etag\":\"\\\"0000c60a-0000-0100-0000-6493315b0000\\\"\",\"id\":\"sample-sql-db\",\"_rid\":\"iaNKAA==\",\"_ts\":1687368027,\"_users\":\"users/\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3525" generation=2 uid="2ab087c7-a531-46b7-af90-5c4b3ec7873d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3522" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"31f8b837-9ffa-489f-8d5b-b9ac6f8b141b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default/operationResults/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Resource successfully created/updated" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Got ARM status" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0\",\"name\":\"b6377656-c9aa-5bfb-b845-160126af8fa0\",\"properties\":{\"principalId\":\"84685fdf-f478-42cf-90c9-69503b295e80\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleDefinitions/00000000-0000-0000-0000-000000000002\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account\"},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3529" generation=1 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3533" generation=1 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3530" generation=1 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3248" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3531" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3266" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] TopicController "msg"="Reconcile invoked" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3528" generation=2 uid="ab5b96d7-65fa-4344-84a0-1b2f21025111" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] TopicController "msg"="Determined Delete action" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] TopicController "msg"="Starting delete of resource" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] TopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] TopicController "msg"="Delete succeeded, removing finalizer" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default\",\"name\":\"CGkg\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Determined Delete action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Starting delete of resource" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3250" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3378" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3531" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Set owner reference" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Set owner reference" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "workspacescomputenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8d0524f7-1b66-4a91-acc9-2aff954b83b6, UID in object meta: " name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3532" generation=1 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3261" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragealpha resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "samplekubestoragealpha": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragealpha, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0dcbc67c-db4b-433c-aa48-172103f2031c, UID in object meta: " name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="Set owner reference" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr\",\"location\":\"westus2\",\"name\":\"asotest-rg-flkxkr\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3547" generation=1 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"31f8b837-9ffa-489f-8d5b-b9ac6f8b141b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3325" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3387" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3539" generation=2 uid="5d350ad4-c0b5-48ad-9b15-4babefc161c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] DomainController "msg"="Reconcile invoked" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3540" generation=2 uid="57732357-88a9-41a1-9f6a-b60a3e8760e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"7955ede1-2483-4af7-b3a4-d8b04914d6d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3544" generation=1 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asoworkspacestorageacct1 resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asoworkspacestorageacct1": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asoworkspacestorageacct1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2ab087c7-a531-46b7-af90-5c4b3ec7873d, UID in object meta: " name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] DomainController "msg"="Determined Delete action" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] DomainController "msg"="Starting delete of resource" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] DomainController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] DomainController "msg"="Delete succeeded, removing finalizer" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3551" generation=1 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Set owner reference" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3550" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3552" generation=2 uid="17665cc4-dfd5-4edf-8baa-d864db952c5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3549" generation=1 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerController "msg"="Set owner reference" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] PublicIPAddressController "msg"="Determined Delete action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] PublicIPAddressController "msg"="Starting delete of resource" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionController "msg"="adding finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3550" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] TopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv resource status: Operation cannot be fulfilled on topics.eventgrid.azure.com "asotestiollvv": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/topics/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ab5b96d7-65fa-4344-84a0-1b2f21025111, UID in object meta: " name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="adding finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3556" generation=1 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="adding finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3360" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:46Z] DomainController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestltoilu resource status: Operation cannot be fulfilled on domains.eventgrid.azure.com "asotestltoilu": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domains/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestltoilu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 57732357-88a9-41a1-9f6a-b60a3e8760e8, UID in object meta: " name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerController "msg"="adding finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3555" generation=1 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3563" generation=2 uid="c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:35 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-ttfvaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3560" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "workspacescomputensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5d350ad4-c0b5-48ad-9b15-4babefc161c5, UID in object meta: " name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3565" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualNetworkController "msg"="Determined Delete action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualNetworkController "msg"="Starting delete of resource" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3531" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "workspacescomputepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 17665cc4-dfd5-4edf-8baa-d864db952c5a, UID in object meta: " name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3531" generation=1 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3568" generation=2 uid="95958e01-5d07-459b-88b5-89b48914f6c8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragealpha", UID:"0dcbc67c-db4b-433c-aa48-172103f2031c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:38 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="adding finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3561" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3569" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3562" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "samplekubestoragequeuesalpha": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 95958e01-5d07-459b-88b5-89b48914f6c8, UID in object meta: " name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3579" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] IotHubController "msg"="applying ownership" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:47Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "workspacescomputevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49, UID in object meta: " name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3550" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3581" generation=2 uid="bebc9626-39fe-4390-ac16-fa04779b83b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"57732357-88a9-41a1-9f6a-b60a3e8760e8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="3572" generation=2 uid="11b577dc-b566-427a-b163-38bc82cdaa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"ab5b96d7-65fa-4344-84a0-1b2f21025111", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:43 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3580" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] IotHubController "msg"="Set owner reference" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3585" generation=1 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3576" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:47Z] SqlDatabaseContainerController "msg"="About to send resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Successfully sent resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="About to send resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Successfully sent resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3574" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="About to send resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully sent resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] EventSubscriptionController "msg"="Determined Delete action" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] EventSubscriptionController "msg"="Starting delete of resource" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] EventSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] EventSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] DomainsTopicController "msg"="Determined Delete action" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] DomainsTopicController "msg"="Starting delete of resource" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] DomainsTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] DomainsTopicController "msg"="Delete succeeded, removing finalizer" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3550" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] IotHubController "msg"="adding finalizer" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3589" generation=2 uid="f7d1c464-2b13-4bce-a01b-50951319b76a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3584" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="About to send resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully sent resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="3575" generation=2 uid="62729c58-5342-4894-8cf6-9e1e95bbcdfc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VaultController "msg"="Determined Delete action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VaultController "msg"="Starting delete of resource" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VaultController "msg"="Delete succeeded, removing finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3595" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] DomainsTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestrjhntu resource status: Operation cannot be fulfilled on domainstopics.eventgrid.azure.com "asotestrjhntu": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domainstopics/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestrjhntu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bebc9626-39fe-4390-ac16-fa04779b83b3, UID in object meta: " name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] EventSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotesthdrkoh resource status: Operation cannot be fulfilled on eventsubscriptions.eventgrid.azure.com "asotesthdrkoh": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/eventsubscriptions/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotesthdrkoh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 11b577dc-b566-427a-b163-38bc82cdaa8f, UID in object meta: " name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3600" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Determined Delete action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Starting delete of resource" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3595" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3600" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3603" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3607" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3602" generation=2 uid="0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"0f72b0c9-b4ad-4c1e-8dfd-3cad4c4d59d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="About to send resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Successfully sent resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspaceController "msg"="Determined Delete action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspaceController "msg"="Starting delete of resource" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3606" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3595" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3607" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "workspacescomputevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 62729c58-5342-4894-8cf6-9e1e95bbcdfc, UID in object meta: " name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] IotHubController "msg"="updated resource in etcd" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3604" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3600" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] FlexibleServersFirewallRuleController "msg"="Owner does not yet exist" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" NamespacedName="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Resource not created yet, will check again" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Didn't commit obj as there was no change" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:48Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/mlworkspaces-vault resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "mlworkspaces-vault": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-machinelearning-329d5/mlworkspaces-vault, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f7d1c464-2b13-4bce-a01b-50951319b76a, UID in object meta: " name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3614" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3603" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3615" generation=2 uid="90dacd63-b4fd-49cb-97e2-e2a12427d1f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesalpha", UID:"95958e01-5d07-459b-88b5-89b48914f6c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3595" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3618" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3607" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3600" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3550" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3614" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg resource status: Operation cannot be fulfilled on workspaces.machinelearningservices.azure.com "asotestbovcwg": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspaces/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b, UID in object meta: " name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Resource not created yet, will check again" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Didn't commit obj as there was no change" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] IotHubController "msg"="About to send resource to Azure" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3603" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3618" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3550" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource successfully created/updated" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] IotHubController "msg"="Successfully sent resource to Azure" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Got ARM status" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure\",\"name\":\"sample-sql-stored-procedure\",\"properties\":{\"resource\":{\"body\":\"function () {\\n var context = getContext();\\n var response = context.getResponse();\\n response.setBody('Hello, World');\\n}\\n\",\"_etag\":\"\\\"2f00b3d9-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-stored-procedure\",\"_rid\":\"gzEGAPyQbq4BAAAAAAAAgA==\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3607" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3624" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3623" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3614" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg does not exist (workspaces.machinelearningservices.azure.com "asotestbovcwg" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3595" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3621" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServerController "msg"="applying ownership" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Resource successfully created/updated" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerController "msg"="Got ARM status" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container\",\"name\":\"sample-sql-container\",\"properties\":{\"resource\":{\"conflictResolutionPolicy\":{\"conflictResolutionPath\":\"/_ts\",\"conflictResolutionProcedure\":\"\",\"mode\":\"LastWriterWins\"},\"defaultTtl\":200,\"_etag\":\"\\\"0000d10a-0000-0100-0000-649331950000\\\"\",\"id\":\"sample-sql-container\",\"indexingPolicy\":{\"automatic\":true,\"excludedPaths\":[{\"path\":\"/myPathToNotIndex/*\"},{\"path\":\"/\\\"_etag\\\"/?\"}],\"includedPaths\":[{\"path\":\"/*\"}],\"indexingMode\":\"consistent\"},\"partitionKey\":{\"kind\":\"Hash\",\"paths\":[\"/myPartitionKey\"]},\"_rid\":\"iaNKAIgaj+I=\",\"_ts\":1687368085,\"uniqueKeyPolicy\":{}}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3618" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3625" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3603" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3628" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3623" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Resource successfully created/updated" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3624" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplequeuealpha resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "samplequeuealpha": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplequeuealpha, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 90dacd63-b4fd-49cb-97e2-e2a12427d1f9, UID in object meta: " name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionController "msg"="Got ARM status" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection\",\"name\":\"sample-mongo-collection\",\"properties\":{\"resource\":{\"id\":\"sample-mongo-collection\",\"indexes\":[{\"key\":{\"keys\":[\"_id\"]}},{\"key\":{\"keys\":[\"col1\",\"col2\"]}}]}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServerController "msg"="Set owner reference" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default\",\"name\":\"2-9D\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3614" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default\",\"name\":\"V6Py\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3635" generation=1 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3623" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] IotHubController "msg"="updated resource in etcd" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3637" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg does not exist (workspaces.machinelearningservices.azure.com \\\"asotestbovcwg\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3618" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3624" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServerController "msg"="adding finalizer" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource successfully created/updated" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Got ARM status" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function\",\"name\":\"sample-sql-function\",\"properties\":{\"resource\":{\"body\":\"function tax(income) {\\n if (income == undefined)\\n throw 'no input';\\n if (income \\u003c 1000)\\n return income*0.1;\\n else if(income \\u003c 10000)\\n return income*0.2;\\n else\\n return income*0.4;\\n}\\n\",\"_etag\":\"\\\"2f00b2d9-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-function\",\"_rid\":\"gzEGAPyQbq4BAAAAAAAAYA==\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3637" generation=1 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg does not exist (workspaces.machinelearningservices.azure.com \\\"asotestbovcwg\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:49Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3651" generation=1 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3652" generation=1 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3641" generation=2 uid="21f62f91-7e2c-4347-b47e-f68487a2170b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"5d350ad4-c0b5-48ad-9b15-4babefc161c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3623" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3351" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3650" generation=1 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3624" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Resource successfully created/updated" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Got ARM status" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger\",\"name\":\"sample-sql-trigger\",\"properties\":{\"resource\":{\"body\":\"function validateToDoItemTimestamp(){\\n var context=getContext();\\n var request=context.getRequest();\\n var itemToCreate=request.getBody();\\n if(!('timestamp' in itemToCreate)) {\\n var ts=new Date();\\n itemToCreate['timestamp']=ts.getTime();\\n }\\n request.setBody(itemToCreate);\\n}\\n\",\"_etag\":\"\\\"2f00b5d9-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-trigger\",\"_rid\":\"gzEGAPyQbq4BAAAAAAAAcA==\",\"triggerOperation\":\"Create\",\"triggerType\":\"Pre\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default\",\"name\":\"mJ02\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3364" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3333" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3346" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg does not exist (workspaces.machinelearningservices.azure.com "asotestbovcwg" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3657" generation=1 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3649" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3659" generation=2 uid="05c96945-4705-4f72-a4a3-17fe00edc670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"c9f512fe-9ed9-4f01-9d13-4ad4ae0f6e49", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:34 +0000 UTC" deletionTimestamp="2023-09-08 21:20:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:36 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3383" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3660" generation=1 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Set owner reference" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Set owner reference" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabaseCollection" ownerName="sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Set owner reference" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensgrule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "workspacescomputensgrule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensgrule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 21f62f91-7e2c-4347-b47e-f68487a2170b, UID in object meta: " name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3670" generation=1 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3673" generation=1 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3667" generation=2 uid="3bd69d32-b843-4104-a8a4-fd9e30c833ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg does not exist (workspaces.machinelearningservices.azure.com \\\"asotestbovcwg\\\" not found)\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "workspacescomputesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 05c96945-4705-4f72-a4a3-17fe00edc670, UID in object meta: " name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3676" generation=1 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Determined Delete action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Starting delete of resource" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesComputeController "msg"="Delete succeeded, removing finalizer" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:50Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="adding finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerTriggerController "msg"="adding finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3674" generation=2 uid="747dff9a-c459-4614-b178-8e1fa3f40e6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"0e159c8b-9a2f-4047-b9c4-f3acbc7d2e1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerStoredProcedureController "msg"="adding finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesConnectionController "msg"="Determined Delete action" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesConnectionController "msg"="Starting delete of resource" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesConnectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] WorkspacesConnectionController "msg"="Delete succeeded, removing finalizer" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:50Z] SqlDatabaseContainerThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] WorkspacesComputeController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestrrljlh resource status: Operation cannot be fulfilled on workspacescomputes.machinelearningservices.azure.com "asotestrrljlh": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacescomputes/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestrrljlh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3bd69d32-b843-4104-a8a4-fd9e30c833ef, UID in object meta: " name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3683" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"8602e19e-de6b-4179-ab7d-fa073eca3049", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3679" generation=1 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3684" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu\",\"location\":\"westus2\",\"name\":\"asotest-rg-vnwpnu\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3686" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3638" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3690" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3688" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Resource successfully created/updated" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Got ARM status" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" status="{\"etag\":\"AAAADH4Hv2g=\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl\",\"identity\":{\"type\":\"None\"},\"location\":\"westus2\",\"name\":\"asotestkzeorl\",\"properties\":{\"cloudToDevice\":{\"defaultTtlAsIso8601\":\"PT1H\",\"feedback\":{\"lockDurationAsIso8601\":\"PT1M\",\"maxDeliveryCount\":10,\"ttlAsIso8601\":\"PT1H\"},\"maxDeliveryCount\":10},\"enableFileUploadNotifications\":false,\"eventHubEndpoints\":{\"events\":{\"endpoint\":\"sb://iothub-ns-asotestkze-25041430-1a7563c663.servicebus.windows.net/\",\"partitionCount\":4,\"partitionIds\":[\"0\",\"1\",\"2\",\"3\"],\"path\":\"asotestkzeorl\",\"retentionTimeInDays\":1}},\"features\":\"None\",\"hostName\":\"asotestkzeorl.azure-devices.net\",\"locations\":[{\"location\":\"West US 2\",\"role\":\"primary\"},{\"location\":\"West Central US\",\"role\":\"secondary\"}],\"messagingEndpoints\":{\"fileNotifications\":{\"lockDurationAsIso8601\":\"PT1M\",\"maxDeliveryCount\":10,\"ttlAsIso8601\":\"PT1H\"}},\"provisioningState\":\"Succeeded\",\"routing\":{\"endpoints\":{},\"fallbackRoute\":{\"condition\":\"true\",\"endpointNames\":[\"events\"],\"isEnabled\":true,\"name\":\"$fallback\",\"source\":\"DeviceMessages\"}},\"state\":\"Active\",\"storageEndpoints\":{\"$default\":{\"containerName\":\"\",\"sasTtlAsIso8601\":\"PT1H\"}}},\"sku\":{\"capacity\":5,\"name\":\"B1\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Devices/IotHubs\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Getting Kubernetes resources for export" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3697" generation=1 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="About to send resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully sent resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3696" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Successfully created resource" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" name="iothubkeyssecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3703" generation=1 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="About to send resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Successfully sent resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="About to send resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully sent resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3708" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"8602e19e-de6b-4179-ab7d-fa073eca3049", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default/operationResults/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3716" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3708" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"8602e19e-de6b-4179-ab7d-fa073eca3049", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default/operationResults/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3716" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default\",\"name\":\"zLJw\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3720" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default/operationResults/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3712" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="applying ownership" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3714" generation=1 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="updated resource in etcd" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3724" generation=1 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc\",\"location\":\"westus2\",\"name\":\"asotest-rg-rwovwc\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3722" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3716" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Set owner reference" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3725" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3720" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default/operationResults/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3727" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3685" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3729" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Got ARM status" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl\",\"location\":\"East US\",\"name\":\"asotestmbsdcl\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"3\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-02-03T05:26:05.6832021+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestmbsdcl.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3725" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="Successfully created resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" name="serverconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3716" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3727" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] FlexibleServerController "msg"="adding finalizer" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3733" generation=1 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"8602e19e-de6b-4179-ab7d-fa073eca3049", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3720" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default/operationResults/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3734" generation=1 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:51Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource successfully created/updated" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default\",\"name\":\"Vy1X\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3736" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Got ARM status" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function\",\"name\":\"sample-sql-function\",\"properties\":{\"resource\":{\"body\":\"function tax(income) {\\n if (income == undefined)\\n throw 'no input';\\n if (income \\u003c 1000)\\n return income*0.1;\\n else if(income \\u003c 10000)\\n return income*0.2;\\n else\\n return income*0.4;\\n}\\n\",\"_etag\":\"\\\"290acec6-0000-0100-0000-649331ce0000\\\"\",\"id\":\"sample-sql-function\",\"_rid\":\"iaNKAIgaj+IBAAAAAAAAYA==\",\"_ts\":1687368142}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3725" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3727" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3738" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3746" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3648" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3725" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3747" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3627" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3748" generation=1 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3647" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3727" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource successfully created/updated" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Got ARM status" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure\",\"name\":\"sample-sql-stored-procedure\",\"properties\":{\"resource\":{\"body\":\"function () {\\n var context = getContext();\\n var response = context.getResponse();\\n response.setBody('Hello, World');\\n}\\n\",\"_etag\":\"\\\"290ad3c6-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-stored-procedure\",\"_rid\":\"iaNKAIgaj+IBAAAAAAAAgA==\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Resource successfully created/updated" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerTriggerController "msg"="Got ARM status" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger\",\"name\":\"sample-sql-trigger\",\"properties\":{\"resource\":{\"body\":\"function validateToDoItemTimestamp(){\\n var context=getContext();\\n var request=context.getRequest();\\n var itemToCreate=request.getBody();\\n if(!('timestamp' in itemToCreate)) {\\n var ts=new Date();\\n itemToCreate['timestamp']=ts.getTime();\\n }\\n request.setBody(itemToCreate);\\n}\\n\",\"_etag\":\"\\\"290ad4c6-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-trigger\",\"_rid\":\"iaNKAIgaj+IBAAAAAAAAcA==\",\"triggerOperation\":\"Create\",\"triggerType\":\"Pre\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3752" generation=1 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3756" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3764" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3762" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServerController "msg"="applying ownership" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3761" generation=1 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3771" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3772" generation=1 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Set owner reference" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3768" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3765" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="adding finalizer" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3767" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3779" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3782" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3793" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3791" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3792" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3793" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3791" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3792" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc\",\"name\":\"asotestrmkcoc\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3792" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3797" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=2 uid="6da60df0-47a4-4db5-b9cb-424386534c1d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw\",\"name\":\"asotestmpwlzw\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3804" generation=1 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:53Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3773" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3805" generation=1 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Got ARM status" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg\",\"location\":\"East US\",\"name\":\"asotestgpnzhg\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"2\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-02-03T05:05:37.7478474+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestgpnzhg.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3803" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotest-rg-flkxkr aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotestkzeorl]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotest-rg-flkxkr resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-flkxkr": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotest-rg-flkxkr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6da60df0-47a4-4db5-b9cb-424386534c1d, UID in object meta: " name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3803" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3815" generation=1 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3803" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3737" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3750" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3818" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3803" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3743" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="3820" generation=2 uid="115047ea-20c2-426a-81da-06f6623b43d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"6da60df0-47a4-4db5-b9cb-424386534c1d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:47 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3803" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] IotHubController "msg"="Determined Delete action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] IotHubController "msg"="Starting delete of resource" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3824" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] IotHubController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] IotHubController "msg"="Delete succeeded, removing finalizer" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Got ARM status" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd\",\"location\":\"East US\",\"name\":\"asotestntkbpd\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"1\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-03-23T22:51:11.4965368+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestntkbpd.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3827" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServerController "msg"="Successfully created resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" name="serverconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3834" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3832" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3842" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3843" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3780" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3843" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3794" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3783" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3854" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3856" generation=1 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3854" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3857" generation=1 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids\",\"name\":\"asotestfbeids\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3861" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3861" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi\",\"name\":\"asotestdbrmhi\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3860" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3609" generation=2 uid="48930b1b-944f-4b77-9961-f64e60d4d3dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3865" generation=1 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3862" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3864" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb\",\"location\":\"westus2\",\"name\":\"asotest-rg-ipnebb\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3870" generation=1 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/asotest-rg-tizurw aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongodb-account-beta aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3874" generation=1 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/asotest-rg-tizurw resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-tizurw": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/asotest-rg-tizurw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 48930b1b-944f-4b77-9961-f64e60d4d3dd, UID in object meta: " name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3837" generation=2 uid="d222ddf2-5494-4009-8259-aae29b0a6a2d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:46 +0000 UTC" deletionTimestamp="2023-09-08 21:20:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3879" generation=1 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3884" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3881" generation=2 uid="556e5386-6b27-4253-a39c-96bd26ee45fe" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"48930b1b-944f-4b77-9961-f64e60d4d3dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3884" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3891" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3889" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3892" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ttfvaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d222ddf2-5494-4009-8259-aae29b0a6a2d, UID in object meta: " name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3894" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3892" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3891" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmpwlzw aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestdzsdcy aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestrmkcoc]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Owner does not yet exist" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" NamespacedName="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3892" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur\",\"name\":\"asotestqycmur\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:56Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongodb-account-beta resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-mongodb-account-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongodb-account-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 556e5386-6b27-4253-a39c-96bd26ee45fe, UID in object meta: " name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3899" generation=1 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv\",\"name\":\"asotestdepkwv\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3900" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3904" generation=2 uid="30d13251-4e7e-44d2-bab3-a2109f1ecbc2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"556e5386-6b27-4253-a39c-96bd26ee45fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:42 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3907" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:56Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseController "msg"="Determined Delete action" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseController "msg"="Starting delete of resource" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3913" generation=1 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="applying ownership" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3909" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3746" generation=1 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Set owner reference" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa does not exist (resourcegroups.resources.azure.com "asotest-rg-ttfvaa" not found)" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3920" generation=1 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] MongodbDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta resource status: Operation cannot be fulfilled on mongodbdatabases.documentdb.azure.com "sample-db-mongodb-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabases/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 30d13251-4e7e-44d2-bab3-a2109f1ecbc2, UID in object meta: " name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="adding finalizer" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3925" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3921" generation=2 uid="06ca9fdc-440b-4112-a1c3-fb6af65edfda" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"d222ddf2-5494-4009-8259-aae29b0a6a2d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Determined Delete action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3927" generation=2 uid="31f8b837-9ffa-489f-8d5b-b9ac6f8b141b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseCollectionController "msg"="Determined Delete action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseCollectionController "msg"="Starting delete of resource" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseCollectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseCollectionController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3928" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3931" generation=2 uid="fef2d900-d44c-488d-9bb8-288825e53c37" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"30d13251-4e7e-44d2-bab3-a2109f1ecbc2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestmbsdcl": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 06ca9fdc-440b-4112-a1c3-fb6af65edfda, UID in object meta: " name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] MongodbDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3935" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3938" generation=2 uid="996429a7-5001-40f1-ae13-866e0ddd285e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:48 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3935" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] MongodbDatabaseCollectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection resource status: Operation cannot be fulfilled on mongodbdatabasecollections.documentdb.azure.com "sample-mongo-collection": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollections/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 31f8b837-9ffa-489f-8d5b-b9ac6f8b141b, UID in object meta: " name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3935" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3943" generation=2 uid="9735f489-b14f-49c3-adfa-1ad685c5794b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:57Z] MongodbDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasethroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasethroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fef2d900-d44c-488d-9bb8-288825e53c37, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3908" generation=2 uid="c26b920d-8e22-4cdb-b439-ac6653623a66" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:50 +0000 UTC" deletionTimestamp="2023-09-08 21:20:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3944" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmpwlzw resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestmpwlzw": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmpwlzw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 996429a7-5001-40f1-ae13-866e0ddd285e, UID in object meta: " name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3935" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3948" generation=2 uid="1e9ec259-5cd5-4b79-8138-a7592c72377a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"06ca9fdc-440b-4112-a1c3-fb6af65edfda", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:49 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3944" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3949" generation=2 uid="022c4a16-29d6-4081-94e3-4f1ff373ae47" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"31f8b837-9ffa-489f-8d5b-b9ac6f8b141b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:20:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vnwpnu": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c26b920d-8e22-4cdb-b439-ac6653623a66, UID in object meta: " name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3721" generation=2 uid="f707aa2c-7307-4580-8f3e-0f2d885fa5ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:37 +0000 UTC" deletionTimestamp="2023-09-08 21:20:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestdzsdcy resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestdzsdcy": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestdzsdcy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9735f489-b14f-49c3-adfa-1ad685c5794b, UID in object meta: " name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3935" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3944" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3935" generation=2 uid="8183dd18-7c2a-4de7-8f35-233f57270953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3944" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestwrynaf aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestfbeids aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestdbrmhi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestrmkcoc resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestrmkcoc": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestrmkcoc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1e9ec259-5cd5-4b79-8138-a7592c72377a, UID in object meta: " name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3944" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/asotest-rg-qvtfsg resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-qvtfsg": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/asotest-rg-qvtfsg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f707aa2c-7307-4580-8f3e-0f2d885fa5ca, UID in object meta: " name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Got ARM status" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp\",\"location\":\"East US\",\"name\":\"asotestxykhmp\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"1\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-03-23T22:51:15.7955334+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestxykhmp.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3818" generation=1 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-rwovwc": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8183dd18-7c2a-4de7-8f35-233f57270953, UID in object meta: " name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/asotest-rg-qvtfsg aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-throughput aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-stored-procedure aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-mongo-throughput aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-trigger aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-function aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-role-assignment aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestntkbpd aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestipsheq aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestqycmur aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestdepkwv]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu does not exist (resourcegroups.resources.azure.com "asotest-rg-vnwpnu" not found)" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3842" generation=1 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:58Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3970" generation=2 uid="0d76ace0-080d-4403-8233-11e0c920ff0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"c26b920d-8e22-4cdb-b439-ac6653623a66", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc does not exist (resourcegroups.resources.azure.com "asotest-rg-rwovwc" not found)" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Determined Delete action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3911" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3976" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:58 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: []... +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3977" generation=2 uid="369e0bb8-00f1-42fc-b43b-20c7e307f8e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:39 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3974" generation=1 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3923" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="3980" generation=2 uid="786d0ca7-a75c-4ae8-aae5-b097846727a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"f707aa2c-7307-4580-8f3e-0f2d885fa5ca", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:41 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 369e0bb8-00f1-42fc-b43b-20c7e307f8e1, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3916" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestgpnzhg": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0d76ace0-080d-4403-8233-11e0c920ff0d, UID in object meta: " name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=2 uid="d44fdd9f-210d-4236-8d8e-f08b02f94372" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:20:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3973" generation=2 uid="f796b2e5-9cd0-4020-85d8-a223fce54d74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"8183dd18-7c2a-4de7-8f35-233f57270953", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:54 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Determined Delete action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3982" generation=1 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-sqldb-account-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 786d0ca7-a75c-4ae8-aae5-b097846727a7, UID in object meta: " name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo\",\"location\":\"westus2\",\"name\":\"asotest-rg-kymszo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3989" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestntkbpd resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestntkbpd": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestntkbpd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f796b2e5-9cd0-4020-85d8-a223fce54d74, UID in object meta: " name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3991" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/asotest-rg-ytsfwv resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ytsfwv": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/asotest-rg-ytsfwv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d44fdd9f-210d-4236-8d8e-f08b02f94372, UID in object meta: " name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3997" generation=2 uid="6b504001-f276-4d36-935e-19f08433fdcf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/asotest-rg-ytsfwv aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongodb-account aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4004" generation=2 uid="8c9cc304-7091-47c7-a803-9dfb27561c75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestwrynaf resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestwrynaf": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestwrynaf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6b504001-f276-4d36-935e-19f08433fdcf, UID in object meta: " name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4008" generation=2 uid="c4870d42-83f1-4303-adcd-eb3a44b07258" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4006" generation=1 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4002" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:20:57 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4003" generation=2 uid="7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:20:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4007" generation=1 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4013" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:59 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4012" generation=2 uid="51215b9b-527c-41f7-bf4a-55d663ed4ead" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"d44fdd9f-210d-4236-8d8e-f08b02f94372", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlRoleAssignmentController "msg"="Determined Delete action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlRoleAssignmentController "msg"="Starting delete of resource" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlRoleAssignmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlRoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4018" generation=2 uid="a112bdcd-54cf-4483-af19-eccea1752bba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4014" generation=2 uid="a03b00ec-9462-4789-9dda-6504dbada36d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"0d76ace0-080d-4403-8233-11e0c920ff0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:51 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:55 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4015" generation=2 uid="7bdef1fd-b767-4691-8ed4-4ff1aba856a9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"786d0ca7-a75c-4ae8-aae5-b097846727a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:20:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4013" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:59 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseController "msg"="Determined Delete action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseController "msg"="Starting delete of resource" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestfbeids resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestfbeids": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestfbeids, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8c9cc304-7091-47c7-a803-9dfb27561c75, UID in object meta: " name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4025" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:59 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] 2023/09/08 21:21:00 http: TLS handshake error from 127.0.0.1:56132: EOF +[controller:test-integration-envtest] 2023/09/08 21:21:00 http: TLS handshake error from 127.0.0.1:56148: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4026" generation=2 uid="6c8aa37b-abe2-4cc9-929b-0e9412b55a03" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"f796b2e5-9cd0-4020-85d8-a223fce54d74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:53 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4025" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:20:59 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestipsheq resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestipsheq": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestipsheq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c4870d42-83f1-4303-adcd-eb3a44b07258, UID in object meta: " name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4027" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="applying ownership" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] SqlRoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-role-assignment resource status: Operation cannot be fulfilled on sqlroleassignments.documentdb.azure.com "sample-role-assignment": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqlroleassignments/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-role-assignment, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7aa38a53-b6e2-4bc9-b95c-56d71eb9f5c6, UID in object meta: " name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] SqlDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta resource status: Operation cannot be fulfilled on sqldatabases.documentdb.azure.com "sample-sql-db-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabases/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7bdef1fd-b767-4691-8ed4-4ff1aba856a9, UID in object meta: " name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm\",\"name\":\"asotestklrtxm\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="Set owner reference" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4035" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4037" generation=1 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4024" generation=1 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongodb-account resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-mongodb-account": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongodb-account, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 51215b9b-527c-41f7-bf4a-55d663ed4ead, UID in object meta: " name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec\",\"location\":\"westus2\",\"name\":\"asotest-rg-ihkvec\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestqycmur resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestqycmur": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestqycmur, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a112bdcd-54cf-4483-af19-eccea1752bba, UID in object meta: " name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestdepkwv resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestdepkwv": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestdepkwv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6c8aa37b-abe2-4cc9-929b-0e9412b55a03, UID in object meta: " name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4040" generation=2 uid="2e9d704a-5f79-4d5c-8976-542bb547db6a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"51215b9b-527c-41f7-bf4a-55d663ed4ead", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4043" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseController "msg"="Determined Delete action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseController "msg"="Starting delete of resource" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4042" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="adding finalizer" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4043" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3814" generation=2 uid="46171ac3-82e3-4875-be9d-b1d33aaa0c2a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:38 +0000 UTC" deletionTimestamp="2023-09-08 21:20:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:20:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4046" generation=2 uid="b578a240-0c34-4d6d-a783-0575746e753b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4056" generation=1 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] MongodbDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb resource status: Operation cannot be fulfilled on mongodbdatabases.documentdb.azure.com "sample-db-mongodb": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabases/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2e9d704a-5f79-4d5c-8976-542bb547db6a, UID in object meta: " name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4057" generation=1 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4059" generation=1 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4043" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo\",\"name\":\"asotestpalneo\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4055" generation=2 uid="1ab5259f-f397-488d-a5b1-ea7894dd2bfb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"7bdef1fd-b767-4691-8ed4-4ff1aba856a9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseContainerController "msg"="Determined Delete action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseContainerController "msg"="Starting delete of resource" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] SqlDatabaseContainerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4060" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/asotest-rg-mkcsgk resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-mkcsgk": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/asotest-rg-mkcsgk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 46171ac3-82e3-4875-be9d-b1d33aaa0c2a, UID in object meta: " name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] SqlDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-throughput resource status: Operation cannot be fulfilled on sqldatabasethroughputsettings.documentdb.azure.com "sample-sql-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasethroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b578a240-0c34-4d6d-a783-0575746e753b, UID in object meta: " name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4068" generation=2 uid="8602e19e-de6b-4179-ab7d-fa073eca3049" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4073" generation=1 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/asotest-rg-mkcsgk aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-container aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-stored-procedure aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-mongo-throughput aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-trigger aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-function aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-throughput aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-role-assignment aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseCollectionController "msg"="Determined Delete action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseCollectionController "msg"="Starting delete of resource" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseCollectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] MongodbDatabaseCollectionController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] SqlDatabaseContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container resource status: Operation cannot be fulfilled on sqldatabasecontainers.documentdb.azure.com "sample-sql-container": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainers/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1ab5259f-f397-488d-a5b1-ea7894dd2bfb, UID in object meta: " name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:00Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:00Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4071" generation=1 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm\",\"location\":\"westus2\",\"name\":\"asotest-rg-kzergm\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4077" generation=2 uid="4d7cef0f-2f2a-4d38-9e66-a4a67455c551" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"2e9d704a-5f79-4d5c-8976-542bb547db6a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4080" generation=1 uid="3d43ebaa-bcd2-4f26-9a86-31c153542f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="applying ownership" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4082" generation=1 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection resource status: Operation cannot be fulfilled on mongodbdatabasecollections.documentdb.azure.com "sample-mongo-collection": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollections/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8602e19e-de6b-4179-ab7d-fa073eca3049, UID in object meta: " name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Set owner reference" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4081" generation=1 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4084" generation=2 uid="7d02cde1-c0bd-4142-9e3d-a3b1b102487f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:40 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo\",\"location\":\"westus2\",\"name\":\"asotest-rg-utxnvo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4088" generation=2 uid="c682d343-58f0-4d03-9f06-ef24fa8602a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] MongodbDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasethroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasethroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4d7cef0f-2f2a-4d38-9e66-a4a67455c551, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="adding finalizer" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined Delete action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerStoredProcedureController "msg"="Starting delete of resource" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerStoredProcedureController "msg"="Delete succeeded, removing finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4094" generation=2 uid="190dfc03-535b-4dee-be5e-71d93a7d7c53" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4095" generation=1 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4091" generation=2 uid="759d1e58-ffff-4d6f-86fd-0ad93250aade" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"46171ac3-82e3-4875-be9d-b1d33aaa0c2a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:44 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4096" generation=1 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4093" generation=1 uid="3d43ebaa-bcd2-4f26-9a86-31c153542f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7d02cde1-c0bd-4142-9e3d-a3b1b102487f, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4101" generation=2 uid="4f5ccaf4-b5d9-4791-846a-0717a793f9b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:39 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4102" generation=2 uid="d6f6db09-0eed-4451-8bc8-e13d68ad66e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"8602e19e-de6b-4179-ab7d-fa073eca3049", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] SqlDatabaseContainerStoredProcedureController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-stored-procedure resource status: Operation cannot be fulfilled on sqldatabasecontainerstoredprocedures.documentdb.azure.com "sample-sql-stored-procedure": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerstoredprocedures/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-stored-procedure, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c682d343-58f0-4d03-9f06-ef24fa8602a8, UID in object meta: " name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerTriggerController "msg"="Determined Delete action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerTriggerController "msg"="Starting delete of resource" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerTriggerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerTriggerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4103" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] SqlDatabaseContainerThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-mongo-throughput resource status: Operation cannot be fulfilled on sqldatabasecontainerthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerthroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 190dfc03-535b-4dee-be5e-71d93a7d7c53, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasecollectionthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollectionthroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d6f6db09-0eed-4451-8bc8-e13d68ad66e5, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4108" generation=2 uid="5091e561-d05c-4e61-b381-440a2ef84532" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"1ab5259f-f397-488d-a5b1-ea7894dd2bfb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:40 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-sqldb-account": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 759d1e58-ffff-4d6f-86fd-0ad93250aade, UID in object meta: " name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined Delete action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Starting delete of resource" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Delete succeeded, removing finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4112" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4116" generation=1 uid="3d43ebaa-bcd2-4f26-9a86-31c153542f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Owner does not yet exist" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" NamespacedName="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] SqlDatabaseContainerTriggerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-trigger resource status: Operation cannot be fulfilled on sqldatabasecontainertriggers.documentdb.azure.com "sample-sql-trigger": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainertriggers/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-trigger, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4f5ccaf4-b5d9-4791-846a-0717a793f9b9, UID in object meta: " name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4119" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4116" generation=1 uid="3d43ebaa-bcd2-4f26-9a86-31c153542f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="Owner does not yet exist" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" NamespacedName="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4121" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Owner does not yet exist" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" NamespacedName="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4086" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4126" generation=2 uid="01f4b376-d5cf-4568-b68e-86ae464a540e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseController "msg"="Determined Delete action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseController "msg"="Starting delete of resource" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] SqlDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Got ARM status" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\",\"location\":\"eastus\",\"name\":\"adminidentity\",\"properties\":{\"clientId\":\"c1b02d3e-fa64-4377-b8cf-20f20777e0aa\",\"principalId\":\"82c92628-80be-4955-b16e-5b472340f13c\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Got ARM status" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx\",\"location\":\"East US\",\"name\":\"asotestlnsbgx\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"3\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2022-10-19T18:24:39.1811224+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestlnsbgx.mysql.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"standbyAvailabilityZone\":\"\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"replicaCapacity\":10,\"replicationRole\":\"None\",\"state\":\"Ready\",\"storage\":{\"autoGrow\":\"Enabled\",\"iops\":684,\"storageSizeGB\":128,\"storageSku\":\"Premium_LRS\"},\"version\":\"8.0.21\"},\"sku\":{\"name\":\"Standard_D4ds_v4\",\"tier\":\"GeneralPurpose\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4122" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ServerController "msg"="applying ownership" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:01Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4128" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ServerController "msg"="Set owner reference" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:01Z] UserAssignedIdentityController "msg"="Successfully created resource" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" name="admin-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner does not yet exist" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" NamespacedName="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db resource status: Operation cannot be fulfilled on sqldatabases.documentdb.azure.com "sample-sql-db": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabases/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 01f4b376-d5cf-4568-b68e-86ae464a540e, UID in object meta: " name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4132" generation=2 uid="7a5732a2-a8b2-43d7-962e-ff2156564d62" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"759d1e58-ffff-4d6f-86fd-0ad93250aade", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlRoleAssignmentController "msg"="Determined Delete action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlRoleAssignmentController "msg"="Starting delete of resource" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4137" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="applying ownership" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlRoleAssignmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlRoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="adding finalizer" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4139" generation=1 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Set owner reference" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4143" generation=1 uid="3d43ebaa-bcd2-4f26-9a86-31c153542f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] UserAssignedIdentityController "msg"="Done with reconcile" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4145" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4063" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4146" generation=1 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlRoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-role-assignment resource status: Operation cannot be fulfilled on sqlroleassignments.documentdb.azure.com "sample-role-assignment": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqlroleassignments/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-role-assignment, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7a5732a2-a8b2-43d7-962e-ff2156564d62, UID in object meta: " name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestlnsbgx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="adding finalizer" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4051" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4147" generation=1 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=2 uid="5ea53002-46e2-42bd-b4b9-b277210335fd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:55 +0000 UTC" deletionTimestamp="2023-09-08 21:21:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh\",\"location\":\"westus2\",\"name\":\"asotest-rg-bzazxh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="updated resource in etcd" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4150" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestlnsbgx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4152" generation=1 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4156" generation=2 uid="e6562cf1-59a2-45e2-a0bf-40939f86125c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:49 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4155" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv\",\"location\":\"westus2\",\"name\":\"asotest-rg-frjrtv\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerController "msg"="Determined Delete action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerController "msg"="Starting delete of resource" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4158" generation=1 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Owner does not yet exist" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="About to send resource to Azure" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Successfully sent resource to Azure" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="updated resource in etcd" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4154" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4160" generation=2 uid="12fef303-5556-45b1-b92b-b2372f0f464a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"01f4b376-d5cf-4568-b68e-86ae464a540e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:50 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4159" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4165" generation=1 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestklrtxm aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestpalneo aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestmruzby]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Owner does not yet exist" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4161" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ipnebb": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5ea53002-46e2-42bd-b4b9-b277210335fd, UID in object meta: " name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="About to send resource to Azure" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4166" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="applying ownership" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Successfully sent resource to Azure" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlDatabaseContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-container resource status: Operation cannot be fulfilled on sqldatabasecontainers.documentdb.azure.com "sample-sql-container": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainers/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-container, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6562cf1-59a2-45e2-a0bf-40939f86125c, UID in object meta: " name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-throughput resource status: Operation cannot be fulfilled on sqldatabasethroughputsettings.documentdb.azure.com "sample-sql-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasethroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 12fef303-5556-45b1-b92b-b2372f0f464a, UID in object meta: " name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4174" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="Reconcile invoked" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4170" generation=1 uid="c67e7052-ff11-4d59-b845-133a474d725f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="applying ownership" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Set owner reference" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4177" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="updated resource in etcd" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4179" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Done with reconcile" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4178" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="3976" generation=1 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:58 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="Set owner reference" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4169" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4179" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="adding finalizer" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="Reconcile invoked" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="4183" generation=1 uid="e6a17c37-0df1-482a-add2-48f668227dc8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="applying ownership" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb does not exist (resourcegroups.resources.azure.com "asotest-rg-ipnebb" not found)" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Resource not created yet, will check again" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Didn't commit obj as there was no change" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Done with reconcile" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4179" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="updated resource in etcd" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4187" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Done with reconcile" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="adding finalizer" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4188" generation=2 uid="a2dbc679-f725-440a-9b39-d0a7ed005a06" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4187" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Resource not created yet, will check again" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Didn't commit obj as there was no change" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Done with reconcile" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4193" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Encountered error, re-queuing..." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="Set owner reference" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Resource successfully created/updated" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Got ARM status" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv\",\"location\":\"eastus\",\"name\":\"asotestehjndv\",\"properties\":{\"administratorLogin\":\"hellouser\",\"earliestRestoreDate\":\"2022-10-19T18:42:22.797+00:00\",\"fullyQualifiedDomainName\":\"asotestehjndv.mariadb.database.azure.com\",\"masterServerId\":\"\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"publicNetworkAccess\":\"Enabled\",\"replicaCapacity\":5,\"replicationRole\":\"None\",\"sslEnforcement\":\"Enabled\",\"storageProfile\":{\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\",\"storageMB\":5120},\"userVisibleState\":\"Ready\",\"version\":\"10.2\"},\"sku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5_2\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforMariaDB/servers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Getting Kubernetes resources for export" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined Delete action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerStoredProcedureController "msg"="Starting delete of resource" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4198" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerStoredProcedureController "msg"="Delete succeeded, removing finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4193" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4187" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="adding finalizer" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4201" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4191" generation=2 uid="300c3883-9c00-4a05-8036-96f46e4a9ee9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"5ea53002-46e2-42bd-b4b9-b277210335fd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:58 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4196" generation=2 uid="2defb3bd-59fa-457e-ad43-a92f70e4f60f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Resource successfully created/updated" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Got ARM status" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm\",\"location\":\"eastus\",\"name\":\"asotestrdmhdm\",\"properties\":{\"administratorLogin\":\"hellouser\",\"earliestRestoreDate\":\"2023-03-23T23:07:52.9+00:00\",\"fullyQualifiedDomainName\":\"asotestrdmhdm.mariadb.database.azure.com\",\"masterServerId\":\"\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"publicNetworkAccess\":\"Enabled\",\"replicaCapacity\":5,\"replicationRole\":\"None\",\"sslEnforcement\":\"Enabled\",\"storageProfile\":{\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\",\"storageMB\":5120},\"userVisibleState\":\"Ready\",\"version\":\"10.2\"},\"sku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5_2\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforMariaDB/servers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Getting Kubernetes resources for export" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Determined Delete action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4199" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4198" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="updated resource in etcd" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4192" generation=1 uid="c67e7052-ff11-4d59-b845-133a474d725f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"83c6c758-1dd6-447d-8f6c-cd4ce2a677d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4202" generation=2 uid="35d9d9cd-494f-4e76-92d6-dcc2593506b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:41 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] BackupVaultsBackupPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="Determined CreateOrUpdate action" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerTriggerController "msg"="Determined Delete action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerTriggerController "msg"="Starting delete of resource" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerTriggerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerTriggerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe\",\"name\":\"asotestalhzfe\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4201" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlDatabaseContainerStoredProcedureController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-stored-procedure resource status: Operation cannot be fulfilled on sqldatabasecontainerstoredprocedures.documentdb.azure.com "sample-sql-stored-procedure": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerstoredprocedures/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-stored-procedure, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a2dbc679-f725-440a-9b39-d0a7ed005a06, UID in object meta: " name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="About to send resource to Azure" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] BackupVaultController "msg"="Successfully sent resource to Azure" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4201" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4133" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="updated resource in etcd" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4212" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Done with reconcile" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="4209" generation=2 uid="488b1c45-2887-44ed-bc45-a349815c267a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e6562cf1-59a2-45e2-a0bf-40939f86125c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:42 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:52 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="updated resource in etcd" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="4206" generation=1 uid="e6a17c37-0df1-482a-add2-48f668227dc8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-frjrtv", UID:"c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun"} conditions="[]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="updated resource in etcd" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4213" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ServerController "msg"="Done with reconcile" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu\",\"name\":\"asotestdnnqvu\",\"properties\":{\"charset\":\"utf8mb4\",\"collation\":\"utf8mb4_0900_ai_ci\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined Delete action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Starting delete of resource" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="Determined CreateOrUpdate action" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Delete succeeded, removing finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlDatabaseContainerTriggerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-trigger resource status: Operation cannot be fulfilled on sqldatabasecontainertriggers.documentdb.azure.com "sample-sql-trigger": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainertriggers/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-trigger, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 35d9d9cd-494f-4e76-92d6-dcc2593506b7, UID in object meta: " name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4129" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] ConfigurationController "msg"="Set owner reference" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="About to send resource to Azure" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="Successfully sent resource to Azure" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="Resource successfully created/updated" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:02Z] FactoryController "msg"="Got ARM status" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" status="{\"eTag\":\"\\\"0600f72f-0000-0200-0000-64407a430000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun\",\"identity\":{\"principalId\":\"77fcaf68-04b1-478b-bc33-13e487400948\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"eastus2\",\"name\":\"asotestfehhun\",\"properties\":{\"createTime\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"version\":\"2018-06-01\"},\"type\":\"Microsoft.DataFactory/factories\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] SqlDatabaseContainerThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-mongo-throughput resource status: Operation cannot be fulfilled on sqldatabasecontainerthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerthroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2defb3bd-59fa-457e-ad43-a92f70e4f60f, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4220" generation=1 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:02Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestxykhmp": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 300c3883-9c00-4a05-8036-96f46e4a9ee9, UID in object meta: " name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4127" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4193" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Encountered error, re-queuing..." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4219" generation=2 uid="6c3ab7f5-8d5c-4f51-8443-1377a07ca482" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4193" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="updated resource in etcd" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4225" generation=1 uid="c67e7052-ff11-4d59-b845-133a474d725f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"83c6c758-1dd6-447d-8f6c-cd4ce2a677d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/operationStatus/NWU5ODNkOGQtNzg5MC00MjhiLWIxZjMtNjVmZGEwMzQzZjdiOzdiY2E2NThhLWFiMmItNDA2Ny05MmFmLTQwY2JmM2VhNWEzZg==?api-version=2023-01-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo?api-version=2023-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="Done with reconcile" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4142" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Set owner reference" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4228" generation=2 uid="14e981e3-2cda-4e94-8032-4769edbe6679" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="Reconcile invoked" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4225" generation=1 uid="c67e7052-ff11-4d59-b845-133a474d725f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"83c6c758-1dd6-447d-8f6c-cd4ce2a677d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/operationStatus/NWU5ODNkOGQtNzg5MC00MjhiLWIxZjMtNjVmZGEwMzQzZjdiOzdiY2E2NThhLWFiMmItNDA2Ny05MmFmLTQwY2JmM2VhNWEzZg==?api-version=2023-01-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo?api-version=2023-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="adding finalizer" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Set owner reference" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="Determined CreateOrUpdate action" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="Resource successfully created/updated" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="Got ARM status" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo\",\"identity\":{\"principalId\":\"391626e0-d6b5-4e1e-967b-70d48318c159\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"eastus\",\"name\":\"asotestybbdoo\",\"properties\":{\"isVaultProtectedByResourceGuard\":false,\"provisioningState\":\"Succeeded\",\"securitySettings\":{\"softDeleteSettings\":{\"retentionDurationInDays\":14,\"state\":\"On\"}},\"storageSettings\":[{\"datastoreType\":\"VaultStore\",\"type\":\"LocallyRedundant\"}]},\"type\":\"Microsoft.DataProtection/backupVaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FactoryController "msg"="updated resource in etcd" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="4231" generation=1 uid="e6a17c37-0df1-482a-add2-48f668227dc8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-frjrtv", UID:"c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FactoryController "msg"="Done with reconcile" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Set owner reference" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="adding finalizer" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4232" generation=1 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestklrtxm resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestklrtxm": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestklrtxm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6c3ab7f5-8d5c-4f51-8443-1377a07ca482, UID in object meta: " name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4236" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="adding finalizer" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4193" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Encountered error, re-queuing..." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4234" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="adding finalizer" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4236" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4193" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="4239" generation=2 uid="95a7a829-11a0-4874-a5ec-0c1b622563e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"300c3883-9c00-4a05-8036-96f46e4a9ee9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:20:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4242" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="updated resource in etcd" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4247" generation=1 uid="c67e7052-ff11-4d59-b845-133a474d725f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"83c6c758-1dd6-447d-8f6c-cd4ce2a677d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultController "msg"="Done with reconcile" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4236" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4238" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4243" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:20:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Set owner reference" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ownerGvk="dataprotection.azure.com/v1api20230101storage, Kind=BackupVault" ownerName="asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="About to send resource to Azure" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Successfully sent resource to Azure" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestpalneo resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestpalneo": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestpalneo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 14e981e3-2cda-4e94-8032-4769edbe6679, UID in object meta: " name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4236" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4245" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4246" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="adding finalizer" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="About to send resource to Azure" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Successfully sent resource to Azure" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4255" generation=1 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4236" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4260" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4261" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4263" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Done with reconcile" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4260" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="About to send resource to Azure" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Successfully sent resource to Azure" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="About to send resource to Azure" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Successfully sent resource to Azure" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4263" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4261" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Resource not created yet, will check again" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Done with reconcile" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4268" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Done with reconcile" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4236" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4263" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4268" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4267" generation=1 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4260" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Got ARM status" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem\",\"identity\":{\"principalId\":\"00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\":{\"principalId\":\"82c92628-80be-4955-b16e-5b472340f13c\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}}},\"location\":\"East US\",\"name\":\"asotestmljpem\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"2\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-05-15T23:49:15.3453236+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestmljpem.mysql.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"standbyAvailabilityZone\":\"\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"replicaCapacity\":10,\"replicationRole\":\"None\",\"state\":\"Ready\",\"storage\":{\"autoGrow\":\"Enabled\",\"iops\":684,\"storageSizeGB\":128,\"storageSku\":\"Premium_LRS\"},\"version\":\"8.0.21\"},\"sku\":{\"name\":\"Standard_D4ds_v4\",\"tier\":\"GeneralPurpose\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Resource successfully created/updated" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Got ARM status" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size\",\"name\":\"query_cache_size\",\"properties\":{\"allowedValues\":\"0,102400-16777216\",\"dataType\":\"Integer\",\"defaultValue\":\"0\",\"description\":\"The amount of memory allocated for caching query results.\",\"source\":\"user-override\",\"value\":\"102400\"},\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Resource successfully created/updated" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Got ARM status" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size\",\"name\":\"query_cache_size\",\"properties\":{\"allowedValues\":\"0,102400-16777216\",\"dataType\":\"Integer\",\"defaultValue\":\"0\",\"description\":\"The amount of memory allocated for caching query results.\",\"source\":\"user-override\",\"value\":\"102400\"},\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4261" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny\",\"location\":\"westus2\",\"name\":\"asotest-rg-dpwtny\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4266" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dataprotection.azure.com/v1api20230101storage", Kind:"BackupVault", Name:"asotestybbdoo", UID:"c67e7052-ff11-4d59-b845-133a474d725f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4273" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Done with reconcile" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4276" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Done with reconcile" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Determined CreateOrUpdate action" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4260" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4273" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4276" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4261" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Resource successfully created/updated" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Got ARM status" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc\",\"name\":\"asotestzudnrc\",\"properties\":{\"charset\":\"latin1\",\"collation\":\"latin1_swedish_ci\"},\"type\":\"Microsoft.DBforMariaDB/servers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4260" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4283" generation=1 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Resource successfully created/updated" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] DatabaseController "msg"="Got ARM status" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct\",\"name\":\"asotestctpcct\",\"properties\":{\"charset\":\"latin1\",\"collation\":\"latin1_swedish_ci\"},\"type\":\"Microsoft.DBforMariaDB/servers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="About to send resource to Azure" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Successfully sent resource to Azure" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Resource successfully created/updated" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4180" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4285" generation=1 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ConfigurationController "msg"="Done with reconcile" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4282" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4284" generation=1 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] BackupVaultsBackupPolicyController "msg"="Got ARM status" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso\",\"name\":\"asotestirwaso\",\"properties\":{\"datasourceTypes\":[\"Microsoft.ContainerService/managedClusters\"],\"objectType\":\"BackupPolicy\",\"policyRules\":[{\"backupParameters\":{\"backupType\":\"Incremental\",\"objectType\":\"AzureBackupParams\"},\"dataStore\":{\"dataStoreType\":\"OperationalStore\",\"objectType\":\"DataStoreInfoBase\"},\"name\":\"BackupHourly\",\"objectType\":\"AzureBackupRule\",\"trigger\":{\"objectType\":\"ScheduleBasedTriggerContext\",\"schedule\":{\"repeatingTimeIntervals\":[\"R/2023-06-07T10:26:32+00:00/PT4H\"],\"timeZone\":\"UTC\"},\"taggingCriteria\":[{\"isDefault\":true,\"tagInfo\":{\"id\":\"Default_\",\"tagName\":\"Default\"},\"taggingPriority\":99}]}},{\"isDefault\":true,\"lifecycles\":[{\"deleteAfter\":{\"duration\":\"P9D\",\"objectType\":\"AbsoluteDeleteOption\"},\"sourceDataStore\":{\"dataStoreType\":\"OperationalStore\",\"objectType\":\"DataStoreInfoBase\"}}],\"name\":\"Default\",\"objectType\":\"AzureRetentionRule\"}]},\"type\":\"Microsoft.DataProtection/backupVaults/backupPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4260" generation=2 uid="4a2313ba-83bb-47f8-84c2-04264886a0f1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4197" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4261" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4290" generation=1 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ConfigurationController "msg"="Done with reconcile" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4182" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Set owner reference" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4189" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4261" generation=2 uid="c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4293" generation=1 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] DatabaseController "msg"="Done with reconcile" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4295" generation=1 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] DatabaseController "msg"="Done with reconcile" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4292" generation=1 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz\",\"location\":\"westus2\",\"name\":\"asotest-rg-yqkoyz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4298" generation=1 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dataprotection.azure.com/v1api20230101storage", Kind:"BackupVault", Name:"asotestybbdoo", UID:"c67e7052-ff11-4d59-b845-133a474d725f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] BackupVaultsBackupPolicyController "msg"="Done with reconcile" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kymszo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4a2313ba-83bb-47f8-84c2-04264886a0f1, UID in object meta: " name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4301" generation=1 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="applying ownership" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="adding finalizer" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotest-rg-frjrtv resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-frjrtv": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotest-rg-frjrtv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248, UID in object meta: " name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotest-rg-frjrtv aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotestfehhun]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4306" generation=1 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/server-admin-pw aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestdnnqvu aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestalhzfe]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="adding finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4305" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4307" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4309" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4310" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4311" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4313" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FactoryController "msg"="Reconcile invoked" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="4320" generation=2 uid="e6a17c37-0df1-482a-add2-48f668227dc8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-frjrtv", UID:"c8ca99ee-c6de-43c6-8b9c-af8d9bfa7248", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4316" generation=1 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4323" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="applying ownership" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FactoryController "msg"="Determined Delete action" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FactoryController "msg"="Starting delete of resource" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FactoryController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FactoryController "msg"="Delete succeeded, removing finalizer" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4145" generation=1 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4330" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4329" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4330" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo does not exist (resourcegroups.resources.azure.com "asotest-rg-kymszo" not found)" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4329" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4322" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4335" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] FactoryController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotestfehhun resource status: Operation cannot be fulfilled on factories.datafactory.azure.com "asotestfehhun": StorageError: invalid object, Code: 4, Key: /registry/datafactory.azure.com/factories/aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotestfehhun, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6a17c37-0df1-482a-add2-48f668227dc8, UID in object meta: " name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="About to send resource to Azure" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Successfully sent resource to Azure" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="adding finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4329" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4335" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4330" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4329" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4331" generation=2 uid="fa479807-c303-44a0-8493-37375e524453" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"4a2313ba-83bb-47f8-84c2-04264886a0f1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Determined Delete action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4345" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4335" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4329" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4345" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4341" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4348" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4347" generation=1 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4330" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf\",\"name\":\"asotestqmmqdf\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Resource not created yet, will check again" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Didn't commit obj as there was no change" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4329" generation=2 uid="05a013ed-4bb6-4496-8eb3-9c31bacc01bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4348" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4347" generation=1 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx resource status: Operation cannot be fulfilled on flexibleservers.dbformysql.azure.com "asotestlnsbgx": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fa479807-c303-44a0-8493-37375e524453, UID in object meta: " name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4345" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Resource not created yet, will check again" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Didn't commit obj as there was no change" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4330" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4345" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4355" generation=1 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4347" generation=1 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4348" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4357" generation=1 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4330" generation=2 uid="35b6c650-e67e-41e9-9d9c-099144b03450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Resource successfully created/updated" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Got ARM status" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\",\"location\":\"westcentralus\",\"name\":\"sampleworkspace\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"b7d8676d-6fe6-4589-9be8-d5c89790f20c\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Resource successfully created/updated" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersAdministratorController "msg"="Got ARM status" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory\",\"name\":\"ActiveDirectory\",\"properties\":{\"administratorType\":\"ActiveDirectory\",\"identityResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\",\"login\":\"adminidentity\",\"sid\":\"c1b02d3e-fa64-4377-b8cf-20f20777e0aa\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/administrators\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/server-admin-pw aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestdbbxnk aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestzudnrc aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4361" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-utxnvo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 05a013ed-4bb6-4496-8eb3-9c31bacc01bf, UID in object meta: " name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4348" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4361" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/server-admin-pw aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestnbqvdi aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestctpcct aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kzergm": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 35b6c650-e67e-41e9-9d9c-099144b03450, UID in object meta: " name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4370" generation=1 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4369" generation=2 uid="ef98dc07-d0fb-414c-8759-6ca68d4baa4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4212" generation=1 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4361" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4348" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4365" generation=1 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4372" generation=1 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc\",\"location\":\"westus2\",\"name\":\"asotest-rg-ilxitc\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo does not exist (resourcegroups.resources.azure.com "asotest-rg-utxnvo" not found)" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4348" generation=2 uid="83c6c758-1dd6-447d-8f6c-cd4ce2a677d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4361" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestdnnqvu resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbformysql.azure.com "asotestdnnqvu": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestdnnqvu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ef98dc07-d0fb-414c-8759-6ca68d4baa4f, UID in object meta: " name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4378" generation=2 uid="45ae2dc8-04d3-44ed-aa41-ae5571495ec8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"fa479807-c303-44a0-8493-37375e524453", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:00 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4213" generation=1 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4383" generation=1 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm does not exist (resourcegroups.resources.azure.com "asotest-rg-kzergm" not found)" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4361" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4376" generation=2 uid="6daf9ebc-53cc-4010-9087-59fc9a967b5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"05a013ed-4bb6-4496-8eb3-9c31bacc01bf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Determined Delete action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotest-rg-bzazxh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bzazxh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotest-rg-bzazxh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 83c6c758-1dd6-447d-8f6c-cd4ce2a677d3, UID in object meta: " name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Starting delete of resource" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Delete succeeded, removing finalizer" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestalhzfe resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbformysql.azure.com "asotestalhzfe": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestalhzfe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 45ae2dc8-04d3-44ed-aa41-ae5571495ec8, UID in object meta: " name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Resource successfully created/updated" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Got ARM status" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\",\"location\":\"westcentralus\",\"name\":\"sampleworkspace\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"8d310f09-9904-436b-a6fe-8f720096231e\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Reconcile invoked" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4384" generation=1 uid="fe5bcd06-1340-496d-b0fa-78fe12c89cea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="applying ownership" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotest-rg-bzazxh aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestybbdoo aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestirwaso]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4382" generation=2 uid="1eebde1f-c8d4-4309-b418-14b61236e32d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"35b6c650-e67e-41e9-9d9c-099144b03450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:02 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] "msg"="Starting envtest" +[controller:test-integration-envtest] 2023/09/08 21:21:05 Creating shared envtest environment: SubscriptionID:8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/TenantID:72f988bf-86f1-41af-91ab-2d7cd011db47/ClientID:954d4203-089b-43a8-b725-0e8fd05d5ced/PodNamespace:/OperatorMode:watchers-and-webhooks/TargetNamespaces:/SyncPeriod:/ResourceManagerEndpoint:https://management.azure.com/ResourceManagerAudience:https://management.core.windows.net//AzureAuthorityHost:https://login.microsoftonline.com//UseWorkloadIdentityAuth:false/Replaying:false +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Determined Delete action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Starting delete of resource" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ServerController "msg"="Delete succeeded, removing finalizer" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Set owner reference" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4339" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm resource status: Operation cannot be fulfilled on servers.dbformariadb.azure.com "asotestrdmhdm": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/servers/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6daf9ebc-53cc-4010-9087-59fc9a967b5d, UID in object meta: " name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo\",\"name\":\"asotesthkinjo\",\"properties\":{\"charset\":\"utf8mb4\",\"collation\":\"utf8mb4_0900_ai_ci\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="adding finalizer" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultController "msg"="Reconcile invoked" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4401" generation=2 uid="c67e7052-ff11-4d59-b845-133a474d725f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"83c6c758-1dd6-447d-8f6c-cd4ce2a677d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] 2023/09/08 21:21:05 Starting envtest +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv resource status: Operation cannot be fulfilled on servers.dbformariadb.azure.com "asotestehjndv": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/servers/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1eebde1f-c8d4-4309-b418-14b61236e32d, UID in object meta: " name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4400" generation=1 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4405" generation=1 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultController "msg"="Determined Delete action" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultController "msg"="Starting delete of resource" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultController "msg"="Delete succeeded, removing finalizer" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4406" generation=2 uid="35255fe4-3f19-4aa3-ab58-a51e4f867bb3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Determined Delete action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Starting delete of resource" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4408" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="updated resource in etcd" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4403" generation=1 uid="fe5bcd06-1340-496d-b0fa-78fe12c89cea" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu"} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Determined CreateOrUpdate action" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] BackupVaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestybbdoo resource status: Operation cannot be fulfilled on backupvaults.dataprotection.azure.com "asotestybbdoo": StorageError: invalid object, Code: 4, Key: /registry/dataprotection.azure.com/backupvaults/aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestybbdoo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c67e7052-ff11-4d59-b845-133a474d725f, UID in object meta: " name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Reconcile invoked" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4414" generation=1 uid="64c54b2e-f5f4-4c2b-a7f6-1f4ec10e7953" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="applying ownership" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4413" generation=2 uid="bb2e7723-3d80-4735-9ed7-0af7298a44ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"6daf9ebc-53cc-4010-9087-59fc9a967b5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="About to send resource to Azure" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4412" generation=2 uid="ced268b0-8369-4a3d-8083-ea6fa02a4744" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Successfully sent resource to Azure" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Resource successfully created/updated" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4343" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Got ARM status" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" status="{\"etag\":\"\\\"e900d832-0000-0200-0000-6427b3820000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/microsoft.insights/components/asotestzqyznu\",\"kind\":\"web\",\"location\":\"westus\",\"name\":\"asotestzqyznu\",\"properties\":{\"AppId\":\"dea9cb1c-63da-4bc7-8ae3-158a574501f9\",\"ApplicationId\":\"asotestzqyznu\",\"Application_Type\":\"other\",\"ConnectionString\":\"InstrumentationKey=cefb1142-f137-4926-9d54-1229a9fbb7a3;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\",\"CreationDate\":\"2023-04-01T04:30:58.1709824+00:00\",\"IngestionMode\":\"LogAnalytics\",\"InstrumentationKey\":\"cefb1142-f137-4926-9d54-1229a9fbb7a3\",\"Name\":\"asotestzqyznu\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"RetentionInDays\":90,\"TenantId\":\"00000000-0000-0000-0000-000000000000\",\"WorkspaceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\"},\"type\":\"microsoft.insights/components\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Determined Delete action" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Starting delete of resource" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections\",\"name\":\"max_connections\",\"properties\":{\"allowedValues\":\"10-2731\",\"currentValue\":\"20\",\"dataType\":\"Integer\",\"defaultValue\":\"1365\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"documentationLink\":\"https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_connections\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\",\"isReadOnly\":\"False\",\"source\":\"user-override\",\"value\":\"20\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Determined Delete action" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Starting delete of resource" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestdbbxnk resource status: Operation cannot be fulfilled on configurations.dbformariadb.azure.com "asotestdbbxnk": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/configurations/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestdbbxnk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 35255fe4-3f19-4aa3-ab58-a51e4f867bb3, UID in object meta: " name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 does not exist (publicipaddresses.network.azure.com "samplepublicipvmss1" not found)" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 does not exist (publicipaddresses.network.azure.com "samplepublicipvmss1" not found)" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4415" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Successfully created resource" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" name="componentconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Set owner reference" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4418" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="4421" generation=2 uid="8c1a5591-8fa8-4203-a421-6998a7a3ce94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"1eebde1f-c8d4-4309-b418-14b61236e32d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Determined Delete action" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Starting delete of resource" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] DatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="adding finalizer" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4428" generation=1 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="4425" generation=2 uid="dac8a0d1-03cb-4f71-8d6a-fa08344b0104" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dataprotection.azure.com/v1api20230101storage", Kind:"BackupVault", Name:"asotestybbdoo", UID:"c67e7052-ff11-4d59-b845-133a474d725f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss1" not found)" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss1" not found)" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] ConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestnbqvdi resource status: Operation cannot be fulfilled on configurations.dbformariadb.azure.com "asotestnbqvdi": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/configurations/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestnbqvdi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ced268b0-8369-4a3d-8083-ea6fa02a4744, UID in object meta: " name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4429" generation=1 uid="e941f223-b066-4625-b487-07954a38b3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultsBackupPolicyController "msg"="Determined Delete action" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultsBackupPolicyController "msg"="Starting delete of resource" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultsBackupPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] BackupVaultsBackupPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4432" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 does not exist (publicipaddresses.network.azure.com \\\"samplepublicipvmss1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:05Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4432" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 does not exist (publicipaddresses.network.azure.com \\\"samplepublicipvmss1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="updated resource in etcd" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4431" generation=1 uid="64c54b2e-f5f4-4c2b-a7f6-1f4ec10e7953" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov"} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="updated resource in etcd" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4434" generation=1 uid="fe5bcd06-1340-496d-b0fa-78fe12c89cea" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:05Z] ComponentController "msg"="Done with reconcile" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] DatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestctpcct resource status: Operation cannot be fulfilled on databases.dbformariadb.azure.com "asotestctpcct": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/databases/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestctpcct, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8c1a5591-8fa8-4203-a421-6998a7a3ce94, UID in object meta: " name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="Determined CreateOrUpdate action" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4443" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4439" generation=1 uid="d964e141-259d-4413-bf4c-6fc60c49b1c7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4443" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] BackupVaultsBackupPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestirwaso resource status: Operation cannot be fulfilled on backupvaultsbackuppolicies.dataprotection.azure.com "asotestirwaso": StorageError: invalid object, Code: 4, Key: /registry/dataprotection.azure.com/backupvaultsbackuppolicies/aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestirwaso, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dac8a0d1-03cb-4f71-8d6a-fa08344b0104, UID in object meta: " name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4446" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4448" generation=2 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="About to send resource to Azure" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="Successfully sent resource to Azure" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="Resource successfully created/updated" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="Got ARM status" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" status="{\"etag\":\"\\\"e900e932-0000-0200-0000-6427b38c0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/microsoft.insights/components/asotestppsmov\",\"kind\":\"web\",\"location\":\"westus\",\"name\":\"asotestppsmov\",\"properties\":{\"AppId\":\"afa9a7bd-062c-4cb0-80e7-f5f185d1371e\",\"ApplicationId\":\"asotestppsmov\",\"Application_Type\":\"other\",\"ConnectionString\":\"InstrumentationKey=57a29aca-9a35-44e3-bb19-4281cdfcf2f2;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\",\"CreationDate\":\"2023-04-01T04:31:08.2533385+00:00\",\"IngestionMode\":\"LogAnalytics\",\"InstrumentationKey\":\"57a29aca-9a35-44e3-bb19-4281cdfcf2f2\",\"Name\":\"asotestppsmov\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"RetentionInDays\":90,\"TenantId\":\"00000000-0000-0000-0000-000000000000\",\"WorkspaceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\"},\"type\":\"microsoft.insights/components\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4447" generation=1 uid="ceb52224-ab92-4b74-9d52-8c1779f70a7b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4449" generation=1 uid="e941f223-b066-4625-b487-07954a38b3ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4446" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4451" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4454" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4461" generation=2 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4456" generation=1 uid="d964e141-259d-4413-bf4c-6fc60c49b1c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4458" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 does not exist (publicipaddresses.network.azure.com \\\"samplepublicipvmss1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="updated resource in etcd" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4462" generation=1 uid="64c54b2e-f5f4-4c2b-a7f6-1f4ec10e7953" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ComponentController "msg"="Done with reconcile" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4465" generation=1 uid="e941f223-b066-4625-b487-07954a38b3ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/0be04cfe-935e-4955-90a0-d9a7a2aa54df?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4466" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4461" generation=2 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4465" generation=1 uid="e941f223-b066-4625-b487-07954a38b3ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/0be04cfe-935e-4955-90a0-d9a7a2aa54df?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4468" generation=1 uid="60091152-1df9-46a7-b0b2-ea8a6ea1f575" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4466" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" status="{\"etag\":\"W/\\\"697a7fcd-e6a8-407e-bcfa-d0ba28fec2db\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss1\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.163.96.81\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"dbf86741-c367-4ec5-a1bf-19230259473e\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4464" generation=1 uid="ceb52224-ab92-4b74-9d52-8c1779f70a7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4461" generation=2 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": [\n {\n \"code\": \"NotFound\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss" not found)" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss" not found)" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4472" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4475" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4461" generation=2 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4474" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4446" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4474" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4446" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4475" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4466" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4479" generation=1 uid="e941f223-b066-4625-b487-07954a38b3ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4480" generation=1 uid="d964e141-259d-4413-bf4c-6fc60c49b1c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9f476256-756e-4f95-ae60-07ab7bebed0c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4466" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4485" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4475" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4461" generation=2 uid="d7452664-5600-4e62-b77f-4bf37d14f623" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4483" generation=2 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4482" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4485" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4480" generation=1 uid="d964e141-259d-4413-bf4c-6fc60c49b1c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9f476256-756e-4f95-ae60-07ab7bebed0c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" status="{\"etag\":\"W/\\\"b8f8b2dc-6f9d-4f85-863e-40e3ac96de76\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss\",\"location\":\"westus3\",\"name\":\"samplevnetvmss\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c6ef20f6-fa5f-443b-87c7-aaff70d4d2a9\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4489" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4475" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4493" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4486" generation=1 uid="60091152-1df9-46a7-b0b2-ea8a6ea1f575" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4495" generation=1 uid="ceb52224-ab92-4b74-9d52-8c1779f70a7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8ca8368-4d60-4523-a24c-30c1ec8de82b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4495" generation=1 uid="ceb52224-ab92-4b74-9d52-8c1779f70a7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8ca8368-4d60-4523-a24c-30c1ec8de82b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4494" generation=1 uid="20079ce8-013f-45ec-8f78-46963789c0c7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotest-rg-dpwtny resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-dpwtny": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotest-rg-dpwtny, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d7452664-5600-4e62-b77f-4bf37d14f623, UID in object meta: " name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4493" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" status="{\"etag\":\"W/\\\"8a44ffbf-593e-4e2d-965b-4fbb5ecd36c8\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1\",\"location\":\"westus3\",\"name\":\"samplevnetvmss1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3b7f3a85-7fbc-4c99-9fbe-7b0df9d44c75\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotest-rg-dpwtny aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/sampleworkspace aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotestzqyznu]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4501" generation=1 uid="59aeae41-f432-4204-b3d1-ac8d76e11730" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4466" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" status="{\"etag\":\"W/\\\"de5f1c85-f2d6-4fad-941e-0fa154915425\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss1\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"de5f1c85-f2d6-4fad-941e-0fa154915425\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"de5f1c85-f2d6-4fad-941e-0fa154915425\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\",\"name\":\"samplenatpoolvmss1\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"00ce8b88-60ab-42ee-8c4b-c65c12da8d34\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4475" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4503" generation=2 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4503" generation=2 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4505" generation=1 uid="d964e141-259d-4413-bf4c-6fc60c49b1c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4506" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4510" generation=2 uid="190a0482-7bf9-4ac8-b469-79f0c5c400a7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4474" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4506" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4512" generation=1 uid="fd951dcf-8770-4e31-8ae9-ee091c77d3b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4514" generation=1 uid="ceb52224-ab92-4b74-9d52-8c1779f70a7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4475" generation=2 uid="12105261-f7cb-48b6-8da3-2de67e650768" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:20:59 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4503" generation=2 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4466" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4474" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] WorkspaceController "msg"="Determined Delete action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] WorkspaceController "msg"="Starting delete of resource" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4516" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4518" generation=1 uid="60091152-1df9-46a7-b0b2-ea8a6ea1f575" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e5a77fd1-1d51-48c5-9da1-cfd8b5224537?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4503" generation=2 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4518" generation=1 uid="60091152-1df9-46a7-b0b2-ea8a6ea1f575" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e5a77fd1-1d51-48c5-9da1-cfd8b5224537?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/sampleworkspace resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "sampleworkspace": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/sampleworkspace, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 190a0482-7bf9-4ac8-b469-79f0c5c400a7, UID in object meta: " name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4523" generation=1 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/server-admin-pw aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/adminidentity aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestnvhdcw aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestakghce aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotesthkinjo aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestqmmqdf]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" status="{\"etag\":\"W/\\\"e9773c31-c641-4f09-b283-768605e47819\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.25.158.152\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"0cf7fb31-04de-45ad-9758-33bc3972d70f\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ihkvec": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 12105261-f7cb-48b6-8da3-2de67e650768, UID in object meta: " name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4526" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4503" generation=2 uid="60ec03f7-6bac-4231-b3c7-d7b358538c08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:03 +0000 UTC" deletionTimestamp="2023-09-08 21:21:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ComponentController "msg"="Reconcile invoked" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4524" generation=2 uid="fe5bcd06-1340-496d-b0fa-78fe12c89cea" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"d7452664-5600-4e62-b77f-4bf37d14f623", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4526" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4520" generation=1 uid="20079ce8-013f-45ec-8f78-46963789c0c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4525" generation=1 uid="59aeae41-f432-4204-b3d1-ac8d76e11730" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ComponentController "msg"="Determined Delete action" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ComponentController "msg"="Starting delete of resource" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ComponentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] ComponentController "msg"="Delete succeeded, removing finalizer" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4282" generation=1 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4531" generation=1 uid="fd951dcf-8770-4e31-8ae9-ee091c77d3b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4533" generation=1 uid="60091152-1df9-46a7-b0b2-ea8a6ea1f575" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4474" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec does not exist (resourcegroups.resources.azure.com "asotest-rg-ihkvec" not found)" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] ComponentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotestzqyznu resource status: Operation cannot be fulfilled on components.insights.azure.com "asotestzqyznu": StorageError: invalid object, Code: 4, Key: /registry/insights.azure.com/components/aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotestzqyznu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fe5bcd06-1340-496d-b0fa-78fe12c89cea, UID in object meta: " name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotest-rg-yqkoyz aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/sampleworkspace aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotestppsmov]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4474" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:07Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotest-rg-yqkoyz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-yqkoyz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotest-rg-yqkoyz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 60ec03f7-6bac-4231-b3c7-d7b358538c08, UID in object meta: " name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4534" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"ceb52224-ab92-4b74-9d52-8c1779f70a7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:07Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4535" generation=2 uid="3d43ebaa-bcd2-4f26-9a86-31c153542f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:01 +0000 UTC" deletionTimestamp="2023-09-08 21:21:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:01 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4536" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"d964e141-259d-4413-bf4c-6fc60c49b1c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] UserAssignedIdentityController "msg"="Determined Delete action" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4544" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" status="{\"etag\":\"W/\\\"a34bc6b2-d860-4586-9c06-b1108cdc04a3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"a34bc6b2-d860-4586-9c06-b1108cdc04a3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"a34bc6b2-d860-4586-9c06-b1108cdc04a3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\",\"name\":\"samplenatpoolvmss\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"33f37d27-4d49-4189-b318-4f9d180dbcb9\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4544" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4548" generation=1 uid="59aeae41-f432-4204-b3d1-ac8d76e11730" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/f175d00c-44c9-4613-9745-a5d1f42062d4?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4549" generation=1 uid="20079ce8-013f-45ec-8f78-46963789c0c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/1135fdd8-6961-476e-b78c-a842d1ec02f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4548" generation=1 uid="59aeae41-f432-4204-b3d1-ac8d76e11730" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/f175d00c-44c9-4613-9745-a5d1f42062d4?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" status="{\"etag\":\"W/\\\"b1de0464-3599-4332-904e-ca93a4f0b58e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1\",\"location\":\"westus3\",\"name\":\"samplevnet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"bd2b3d9f-043d-42c3-bf98-31766a1efd16\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4546" generation=2 uid="8301c400-822a-4141-9130-5fc8aabc21a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"12105261-f7cb-48b6-8da3-2de67e650768", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:03 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/adminidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "adminidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/adminidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3d43ebaa-bcd2-4f26-9a86-31c153542f4c, UID in object meta: " name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="4552" generation=2 uid="395f8ef1-af1d-424d-8bb8-bbafa397c474" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Determined Delete action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] WorkspaceController "msg"="Determined Delete action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] WorkspaceController "msg"="Starting delete of resource" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4549" generation=1 uid="20079ce8-013f-45ec-8f78-46963789c0c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/1135fdd8-6961-476e-b78c-a842d1ec02f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4547" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4557" generation=1 uid="fd951dcf-8770-4e31-8ae9-ee091c77d3b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] ComponentController "msg"="Reconcile invoked" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="4556" generation=2 uid="64c54b2e-f5f4-4c2b-a7f6-1f4ec10e7953" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"60ec03f7-6bac-4231-b3c7-d7b358538c08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" status="{\"etag\":\"W/\\\"fba70906-7ff8-4992-804e-06cb35e1606c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westus3\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7d6d5752-4558-48a4-84c1-69134f9a5591\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] ComponentController "msg"="Determined Delete action" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] ComponentController "msg"="Starting delete of resource" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] ComponentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] ComponentController "msg"="Delete succeeded, removing finalizer" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4500" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4564" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"ceb52224-ab92-4b74-9d52-8c1779f70a7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2cc50a8d-dcb6-42d4-9532-fe458e04b557?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4563" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"d964e141-259d-4413-bf4c-6fc60c49b1c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9022851a-beff-4cd4-83d0-c673e88ef33d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" status="{\"etag\":\"W/\\\"125f4f47-8a19-4b38-8a4d-64168c925e87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss\",\"location\":\"westus3\",\"name\":\"samplenicvmss\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"4yqo5rs55i3ujb4hvl5xbvgsvb.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"125f4f47-8a19-4b38-8a4d-64168c925e87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e42bd92c-f167-423e-a51a-ef6e2b63f668\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4568" generation=1 uid="59aeae41-f432-4204-b3d1-ac8d76e11730" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4564" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"ceb52224-ab92-4b74-9d52-8c1779f70a7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2cc50a8d-dcb6-42d4-9532-fe458e04b557?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem resource status: Operation cannot be fulfilled on flexibleservers.dbformysql.azure.com "asotestmljpem": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8301c400-822a-4141-9130-5fc8aabc21a0, UID in object meta: " name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" status="{\"etag\":\"W/\\\"5e808387-ed30-4a17-b467-e70b78324237\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\",\"name\":\"samplesubnetvmss1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/sampleworkspace resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "sampleworkspace": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/sampleworkspace, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 395f8ef1-af1d-424d-8bb8-bbafa397c474, UID in object meta: " name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4562" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:08Z] ComponentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotestppsmov resource status: Operation cannot be fulfilled on components.insights.azure.com "asotestppsmov": StorageError: invalid object, Code: 4, Key: /registry/insights.azure.com/components/aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotestppsmov, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 64c54b2e-f5f4-4c2b-a7f6-1f4ec10e7953, UID in object meta: " name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4563" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"d964e141-259d-4413-bf4c-6fc60c49b1c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9022851a-beff-4cd4-83d0-c673e88ef33d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" status="{\"etag\":\"W/\\\"05cabb96-2320-4172-9e47-0f36d6a67291\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\",\"name\":\"samplesubnetvmss\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4573" generation=1 uid="20079ce8-013f-45ec-8f78-46963789c0c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:08Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4544" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" status="{\"etag\":\"W/\\\"e554d84d-ec0a-4a67-8a7d-157d45d87640\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1\",\"location\":\"westus3\",\"name\":\"samplenicvmss1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"qu3h4o32p4muzh34pmg5tvcmof.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"e554d84d-ec0a-4a67-8a7d-157d45d87640\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"af2e4145-ec8d-4e3a-a8b4-10466ff7384c\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4575" generation=2 uid="d58360e0-4906-415e-9b5b-659cff4ab239" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4544" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersAdministratorController "msg"="Determined Delete action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersAdministratorController "msg"="Starting delete of resource" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersAdministratorController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersAdministratorController "msg"="Delete succeeded, removing finalizer" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4578" generation=1 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4580" generation=1 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"d964e141-259d-4413-bf4c-6fc60c49b1c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4491" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4579" generation=1 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"ceb52224-ab92-4b74-9d52-8c1779f70a7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4581" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"59aeae41-f432-4204-b3d1-ac8d76e11730", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4586" generation=1 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="4585" generation=2 uid="bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:09 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:09Z] FlexibleServersAdministratorController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestnvhdcw resource status: Operation cannot be fulfilled on flexibleserversadministrators.dbformysql.azure.com "asotestnvhdcw": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversadministrators/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestnvhdcw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d58360e0-4906-415e-9b5b-659cff4ab239, UID in object meta: " name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4589" generation=2 uid="0882ea04-d557-46e9-a5a7-bf6af938eaf1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:09 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:09Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestakghce resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbformysql.azure.com "asotestakghce": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestakghce, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bd8566bf-5ca1-4d2d-8f17-5ed3b1620b05, UID in object meta: " name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="4594" generation=2 uid="58f0407d-875e-4513-a3eb-11ad539e75ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"8301c400-822a-4141-9130-5fc8aabc21a0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:02 +0000 UTC" deletionTimestamp="2023-09-08 21:21:09 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:04 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4544" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4544" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:09Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotesthkinjo resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbformysql.azure.com "asotesthkinjo": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotesthkinjo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0882ea04-d557-46e9-a5a7-bf6af938eaf1, UID in object meta: " name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4598" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"20079ce8-013f-45ec-8f78-46963789c0c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4593" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4603" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"59aeae41-f432-4204-b3d1-ac8d76e11730", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8494d33-39ac-4525-8e38-c361730c0ac8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" status="{\"etag\":\"W/\\\"75a3aa5c-b7a9-4c3a-968a-dda64ebc09e7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1\",\"location\":\"westus3\",\"name\":\"samplenic1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"t24sxpj3atbufp2ygf1guhx3cg.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"75a3aa5c-b7a9-4c3a-968a-dda64ebc09e7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a51e1e6c-88d2-4f86-9cb9-6947411dd0f8\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4603" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"59aeae41-f432-4204-b3d1-ac8d76e11730", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8494d33-39ac-4525-8e38-c361730c0ac8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" status="{\"etag\":\"W/\\\"5c379cf0-b496-47ea-891f-5859c7bd061b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\",\"name\":\"samplesubnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4612" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"20079ce8-013f-45ec-8f78-46963789c0c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/309672d6-ab48-474b-b96f-2c5e56c1c8a5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4612" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"20079ce8-013f-45ec-8f78-46963789c0c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/309672d6-ab48-474b-b96f-2c5e56c1c8a5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" status="{\"etag\":\"W/\\\"b2d3582e-35b5-4634-a4be-d6b566eec7f9\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4616" generation=1 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4615" generation=1 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"59aeae41-f432-4204-b3d1-ac8d76e11730", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4609" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" status="{\"etag\":\"W/\\\"155f7abd-87b8-4fce-8e88-477d5e22f603\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westus3\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"kjlw05kyiwserbgbneju5gsvsb.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"155f7abd-87b8-4fce-8e88-477d5e22f603\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7f119eed-fd28-4602-9ea1-61eaaab98832\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4623" generation=1 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"20079ce8-013f-45ec-8f78-46963789c0c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4628" generation=1 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:09Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4648" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4652" generation=1 uid="5f2e2236-535c-45c6-950e-62b268adf6a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="applying ownership" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4654" generation=1 uid="41269a21-ee88-48b7-89b8-b9233a00c5b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="applying ownership" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Set owner reference" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Set owner reference" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="adding finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4658" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="applying ownership" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="adding finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="Set owner reference" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4659" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4664" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4662" generation=1 uid="41269a21-ee88-48b7-89b8-b9233a00c5b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4665" generation=1 uid="5f2e2236-535c-45c6-950e-62b268adf6a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="adding finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="About to send resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4669" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="applying ownership" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Successfully sent resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="About to send resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Successfully sent resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4676" generation=1 uid="df176754-59a7-40dc-a878-32bbfca199bf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="applying ownership" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4679" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/21f534d8-6d18-4dcb-a866-a4f727b1dbe5?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4683" generation=1 uid="5f2e2236-535c-45c6-950e-62b268adf6a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4684" generation=1 uid="41269a21-ee88-48b7-89b8-b9233a00c5b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4682" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="applying ownership" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4679" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/21f534d8-6d18-4dcb-a866-a4f727b1dbe5?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4674" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4683" generation=1 uid="5f2e2236-535c-45c6-950e-62b268adf6a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Resource successfully created/updated" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Got ARM status" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk\",\"location\":\"westus3\",\"name\":\"sampledisk\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"diskSizeBytes\":536870912000,\"diskSizeGB\":500,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:01.1789003+00:00\",\"uniqueId\":\"3f064459-6ffb-4177-831e-9dfe46d0276c\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/disks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4684" generation=1 uid="41269a21-ee88-48b7-89b8-b9233a00c5b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Resource successfully created/updated" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] SnapshotController "msg"="Got ARM status" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\",\"location\":\"westus2\",\"name\":\"aso-sample-snapshot\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeBytes\":34359738368,\"diskSizeGB\":32,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:01.1769828+00:00\",\"uniqueId\":\"af42ef56-821b-45b8-99c3-4984c38ec63e\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/snapshots\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="Set owner reference" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1\",\"location\":\"westus3\",\"name\":\"samplevmss1\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"timeCreated\":\"2023-07-10T22:16:01.3313665+00:00\",\"uniqueId\":\"7f8d2d08-bb72-46d1-9886-702743e61073\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"extensionProfile\":{\"extensions\":[{\"name\":\"mycustomextension\",\"properties\":{\"autoUpgradeMinorVersion\":false,\"publisher\":\"Microsoft.Azure.Extensions\",\"settings\":{\"commandToExecute\":\"/bin/bash -c \\\"echo hello\\\"\"},\"type\":\"CustomScript\",\"typeHandlerVersion\":\"2.0\"}}]},\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"mynicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"myipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"STANDARD_D1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="About to send resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4688" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4685" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineController "msg"="adding finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4696" generation=1 uid="5f2e2236-535c-45c6-950e-62b268adf6a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Resource creation/update failure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE: NotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"NotFound\",\n \"message\": \"The entity was not found in this Azure location.\",\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:10Z] ImageController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE: NotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "The entity was not found in this Azure location.", +[controller:test-integration-envtest] "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4693" generation=1 uid="df176754-59a7-40dc-a878-32bbfca199bf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:10Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4703" generation=1 uid="41269a21-ee88-48b7-89b8-b9233a00c5b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4704" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4706" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/53547889-52c4-4bd6-bb25-9f16a3ffb78d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4702" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4708" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Encountered error, re-queuing..." name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4706" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/53547889-52c4-4bd6-bb25-9f16a3ffb78d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Resource successfully created/updated" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Got ARM status" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm\",\"location\":\"westus3\",\"name\":\"samplevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/samplevm_OsDisk_1_329a25f2ce894daf9aba556a0eb242db\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"samplevm_OsDisk_1_329a25f2ce894daf9aba556a0eb242db\",\"osType\":\"Linux\"}},\"vmId\":\"b2fb5bd6-0bd4-4691-889e-453b87ffbfae\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4708" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="About to send resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4715" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/e918d367-2077-44fe-ac6e-880f64c9136d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4717" generation=1 uid="df176754-59a7-40dc-a878-32bbfca199bf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/59f5de06-c6a3-424b-981d-8e6f6051b9b5?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4715" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/e918d367-2077-44fe-ac6e-880f64c9136d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4717" generation=1 uid="df176754-59a7-40dc-a878-32bbfca199bf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/59f5de06-c6a3-424b-981d-8e6f6051b9b5?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20220301\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss\",\"location\":\"westus3\",\"name\":\"samplevmss\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"uniqueId\":\"f9550588-2eec-48df-b71e-188def1ba6c4\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"samplenicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"sampleipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"standard_d1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4725" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/d55abd0c-a51c-4c32-a69c-096ddd996a16?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4727" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4723" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/263fccac-04aa-4483-a19f-5ef8deb296a7?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4725" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/d55abd0c-a51c-4c32-a69c-096ddd996a16?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4723" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/263fccac-04aa-4483-a19f-5ef8deb296a7?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Resource successfully created/updated" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20210701\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Got ARM status" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm\",\"location\":\"westus3\",\"name\":\"aso-sample-vm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"assessmentMode\":\"ImageDefault\",\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"deleteOption\":\"Detach\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/aso-sample-vm_OsDisk_1_860a13748ead44bf9630032a445d3033\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"aso-sample-vm_OsDisk_1_860a13748ead44bf9630032a445d3033\",\"osType\":\"Linux\"}},\"timeCreated\":\"2023-07-10T22:16:01.4720363+00:00\",\"vmId\":\"4c99cff5-0d5c-4485-9839-cd761d20da00\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4732" generation=1 uid="df176754-59a7-40dc-a878-32bbfca199bf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4734" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4742" generation=1 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4744" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4751" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:05 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4763" generation=2 uid="bd428fff-8688-404e-b59e-7ff230ee25de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:04 +0000 UTC" deletionTimestamp="2023-09-08 21:21:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:11Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ilxitc": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bd428fff-8688-404e-b59e-7ff230ee25de, UID in object meta: " name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sample-vmss-secret aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampledisk aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-snapshot aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevm aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20210701 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20220301 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vm]... +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4704" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4734" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4727" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4744" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4827" generation=2 uid="e99e3065-b9ab-4d15-a96f-d643e3aca464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4830" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4830" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4833" generation=2 uid="e6978733-7e3b-4616-bf40-cd0913656b35" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss1 resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e99e3065-b9ab-4d15-a96f-d643e3aca464, UID in object meta: " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4839" generation=2 uid="403fc133-9cbb-450c-bd26-fcdc45da66e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6978733-7e3b-4616-bf40-cd0913656b35, UID in object meta: " name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4845" generation=2 uid="e941f223-b066-4625-b487-07954a38b3ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 403fc133-9cbb-450c-bd26-fcdc45da66e2, UID in object meta: " name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4849" generation=2 uid="d964e141-259d-4413-bf4c-6fc60c49b1c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:05 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4830" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4830" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e941f223-b066-4625-b487-07954a38b3ae, UID in object meta: " name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4853" generation=2 uid="ceb52224-ab92-4b74-9d52-8c1779f70a7b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:06 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d964e141-259d-4413-bf4c-6fc60c49b1c7, UID in object meta: " name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4857" generation=2 uid="9ad4902b-7619-4e38-80d2-685bc7bb8407" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ceb52224-ab92-4b74-9d52-8c1779f70a7b, UID in object meta: " name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4859" generation=2 uid="60091152-1df9-46a7-b0b2-ea8a6ea1f575" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:07 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:12Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9ad4902b-7619-4e38-80d2-685bc7bb8407, UID in object meta: " name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4864" generation=2 uid="20079ce8-013f-45ec-8f78-46963789c0c7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4830" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4867" generation=2 uid="59aeae41-f432-4204-b3d1-ac8d76e11730" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:12Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4830" generation=1 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 60091152-1df9-46a7-b0b2-ea8a6ea1f575, UID in object meta: " name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4872" generation=2 uid="fd951dcf-8770-4e31-8ae9-ee091c77d3b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:12 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 20079ce8-013f-45ec-8f78-46963789c0c7, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4880" generation=2 uid="270a218a-f320-4613-9f8d-c8e42868e773" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 59aeae41-f432-4204-b3d1-ac8d76e11730, UID in object meta: " name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fd951dcf-8770-4e31-8ae9-ee091c77d3b5, UID in object meta: " name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 270a218a-f320-4613-9f8d-c8e42868e773, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4887" generation=2 uid="b04aed62-a7b6-4f0b-b92e-cbe441d1671b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4893" generation=2 uid="5f2e2236-535c-45c6-950e-62b268adf6a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] DiskController "msg"="Determined Delete action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] DiskController "msg"="Starting delete of resource" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] DiskController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] DiskController "msg"="Delete succeeded, removing finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4898" generation=2 uid="41269a21-ee88-48b7-89b8-b9233a00c5b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:10 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] SnapshotController "msg"="Determined Delete action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] SnapshotController "msg"="Starting delete of resource" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] SnapshotController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] SnapshotController "msg"="Delete succeeded, removing finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4834" generation=1 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] DiskController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampledisk resource status: Operation cannot be fulfilled on disks.compute.azure.com "sampledisk": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/disks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampledisk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5f2e2236-535c-45c6-950e-62b268adf6a8, UID in object meta: " name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4903" generation=2 uid="eca5dad6-4188-4ea9-9c5d-ec6288b10019" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4832" generation=1 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined Delete action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Starting delete of resource" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] SnapshotController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-snapshot resource status: Operation cannot be fulfilled on snapshots.compute.azure.com "aso-sample-snapshot": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/snapshots/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-snapshot, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 41269a21-ee88-48b7-89b8-b9233a00c5b9, UID in object meta: " name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss1 resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss1": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b04aed62-a7b6-4f0b-b92e-cbe441d1671b, UID in object meta: " name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4909" generation=2 uid="a0497e55-1a86-42e7-a5bb-f81a8e152677" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "samplevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eca5dad6-4188-4ea9-9c5d-ec6288b10019, UID in object meta: " name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4916" generation=2 uid="6b74a665-c8bf-4a42-80ac-280a0c816f30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a0497e55-1a86-42e7-a5bb-f81a8e152677, UID in object meta: " name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4921" generation=2 uid="df176754-59a7-40dc-a878-32bbfca199bf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:11 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20210701 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20210701": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20210701, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6b74a665-c8bf-4a42-80ac-280a0c816f30, UID in object meta: " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4838" generation=1 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20220301 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20220301": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20220301, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: df176754-59a7-40dc-a878-32bbfca199bf, UID in object meta: " name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4929" generation=2 uid="3c927bca-2221-4d43-a27b-f5e5e3e96579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"bd428fff-8688-404e-b59e-7ff230ee25de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:10 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:12 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Determined Delete action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Starting delete of resource" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "aso-sample-vm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3c927bca-2221-4d43-a27b-f5e5e3e96579, UID in object meta: " name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4948" generation=2 uid="81818370-e50e-4487-aeb0-afe7a7ac0095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"d964e141-259d-4413-bf4c-6fc60c49b1c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4953" generation=2 uid="8dcbce25-6dc8-4e84-a954-e63e0203c881" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"ceb52224-ab92-4b74-9d52-8c1779f70a7b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:08 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 81818370-e50e-4487-aeb0-afe7a7ac0095, UID in object meta: " name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:13Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8dcbce25-6dc8-4e84-a954-e63e0203c881, UID in object meta: " name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4966" generation=2 uid="e83f61c6-9024-44ea-8a03-70ffc188da5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"59aeae41-f432-4204-b3d1-ac8d76e11730", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4962" generation=2 uid="28a56ad2-7810-46a5-bec3-f409679de0ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"20079ce8-013f-45ec-8f78-46963789c0c7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:06 +0000 UTC" deletionTimestamp="2023-09-08 21:21:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:09 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e83f61c6-9024-44ea-8a03-70ffc188da5b, UID in object meta: " name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:14Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 28a56ad2-7810-46a5-bec3-f409679de0ba, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:14Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:21:47 Creating & starting controller-runtime manager +[controller:test-integration-envtest] 2023/09/08 21:21:47 Waiting for webhook server to start +[controller:test-integration-envtest] 2023/09/08 21:21:47 Webhook server started +[controller:test-integration-envtest] 2023/09/08 21:21:47 Waiting for watchers to start +[controller:test-integration-envtest] 2023/09/08 21:21:51 Watchers started +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5761" generation=1 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5764" generation=1 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5771" generation=1 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5770" generation=1 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5772" generation=1 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:51Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5773" generation=1 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5767" generation=1 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg\",\"location\":\"westus2\",\"name\":\"asotest-rg-dwrfmg\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa\",\"location\":\"westus2\",\"name\":\"asotest-rg-stutqa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5777" generation=1 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa\",\"location\":\"westus2\",\"name\":\"asotest-rg-wytwwa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5778" generation=1 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs\",\"location\":\"westus2\",\"name\":\"asotest-rg-kitaqs\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5779" generation=1 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5782" generation=1 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy\",\"location\":\"westus2\",\"name\":\"asotest-rg-eysbsy\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5774" generation=1 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5787" generation=1 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5788" generation=1 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5783" generation=1 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5786" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] WorkspaceController "msg"="applying ownership" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5791" generation=1 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5796" generation=1 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5794" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] StorageAccountController "msg"="applying ownership" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5792" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5790" generation=1 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] StorageAccountController "msg"="Set owner reference" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5799" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5795" generation=1 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:52Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:52Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj\",\"location\":\"westus2\",\"name\":\"asotest-rg-igztjj\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb\",\"location\":\"westus2\",\"name\":\"asotest-rg-dvxsxb\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:52Z] WorkspaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault does not exist (vaults.keyvault.azure.com "mlworkspaces-vault" not found)" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:52Z] WorkspaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault does not exist (vaults.keyvault.azure.com "mlworkspaces-vault" not found)" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5800" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ContainerGroupController "msg"="applying ownership" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] RegistryController "msg"="Reconcile invoked" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5802" generation=1 uid="c53a8a40-3e09-47eb-9025-870c7db754b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] StorageAccountController "msg"="adding finalizer" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] RegistryController "msg"="applying ownership" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] RegistryController "msg"="Set owner reference" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5805" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:52Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="Set owner reference" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kitaqs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5813" generation=1 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5808" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="applying ownership" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="Set owner reference" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="adding finalizer" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5812" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5809" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5811" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5818" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault does not exist (vaults.keyvault.azure.com \\\"mlworkspaces-vault\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] WorkspaceController "msg"="Encountered error, re-queuing..." name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="adding finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5819" generation=1 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="adding finalizer" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="About to send resource to Azure" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5818" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault does not exist (vaults.keyvault.azure.com \\\"mlworkspaces-vault\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] WorkspaceController "msg"="applying ownership" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5826" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="Reconcile invoked" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5825" generation=1 uid="10b66c99-76ee-47b4-9230-65de8fb75cb2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="applying ownership" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5820" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5823" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5832" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="applying ownership" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="About to send resource to Azure" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="updated resource in etcd" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5830" generation=1 uid="c53a8a40-3e09-47eb-9025-870c7db754b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-wytwwa", UID:"b9991ad8-18fa-460a-9bae-84b1b6347c6c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl"} conditions="[]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="Set owner reference" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="Successfully sent resource to Azure" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="About to send resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] VaultController "msg"="Successfully sent resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="Determined CreateOrUpdate action" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="Set owner reference" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-igztjj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="adding finalizer" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5837" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5837" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] WorkspaceController "msg"="adding finalizer" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="About to send resource to Azure" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="Successfully sent resource to Azure" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="Resource successfully created/updated" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] RegistryController "msg"="Got ARM status" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl\",\"location\":\"westcentralus\",\"name\":\"asotestiimvtl\",\"properties\":{\"adminUserEnabled\":false,\"creationDate\":\"2001-02-03T04:05:06Z\",\"dataEndpointEnabled\":false,\"encryption\":{\"status\":\"disabled\"},\"loginServer\":\"asotestiimvtl.azurecr.io\",\"networkRuleBypassOptions\":\"AzureServices\",\"policies\":{\"exportPolicy\":{\"status\":\"enabled\"},\"quarantinePolicy\":{\"status\":\"disabled\"},\"retentionPolicy\":{\"days\":7,\"lastUpdatedTime\":\"2023-03-23T23:06:46.4220132+00:00\",\"status\":\"disabled\"},\"trustPolicy\":{\"status\":\"disabled\",\"type\":\"Notary\"}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"zoneRedundancy\":\"Disabled\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2023-03-23T23:06:34.1618446+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2023-03-23T23:06:34.1618446+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.ContainerRegistry/registries\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="adding finalizer" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:53Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5843" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5837" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:53Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5847" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5843" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5837" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5847" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="updated resource in etcd" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5845" generation=1 uid="10b66c99-76ee-47b4-9230-65de8fb75cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dvxsxb", UID:"0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs"} conditions="[]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5843" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="Determined CreateOrUpdate action" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="updated resource in etcd" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5854" generation=1 uid="c53a8a40-3e09-47eb-9025-870c7db754b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-wytwwa", UID:"b9991ad8-18fa-460a-9bae-84b1b6347c6c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="Done with reconcile" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5847" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5849" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5837" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5851" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault does not exist (vaults.keyvault.azure.com \\\"mlworkspaces-vault\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="About to send resource to Azure" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="Successfully sent resource to Azure" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="Resource successfully created/updated" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="Got ARM status" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs\",\"location\":\"westcentralus\",\"name\":\"asotesthfdfzs\",\"properties\":{\"adminUserEnabled\":false,\"creationDate\":\"2001-02-03T04:05:06Z\",\"dataEndpointEnabled\":false,\"encryption\":{\"status\":\"disabled\"},\"loginServer\":\"asotesthfdfzs.azurecr.io\",\"networkRuleBypassOptions\":\"AzureServices\",\"policies\":{\"exportPolicy\":{\"status\":\"enabled\"},\"quarantinePolicy\":{\"status\":\"disabled\"},\"retentionPolicy\":{\"days\":7,\"lastUpdatedTime\":\"2022-10-19T18:38:35.6581483+00:00\",\"status\":\"disabled\"},\"trustPolicy\":{\"status\":\"disabled\",\"type\":\"Notary\"}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"zoneRedundancy\":\"Disabled\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2022-10-19T18:38:34.3081356+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2022-10-19T18:38:34.3081356+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.ContainerRegistry/registries\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Resource successfully created/updated" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Got ARM status" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct\",\"kind\":\"BlobStorage\",\"location\":\"westus3\",\"name\":\"asoworkspacestorageacct\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asoworkspacestorageacct.blob.core.windows.net/\",\"dfs\":\"https://asoworkspacestorageacct.dfs.core.windows.net/\",\"table\":\"https://asoworkspacestorageacct.table.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5843" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5847" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Resource successfully created/updated" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Got ARM status" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft\",\"location\":\"westcentralus\",\"name\":\"asotestqhvcft\",\"properties\":{\"containers\":[{\"name\":\"samplecontainergroup\",\"properties\":{\"image\":\"mcr.microsoft.com/azuredocs/aci-helloworld\",\"instanceView\":{\"currentState\":{\"detailStatus\":\"\",\"startTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Running\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2001-02-03T04:05:06Z\",\"lastTimestamp\":\"2001-02-03T04:05:06Z\",\"message\":\"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:565dba8ce20ca1a311c2d9485089d7ddc935dd50140510050345a1b0ea4ffa6e\\\"\",\"name\":\"Pulled\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2001-02-03T04:05:06Z\",\"lastTimestamp\":\"2001-02-03T04:05:06Z\",\"message\":\"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:565dba8ce20ca1a311c2d9485089d7ddc935dd50140510050345a1b0ea4ffa6e\\\"\",\"name\":\"Pulling\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2001-02-03T04:05:06Z\",\"lastTimestamp\":\"2001-02-03T04:05:06Z\",\"message\":\"Started container\",\"name\":\"Started\",\"type\":\"Normal\"}],\"restartCount\":0},\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"resources\":{\"requests\":{\"cpu\":1,\"memoryInGB\":2}}}}],\"instanceView\":{\"state\":\"Running\"},\"ipAddress\":{\"ip\":\"20.69.43.125\",\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"type\":\"Public\"},\"osType\":\"Linux\",\"provisioningState\":\"Succeeded\",\"restartPolicy\":\"Always\",\"sku\":\"Standard\"},\"type\":\"Microsoft.ContainerInstance/containerGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="About to send resource to Azure" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Successfully sent resource to Azure" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5856" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5847" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="updated resource in etcd" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5862" generation=1 uid="10b66c99-76ee-47b4-9230-65de8fb75cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dvxsxb", UID:"0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] RegistryController "msg"="Done with reconcile" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Resource successfully created/updated" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] VaultController "msg"="Got ARM status" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault\",\"location\":\"westus3\",\"name\":\"mlworkspaces-vault\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"1c793267-c310-d4ae-7bd5-5af5bef875d3\",\"objectId\":\"1C793267-c310-d4ae-7BD5-5Af5BEF875D3\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://mlworkspaces-vault.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5865" generation=1 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5869" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5870" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5871" generation=1 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5869" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5870" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5875" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5877" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5869" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5879" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5875" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5870" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5869" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:54Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5838" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5875" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:54Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5870" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5869" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster\",\"identity\":{\"principalId\":\"9f28b6f3-6d3c-44e7-abc8-f9175e7323c8\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-0in09dl7.portal.hcp.westus3.azmk8s.io\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-0in09dl7.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"3807bf12-dbff-4125-9cf8-7acc98d45454\",\"objectId\":\"cc6cdde9-1c82-4ffe-9006-67ac34e99240\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-stutqa_samplemanagedcluster_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster-agentpool\"}},\"kubernetesVersion\":\"1.24.9\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"loadBalancerProfile\":{\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-stutqa_samplemanagedcluster_westus3/providers/Microsoft.Network/publicIPAddresses/02588e8b-ba5e-4402-9c32-c2a8353e1084\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"serviceCidr\":\"10.0.0.0/16\"},\"nodeResourceGroup\":\"MC_asotest-rg-stutqa_samplemanagedcluster_westus3\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"servicePrincipalProfile\":{\"clientId\":\"msi\"}},\"sku\":{\"name\":\"Basic\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5883" generation=1 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5870" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5875" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5852" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5887" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5888" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221\",\"identity\":{\"principalId\":\"d97718c8-e865-4fe7-9d43-15478650d265\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster202221\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"currentOrchestratorVersion\":\"1.24.9\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-i4cs3mmm.portal.hcp.westus3.azmk8s.io\",\"currentKubernetesVersion\":\"1.24.9\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-i4cs3mmm.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"69d28122-99cc-439c-a8d7-b8701acee60f\",\"objectId\":\"e89a13c7-871a-4206-aba6-3677740c9f6b\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-eysbsy_samplemanagedcluster202221_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster202221-agentpool\"}},\"kubernetesVersion\":\"1.24.9\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"ipFamilies\":[\"IPv4\"],\"loadBalancerProfile\":{\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-eysbsy_samplemanagedcluster202221_westus3/providers/Microsoft.Network/publicIPAddresses/163f980e-69b7-4afa-af46-0bab567ae739\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"podCidrs\":[\"10.244.0.0/16\"],\"serviceCidr\":\"10.0.0.0/16\",\"serviceCidrs\":[\"10.0.0.0/16\"]},\"nodeResourceGroup\":\"MC_asotest-rg-eysbsy_samplemanagedcluster202221_westus3\",\"oidcIssuerProfile\":{\"enabled\":false},\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"securityProfile\":{},\"servicePrincipalProfile\":{\"clientId\":\"msi\"},\"storageProfile\":{\"diskCSIDriver\":{\"enabled\":true},\"fileCSIDriver\":{\"enabled\":true},\"snapshotController\":{\"enabled\":true}},\"workloadAutoScalerProfile\":{}},\"sku\":{\"name\":\"Base\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5888" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5887" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5870" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5869" generation=2 uid="b9991ad8-18fa-460a-9bae-84b1b6347c6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Resource successfully created/updated" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Got ARM status" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs\",\"location\":\"westcentralus\",\"name\":\"asotestuqgifs\",\"properties\":{\"containers\":[{\"name\":\"samplecontainergroup\",\"properties\":{\"image\":\"mcr.microsoft.com/azuredocs/aci-helloworld\",\"instanceView\":{\"currentState\":{\"detailStatus\":\"\",\"startTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Running\"},\"restartCount\":0},\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"resources\":{\"requests\":{\"cpu\":1,\"memoryInGB\":2}}}}],\"instanceView\":{\"state\":\"Running\"},\"ipAddress\":{\"ip\":\"20.165.155.237\",\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"type\":\"Public\"},\"osType\":\"Linux\",\"provisioningState\":\"Succeeded\",\"restartPolicy\":\"Always\",\"sku\":\"Standard\"},\"type\":\"Microsoft.ContainerInstance/containerGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5875" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Resource creation/update failure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: BadRequest\n--------------------------------------------------------------------------------\n{\n \"status\": \"Failed\",\n \"error\": {\n \"code\": \"BadRequest\",\n \"message\": \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Classifying CloudError" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" Message="Conflict response body: {\"error\":{\"code\":\"StorageAccountIsNotProvisioned\",\"message\":\"The storage account provisioning state must be 'Succeeded' before executing the operation.\"}}" Code="BadRequest" Target="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="CloudError classified" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" Classification="retryable" Code="BadRequest" Message="Conflict response body: {\"error\":{\"code\":\"StorageAccountIsNotProvisioned\",\"message\":\"The storage account provisioning state must be 'Succeeded' before executing the operation.\"}}" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: BadRequest, Severity: Warning, RetryClassification: RetrySlow, Cause: Conflict response body: {"error":{"code":"StorageAccountIsNotProvisioned","message":"The storage account provisioning state must be 'Succeeded' before executing the operation."}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: BadRequest +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "BadRequest", +[controller:test-integration-envtest] "message": "Conflict response body: {\"error\":{\"code\":\"StorageAccountIsNotProvisioned\",\"message\":\"The storage account provisioning state must be 'Succeeded' before executing the operation.\"}}" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5888" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5887" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5887" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotest-rg-wytwwa aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotestiimvtl]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5888" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5897" generation=1 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotest-rg-wytwwa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-wytwwa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotest-rg-wytwwa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b9991ad8-18fa-460a-9bae-84b1b6347c6c, UID in object meta: " name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5887" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5888" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5900" generation=1 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5902" generation=1 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5903" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Encountered error, re-queuing..." name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5887" generation=2 uid="0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5807" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5903" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5888" generation=2 uid="b2a05dda-5f56-4da9-9020-68c3d5feda56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5905" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:55Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5828" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Reconcile invoked" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5908" generation=2 uid="c53a8a40-3e09-47eb-9025-870c7db754b5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-wytwwa", UID:"b9991ad8-18fa-460a-9bae-84b1b6347c6c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotest-rg-dvxsxb resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-dvxsxb": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotest-rg-dvxsxb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0, UID in object meta: " name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Determined Delete action" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Starting delete of resource" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotest-rg-kitaqs aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotestqhvcft]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Delete succeeded, removing finalizer" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotest-rg-dvxsxb aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotesthfdfzs]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotest-rg-kitaqs resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kitaqs": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotest-rg-kitaqs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b2a05dda-5f56-4da9-9020-68c3d5feda56, UID in object meta: " name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5913" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5920" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5920" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5920" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Reconcile invoked" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="5924" generation=2 uid="10b66c99-76ee-47b4-9230-65de8fb75cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dvxsxb", UID:"0175c2fe-106c-405b-ba3d-3e3ea6f6a9f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp="2023-09-08 21:21:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Determined Delete action" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Starting delete of resource" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] RegistryController "msg"="Delete succeeded, removing finalizer" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5925" generation=2 uid="5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"b2a05dda-5f56-4da9-9020-68c3d5feda56", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5917" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ContainerGroupController "msg"="Determined Delete action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ContainerGroupController "msg"="Starting delete of resource" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ContainerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ContainerGroupController "msg"="Delete succeeded, removing finalizer" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5927" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:53 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5920" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5917" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5917" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5934" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5920" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5934" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5920" generation=2 uid="a9a80c7a-eacb-4839-9d1f-8c4d6e86de74" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:21:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5934" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5939" generation=1 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:56Z] ContainerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotestqhvcft resource status: Operation cannot be fulfilled on containergroups.containerinstance.azure.com "asotestqhvcft": StorageError: invalid object, Code: 4, Key: /registry/containerinstance.azure.com/containergroups/aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotestqhvcft, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5f4c6ddb-338d-43e8-8fa7-d4c63b3c12e3, UID in object meta: " name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5917" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:56Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5934" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotest-rg-igztjj resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-igztjj": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotest-rg-igztjj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a9a80c7a-eacb-4839-9d1f-8c4d6e86de74, UID in object meta: " name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] 2023/09/08 21:21:57 http: TLS handshake error from 127.0.0.1:48122: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5917" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5934" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5943" generation=1 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Resource successfully created/updated" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Got ARM status" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces\",\"identity\":{\"principalId\":\"f1f4fafd-8a3f-4f2b-9378-7fa717d9947e\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"sampleworkspaces\",\"properties\":{\"allowPublicAccessWhenBehindVnet\":true,\"description\":\"\",\"discoveryUrl\":\"https://westus3.api.azureml.ms/discovery\",\"friendlyName\":\"\",\"hbiWorkspace\":false,\"keyVault\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Keyvault/vaults/mlworkspaces-vault\",\"mlFlowTrackingUri\":\"azureml://westus3.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces\",\"notebookInfo\":{\"fqdn\":\"ml-sampleworkspace-westus3-a87b6799-94c5-418a-bc41-c71cbc8e34b5.westus2.notebooks.azure.net\",\"resourceId\":\"35952e7e2ba84c1aba2dba48152cc3db\"},\"privateLinkCount\":0,\"provisioningState\":\"Succeeded\",\"storageAccount\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct\",\"storageHnsEnabled\":false,\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"workspaceId\":\"a87b6799-94c5-418a-bc41-c71cbc8e34b5\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.MachineLearningServices/workspaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Getting Kubernetes resources for export" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Successfully retrieved Kubernetes resources for export" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotest-rg-igztjj aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotestuqgifs]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5934" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx\",\"location\":\"westus2\",\"name\":\"asotest-rg-gvdetx\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2\",\"name\":\"pool2\",\"properties\":{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5952" generation=1 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=1 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5956" generation=1 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="5955" generation=2 uid="b26a5eee-a3e3-41af-998c-6a744b151f4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"a9a80c7a-eacb-4839-9d1f-8c4d6e86de74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:53 +0000 UTC" deletionTimestamp="2023-09-08 21:21:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5959" generation=1 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5957" generation=1 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ContainerGroupController "msg"="Determined Delete action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ContainerGroupController "msg"="Starting delete of resource" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ContainerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ContainerGroupController "msg"="Delete succeeded, removing finalizer" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh\",\"location\":\"westus2\",\"name\":\"asotest-rg-bhffyh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] BatchAccountController "msg"="Reconcile invoked" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="5965" generation=1 uid="244ce93b-72af-4e90-87dc-b5f336a34123" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] BatchAccountController "msg"="applying ownership" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:57Z] ContainerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotestuqgifs resource status: Operation cannot be fulfilled on containergroups.containerinstance.azure.com "asotestuqgifs": StorageError: invalid object, Code: 4, Key: /registry/containerinstance.azure.com/containergroups/aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotestuqgifs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b26a5eee-a3e3-41af-998c-6a744b151f4a, UID in object meta: " name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5960" generation=1 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5944" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:56 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5967" generation=1 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn\",\"location\":\"westus2\",\"name\":\"asotest-rg-vdecpn\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Set owner reference" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221\",\"name\":\"pool202221\",\"properties\":{\"count\":1,\"currentOrchestratorVersion\":\"1.24.9\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"scaleDownMode\":\"Delete\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="adding finalizer" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="updated resource in etcd" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="5971" generation=1 uid="244ce93b-72af-4e90-87dc-b5f336a34123" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"17a9a341-c715-4848-b69f-5f647406f9dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5978" generation=1 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5975" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5977" generation=1 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="About to send resource to Azure" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Successfully sent resource to Azure" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5981" generation=1 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5980" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5986" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="updated resource in etcd" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="5988" generation=1 uid="244ce93b-72af-4e90-87dc-b5f336a34123" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"17a9a341-c715-4848-b69f-5f647406f9dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx/operationResults/5c34b0b5-c27f-496c-ac65-8f4b23c1cd5f?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Done with reconcile" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Reconcile invoked" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="5988" generation=1 uid="244ce93b-72af-4e90-87dc-b5f336a34123" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"17a9a341-c715-4848-b69f-5f647406f9dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx/operationResults/5c34b0b5-c27f-496c-ac65-8f4b23c1cd5f?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Resource successfully created/updated" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:58Z] BatchAccountController "msg"="Got ARM status" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx\",\"identity\":{\"type\":\"None\"},\"location\":\"westcentralus\",\"name\":\"asotestxyqskx\",\"properties\":{\"accountEndpoint\":\"asotestxyqskx.westcentralus.batch.azure.com\",\"activeJobAndJobScheduleQuota\":300,\"dedicatedCoreQuota\":0,\"dedicatedCoreQuotaPerVMFamily\":[{\"coreQuota\":0,\"name\":\"standardAv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv3Family\"},{\"coreQuota\":0,\"name\":\"standardEv3Family\"},{\"coreQuota\":0,\"name\":\"standardDSv2Family\"},{\"coreQuota\":0,\"name\":\"standardDSv3Family\"},{\"coreQuota\":0,\"name\":\"standardESv3Family\"},{\"coreQuota\":0,\"name\":\"standardFSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCFamily\"},{\"coreQuota\":0,\"name\":\"standardNVFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv4Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardA0_A7Family\"},{\"coreQuota\":0,\"name\":\"standardA8_A11Family\"},{\"coreQuota\":0,\"name\":\"standardDFamily\"},{\"coreQuota\":0,\"name\":\"standardGFamily\"},{\"coreQuota\":0,\"name\":\"basicAFamily\"},{\"coreQuota\":0,\"name\":\"standardFFamily\"},{\"coreQuota\":0,\"name\":\"standardNVPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardNCPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardHFamily\"},{\"coreQuota\":0,\"name\":\"standardHPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardMSFamily\"},{\"coreQuota\":0,\"name\":\"standardDSFamily\"},{\"coreQuota\":0,\"name\":\"standardFSFamily\"},{\"coreQuota\":0,\"name\":\"standardGSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNDSFamily\"},{\"coreQuota\":0,\"name\":\"standardNCSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBSFamily\"},{\"coreQuota\":0,\"name\":\"standardHCSFamily\"},{\"coreQuota\":0,\"name\":\"standardNVSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBrsv2Family\"},{\"coreQuota\":0,\"name\":\"standardDAv4Family\"},{\"coreQuota\":0,\"name\":\"standardDASv4Family\"},{\"coreQuota\":0,\"name\":\"standardEAv4Family\"},{\"coreQuota\":0,\"name\":\"standardEASv4Family\"},{\"coreQuota\":0,\"name\":\"standardMSv2Family\"},{\"coreQuota\":0,\"name\":\"standardEIv3Family\"},{\"coreQuota\":0,\"name\":\"standardNVSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NCASv3_T4 Family\"},{\"coreQuota\":0,\"name\":\"standardXEIDSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NDASv4_A100 Family\"},{\"coreQuota\":0,\"name\":\"standardDCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardHBv3Family\"},{\"coreQuota\":0,\"name\":\"standardNPSFamily\"},{\"coreQuota\":0,\"name\":\"standardFXMDVSFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv5Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardNCADSA100v4Family\"},{\"coreQuota\":0,\"name\":\"standardDADSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEADSv5Family\"}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"lowPriorityCoreQuota\":0,\"poolAllocationMode\":\"BatchService\",\"poolQuota\":100,\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.Batch/batchAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="5995" generation=1 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="applying ownership" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5991" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5998" generation=1 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="5993" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="Set owner reference" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="adding finalizer" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6007" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6003" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] BatchAccountController "msg"="updated resource in etcd" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6011" generation=1 uid="244ce93b-72af-4e90-87dc-b5f336a34123" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"17a9a341-c715-4848-b69f-5f647406f9dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] BatchAccountController "msg"="Done with reconcile" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6008" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6010" generation=1 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh\",\"location\":\"westus2\",\"name\":\"asotest-rg-tayamh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6012" generation=1 uid="324fce9a-f11d-49fb-9195-32f621557b76" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="updated resource in etcd" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6013" generation=1 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"cd254fe2-fa5a-4476-a0ac-dfc36d628c0f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6016" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="About to send resource to Azure" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfileController "msg"="Successfully sent resource to Azure" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6021" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:21:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:21:59Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6024" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6030" generation=1 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6032" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="updated resource in etcd" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6036" generation=1 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"cd254fe2-fa5a-4476-a0ac-dfc36d628c0f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7a5cbb3c-bbe1-41ea-afc4-2aee8b823d0f?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Done with reconcile" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6034" generation=1 uid="324fce9a-f11d-49fb-9195-32f621557b76" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6040" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss does not exist (publicipaddresses.network.azure.com "samplepublicipvmss" not found)" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss does not exist (publicipaddresses.network.azure.com "samplepublicipvmss" not found)" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6036" generation=1 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"cd254fe2-fa5a-4476-a0ac-dfc36d628c0f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7a5cbb3c-bbe1-41ea-afc4-2aee8b823d0f?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6039" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6040" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Resource not created yet, will check again" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Didn't commit obj as there was no change" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Done with reconcile" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6043" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="applying ownership" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6036" generation=1 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"cd254fe2-fa5a-4476-a0ac-dfc36d628c0f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7a5cbb3c-bbe1-41ea-afc4-2aee8b823d0f?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6041" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6045" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Resource successfully created/updated" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Got ARM status" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz\",\"kind\":\"cdn\",\"location\":\"Global\",\"name\":\"asotestojccxz\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"},\"sku\":{\"name\":\"Standard_Microsoft\"},\"type\":\"Microsoft.Cdn/profiles\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6045" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6049" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss does not exist (publicipaddresses.network.azure.com \\\"samplepublicipvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfileController "msg"="Set owner reference" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6047" generation=1 uid="45a65f34-46b3-411e-916e-0efc05b73f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet" not found)" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet" not found)" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6053" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6045" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6049" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss does not exist (publicipaddresses.network.azure.com \\\"samplepublicipvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:00Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6051" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfileController "msg"="adding finalizer" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6058" generation=1 uid="324fce9a-f11d-49fb-9195-32f621557b76" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/6a87a0ce-ef44-4e13-9289-ebc87a5e9a00?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfileController "msg"="updated resource in etcd" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6061" generation=1 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"cd254fe2-fa5a-4476-a0ac-dfc36d628c0f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfileController "msg"="Done with reconcile" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6045" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6063" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6059" generation=1 uid="70944688-45c6-4dbb-8118-7fdc9e38188b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6062" generation=1 uid="885940dc-5085-479a-9047-6de0e2f6fa3c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6063" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6058" generation=1 uid="324fce9a-f11d-49fb-9195-32f621557b76" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/6a87a0ce-ef44-4e13-9289-ebc87a5e9a00?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6045" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6040" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6066" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" status="{\"etag\":\"W/\\\"40b5d7df-1690-4469-99a3-4ddf84241448\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westus3\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e7abbab9-314f-423b-b2b5-e4fc1f4f4c6a\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] I0908 21:22:01.900211 31508 trace.go:236] Trace[1130657619]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.623) (total time: 10278ms): +[controller:test-integration-envtest] Trace[1130657619]: ---"Objects listed" error: 10278ms (21:22:01.899) +[controller:test-integration-envtest] Trace[1130657619]: [10.278807401s] [10.278807401s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6040" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6066" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6067" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfileController "msg"="updated resource in etcd" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6064" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:01Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:02.088293 31508 trace.go:236] Trace[531437812]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.624) (total time: 10466ms): +[controller:test-integration-envtest] Trace[531437812]: ---"Objects listed" error: 10466ms (21:22:02.088) +[controller:test-integration-envtest] Trace[531437812]: [10.466284835s] [10.466284835s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6045" generation=2 uid="17a9a341-c715-4848-b69f-5f647406f9dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:56 +0000 UTC" deletionTimestamp="2023-09-08 21:21:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6071" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6018" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6073" generation=1 uid="45a65f34-46b3-411e-916e-0efc05b73f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6078" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfileController "msg"="About to send resource to Azure" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfileController "msg"="Successfully sent resource to Azure" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Set owner reference" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ownerGvk="cdn.azure.com/v1api20210601storage, Kind=Profile" ownerName="asotestojccxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6080" generation=1 uid="006e8fad-c440-4ca4-850f-69ed6ce71633" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6083" generation=1 uid="324fce9a-f11d-49fb-9195-32f621557b76" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6084" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6029" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:02.477340 31508 trace.go:236] Trace[68140437]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.867) (total time: 10612ms): +[controller:test-integration-envtest] Trace[68140437]: ---"Objects listed" error: 10612ms (21:22:02.477) +[controller:test-integration-envtest] Trace[68140437]: [10.612521397s] [10.612521397s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview\",\"identity\":{\"principalId\":\"1740bf33-4c14-4f07-bd09-86b0eb47dec1\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster202221preview\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"currentOrchestratorVersion\":\"1.25.6\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-2204gen2containerd-202306.07.0\",\"orchestratorVersion\":\"1.25.6\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-ufm1ocgk.portal.hcp.westus3.azmk8s.io\",\"currentKubernetesVersion\":\"1.25.6\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-ufm1ocgk.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"2d04d3f4-6c1b-4a73-b71a-6f5f64c3ef93\",\"objectId\":\"9ab8d040-026c-45ec-9d60-9a6f54a0eed2\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-dwrfmg_samplemanagedcluster202221preview_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster202221preview-agentpool\"}},\"kubernetesVersion\":\"1.25.6\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"ipFamilies\":[\"IPv4\"],\"loadBalancerProfile\":{\"backendPoolType\":\"nodeIPConfiguration\",\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-dwrfmg_samplemanagedcluster202221preview_westus3/providers/Microsoft.Network/publicIPAddresses/61d8d715-930e-471c-84b9-98d3c2e623d6\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"podCidrs\":[\"10.244.0.0/16\"],\"serviceCidr\":\"10.0.0.0/16\",\"serviceCidrs\":[\"10.0.0.0/16\"]},\"nodeResourceGroup\":\"MC_asotest-rg-dwrfmg_samplemanagedcluster202221preview_westus3\",\"oidcIssuerProfile\":{\"enabled\":false},\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"securityProfile\":{},\"servicePrincipalProfile\":{\"clientId\":\"msi\"},\"storageProfile\":{\"diskCSIDriver\":{\"enabled\":true,\"version\":\"v1\"},\"fileCSIDriver\":{\"enabled\":true},\"snapshotController\":{\"enabled\":true}},\"workloadAutoScalerProfile\":{}},\"sku\":{\"name\":\"Base\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotest-rg-gvdetx resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gvdetx": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotest-rg-gvdetx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 17a9a341-c715-4848-b69f-5f647406f9dd, UID in object meta: " name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:02.577739 31508 trace.go:236] Trace[568855817]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.881) (total time: 10698ms): +[controller:test-integration-envtest] Trace[568855817]: ---"Objects listed" error: 10698ms (21:22:02.577) +[controller:test-integration-envtest] Trace[568855817]: [10.698602813s] [10.698602813s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6082" generation=1 uid="70944688-45c6-4dbb-8118-7fdc9e38188b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6084" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:02.708782 31508 trace.go:236] Trace[2015488528]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.882) (total time: 10829ms): +[controller:test-integration-envtest] Trace[2015488528]: ---"Objects listed" error: 10829ms (21:22:02.708) +[controller:test-integration-envtest] Trace[2015488528]: [10.82944173s] [10.82944173s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotest-rg-gvdetx aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotestxyqskx]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6096" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="adding finalizer" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6089" generation=1 uid="0d6c176b-7ae2-47e3-8658-e492c9261088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfileController "msg"="updated resource in etcd" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6094" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"" +[controller:test-integration-envtest] I0908 21:22:02.891260 31508 trace.go:236] Trace[32702137]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.882) (total time: 10998ms): +[controller:test-integration-envtest] Trace[32702137]: ---"Objects listed" error: 10998ms (21:22:02.878) +[controller:test-integration-envtest] Trace[32702137]: [10.998534677s] [10.998534677s] END +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6096" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6092" generation=1 uid="885940dc-5085-479a-9047-6de0e2f6fa3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:02Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6098" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6088" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6098" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6094" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6102" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] I0908 21:22:03.147727 31508 trace.go:236] Trace[407923335]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.882) (total time: 11267ms): +[controller:test-integration-envtest] Trace[407923335]: ---"Objects listed" error: 11267ms (21:22:03.147) +[controller:test-integration-envtest] Trace[407923335]: [11.267899887s] [11.267899887s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6104" generation=1 uid="45a65f34-46b3-411e-916e-0efc05b73f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/af68cb5b-3aba-4866-a043-d6e335f6776b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6102" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Resource not created yet, will check again" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Didn't commit obj as there was no change" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6104" generation=1 uid="45a65f34-46b3-411e-916e-0efc05b73f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/af68cb5b-3aba-4866-a043-d6e335f6776b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:03.398392 31508 trace.go:236] Trace[794670500]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.935) (total time: 11465ms): +[controller:test-integration-envtest] Trace[794670500]: ---"Objects listed" error: 11465ms (21:22:03.398) +[controller:test-integration-envtest] Trace[794670500]: [11.465317487s] [11.465317487s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6112" generation=1 uid="70944688-45c6-4dbb-8118-7fdc9e38188b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39643c81-1740-4fa0-a6c6-d6752f655b01?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6094" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6112" generation=1 uid="70944688-45c6-4dbb-8118-7fdc9e38188b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39643c81-1740-4fa0-a6c6-d6752f655b01?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] BatchAccountController "msg"="Reconcile invoked" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6110" generation=2 uid="244ce93b-72af-4e90-87dc-b5f336a34123" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"17a9a341-c715-4848-b69f-5f647406f9dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6111" generation=1 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" status="{\"etag\":\"W/\\\"5a93dea7-59f8-47ba-ae91-8c9fa150149a\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss1\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.163.101.100\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"45cc15ae-7a76-4225-9adb-f73a7dd9e7a8\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] I0908 21:22:03.577828 31508 trace.go:236] Trace[947700143]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.948) (total time: 11631ms): +[controller:test-integration-envtest] Trace[947700143]: ---"Objects listed" error: 11631ms (21:22:03.576) +[controller:test-integration-envtest] Trace[947700143]: [11.631585577s] [11.631585577s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Resource not created yet, will check again" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Didn't commit obj as there was no change" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" status="{\"etag\":\"W/\\\"09f486a2-45ce-40d6-85cd-9abace79705d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.163.102.235\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"289b43c6-eda0-4f8c-98bd-250b21fd87a5\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] BatchAccountController "msg"="Determined Delete action" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] BatchAccountController "msg"="Starting delete of resource" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] BatchAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] BatchAccountController "msg"="Delete succeeded, removing finalizer" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6106" generation=1 uid="006e8fad-c440-4ca4-850f-69ed6ce71633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6107" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"d755c008-0e42-4916-9cf5-acd8e358e391", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] I0908 21:22:03.698227 31508 trace.go:236] Trace[827984526]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.948) (total time: 11752ms): +[controller:test-integration-envtest] Trace[827984526]: ---"Objects listed" error: 11752ms (21:22:03.698) +[controller:test-integration-envtest] Trace[827984526]: [11.75208s] [11.75208s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] I0908 21:22:03.905829 31508 trace.go:236] Trace[1826832683]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.948) (total time: 11960ms): +[controller:test-integration-envtest] Trace[1826832683]: ---"Objects listed" error: 11960ms (21:22:03.905) +[controller:test-integration-envtest] Trace[1826832683]: [11.960286667s] [11.960286667s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6022" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6094" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6006" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6116" generation=1 uid="0d6c176b-7ae2-47e3-8658-e492c9261088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6115" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6118" generation=1 uid="885940dc-5085-479a-9047-6de0e2f6fa3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2295eb92-651c-4d49-a964-61f325501f51?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="About to send resource to Azure" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfilesEndpointController "msg"="Successfully sent resource to Azure" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Resource successfully created/updated" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ProfileController "msg"="Got ARM status" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi\",\"kind\":\"cdn\",\"location\":\"Global\",\"name\":\"asotestcklqfi\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"},\"sku\":{\"name\":\"Standard_Microsoft\"},\"type\":\"Microsoft.Cdn/profiles\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:03Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:03Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] I0908 21:22:04.044694 31508 trace.go:236] Trace[1730145474]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.974) (total time: 12072ms): +[controller:test-integration-envtest] Trace[1730145474]: ---"Objects listed" error: 12072ms (21:22:04.044) +[controller:test-integration-envtest] Trace[1730145474]: [12.072960774s] [12.072960774s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6118" generation=1 uid="885940dc-5085-479a-9047-6de0e2f6fa3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2295eb92-651c-4d49-a964-61f325501f51?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] I0908 21:22:04.089014 31508 trace.go:236] Trace[1114606450]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.974) (total time: 12117ms): +[controller:test-integration-envtest] Trace[1114606450]: ---"Objects listed" error: 12117ms (21:22:04.088) +[controller:test-integration-envtest] Trace[1114606450]: [12.117108397s] [12.117108397s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] BatchAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotestxyqskx resource status: Operation cannot be fulfilled on batchaccounts.batch.azure.com "asotestxyqskx": StorageError: invalid object, Code: 4, Key: /registry/batch.azure.com/batchaccounts/aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotestxyqskx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 244ce93b-72af-4e90-87dc-b5f336a34123, UID in object meta: " name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] TrustedAccessRoleBindingController "msg"="Set owner reference" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6123" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6127" generation=1 uid="70944688-45c6-4dbb-8118-7fdc9e38188b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" status="{\"etag\":\"W/\\\"8625dd69-45b9-4c71-9b94-34d9199baff1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"8625dd69-45b9-4c71-9b94-34d9199baff1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"8625dd69-45b9-4c71-9b94-34d9199baff1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\",\"name\":\"samplenatpoolvmss\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9bc0041-cc0d-4fb5-8c79-b50a8cc04d1b\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" status="{\"etag\":\"W/\\\"755b37dc-360d-493b-8bdb-d605cbb9779c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1\",\"location\":\"westus3\",\"name\":\"samplevnet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"2584e5d2-badb-451e-9de3-3de5d1452239\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6123" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] I0908 21:22:04.235309 31508 trace.go:236] Trace[1906564986]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.974) (total time: 12263ms): +[controller:test-integration-envtest] Trace[1906564986]: ---"Objects listed" error: 12263ms (21:22:04.235) +[controller:test-integration-envtest] Trace[1906564986]: [12.26318372s] [12.26318372s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] I0908 21:22:04.474346 31508 trace.go:236] Trace[343151149]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.975) (total time: 12502ms): +[controller:test-integration-envtest] Trace[343151149]: ---"Objects listed" error: 12502ms (21:22:04.474) +[controller:test-integration-envtest] Trace[343151149]: [12.502035073s] [12.502035073s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6133" generation=1 uid="006e8fad-c440-4ca4-850f-69ed6ce71633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/3ca13557-832e-4756-b1e0-2e8aa1962d6b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6098" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6129" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"324fce9a-f11d-49fb-9195-32f621557b76", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6102" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6135" generation=1 uid="45a65f34-46b3-411e-916e-0efc05b73f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6136" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"d755c008-0e42-4916-9cf5-acd8e358e391", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7c2ab0ef-f71d-44c5-b4e3-81721beff561?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:04.523936 31508 trace.go:236] Trace[1242327024]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.975) (total time: 12551ms): +[controller:test-integration-envtest] Trace[1242327024]: ---"Objects listed" error: 12551ms (21:22:04.523) +[controller:test-integration-envtest] Trace[1242327024]: [12.551517364s] [12.551517364s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6102" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6136" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"d755c008-0e42-4916-9cf5-acd8e358e391", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7c2ab0ef-f71d-44c5-b4e3-81721beff561?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] I0908 21:22:04.680887 31508 trace.go:236] Trace[1478798202]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.975) (total time: 12708ms): +[controller:test-integration-envtest] Trace[1478798202]: ---"Objects listed" error: 12708ms (21:22:04.680) +[controller:test-integration-envtest] Trace[1478798202]: [12.708298011s] [12.708298011s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6133" generation=1 uid="006e8fad-c440-4ca4-850f-69ed6ce71633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/3ca13557-832e-4756-b1e0-2e8aa1962d6b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6098" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" status="{\"etag\":\"W/\\\"b61fc111-62cc-481f-bab1-00610818f63f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss1\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"b61fc111-62cc-481f-bab1-00610818f63f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"b61fc111-62cc-481f-bab1-00610818f63f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\",\"name\":\"samplenatpoolvmss1\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"dfd9c9a1-c9b9-435c-8f57-37ccf3d2e6f1\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] I0908 21:22:04.790243 31508 trace.go:236] Trace[2006294333]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.975) (total time: 12817ms): +[controller:test-integration-envtest] Trace[2006294333]: ---"Objects listed" error: 12817ms (21:22:04.789) +[controller:test-integration-envtest] Trace[2006294333]: [12.817162104s] [12.817162104s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Resource successfully created/updated" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" status="{\"etag\":\"W/\\\"5362d2e8-41bf-4cec-8221-dc5204065c1d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss\",\"location\":\"westus3\",\"name\":\"samplevnetvmss\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26a22888-10e5-4213-8ade-6ed3773c5793\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Got ARM status" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko\",\"location\":\"Global\",\"name\":\"asotestypmeko\",\"properties\":{\"contentTypesToCompress\":[\"application/json\"],\"hostName\":\"asotestypmeko.azureedge.net\",\"isCompressionEnabled\":true,\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"origins\":[{\"name\":\"source\",\"properties\":{\"enabled\":true,\"hostName\":\"example.com\",\"priority\":1,\"weight\":1000}}],\"provisioningState\":\"Succeeded\",\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"resourceState\":\"Running\"},\"type\":\"Microsoft.Cdn/profiles/endpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] TrustedAccessRoleBindingController "msg"="adding finalizer" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfileController "msg"="updated resource in etcd" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6139" generation=1 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6141" generation=1 uid="885940dc-5085-479a-9047-6de0e2f6fa3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:04.902306 31508 trace.go:236] Trace[1333100366]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.975) (total time: 12929ms): +[controller:test-integration-envtest] Trace[1333100366]: ---"Objects listed" error: 12929ms (21:22:04.902) +[controller:test-integration-envtest] Trace[1333100366]: [12.92949544s] [12.92949544s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6090" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6144" generation=1 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:05.007594 31508 trace.go:236] Trace[1910823267]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.976) (total time: 13033ms): +[controller:test-integration-envtest] Trace[1910823267]: ---"Objects listed" error: 13033ms (21:22:05.007) +[controller:test-integration-envtest] Trace[1910823267]: [13.033511926s] [13.033511926s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6069" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6145" generation=1 uid="dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:04 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] I0908 21:22:05.125775 31508 trace.go:236] Trace[1900310119]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.957) (total time: 13170ms): +[controller:test-integration-envtest] Trace[1900310119]: ---"Objects listed" error: 13170ms (21:22:05.125) +[controller:test-integration-envtest] Trace[1900310119]: [13.170731099s] [13.170731099s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:05.192653 31508 trace.go:236] Trace[291512102]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.993) (total time: 13201ms): +[controller:test-integration-envtest] Trace[291512102]: ---"Objects listed" error: 13201ms (21:22:05.192) +[controller:test-integration-envtest] Trace[291512102]: [13.201747632s] [13.201747632s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] I0908 21:22:05.238639 31508 trace.go:236] Trace[1375384116]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:51.975) (total time: 13266ms): +[controller:test-integration-envtest] Trace[1375384116]: ---"Objects listed" error: 13266ms (21:22:05.238) +[controller:test-integration-envtest] Trace[1375384116]: [13.266170349s] [13.266170349s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6152" generation=1 uid="0d6c176b-7ae2-47e3-8658-e492c9261088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/7b73b61c-230a-4226-aaf2-195b9b600cf0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6154" generation=1 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5990" generation=2 uid="471b7206-70ed-4f79-adaf-867a9fd8354e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6152" generation=1 uid="0d6c176b-7ae2-47e3-8658-e492c9261088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/7b73b61c-230a-4226-aaf2-195b9b600cf0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] I0908 21:22:05.329554 31508 trace.go:236] Trace[243610195]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.012) (total time: 13319ms): +[controller:test-integration-envtest] Trace[243610195]: ---"Objects listed" error: 13319ms (21:22:05.329) +[controller:test-integration-envtest] Trace[243610195]: [13.319956417s] [13.319956417s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6155" generation=1 uid="006e8fad-c440-4ca4-850f-69ed6ce71633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6147" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6158" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"324fce9a-f11d-49fb-9195-32f621557b76", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39e2c47d-310d-4268-8c70-2d7e5d57fad5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:05.422116 31508 trace.go:236] Trace[2046856331]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.012) (total time: 13412ms): +[controller:test-integration-envtest] Trace[2046856331]: ---"Objects listed" error: 13412ms (21:22:05.421) +[controller:test-integration-envtest] Trace[2046856331]: [13.412268802s] [13.412268802s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" status="{\"etag\":\"W/\\\"d73a85e6-6570-45f6-9a38-f99886a6b628\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1\",\"location\":\"westus3\",\"name\":\"samplevnetvmss1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"0e2f9cb8-90fd-41c1-91a3-16bf781cf718\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] I0908 21:22:05.478808 31508 trace.go:236] Trace[1313233937]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.012) (total time: 13468ms): +[controller:test-integration-envtest] Trace[1313233937]: ---"Objects listed" error: 13468ms (21:22:05.478) +[controller:test-integration-envtest] Trace[1313233937]: [13.468933852s] [13.468933852s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6159" generation=1 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"d755c008-0e42-4916-9cf5-acd8e358e391", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ProfilesEndpointController "msg"="Set owner reference" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ownerGvk="cdn.azure.com/v1api20210601storage, Kind=Profile" ownerName="asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6149" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6158" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"324fce9a-f11d-49fb-9195-32f621557b76", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39e2c47d-310d-4268-8c70-2d7e5d57fad5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6157" generation=1 uid="dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" status="{\"etag\":\"W/\\\"91a15d21-23b5-405a-ba2f-f08eb775ea51\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] I0908 21:22:05.514089 31508 trace.go:236] Trace[1308400628]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.012) (total time: 13504ms): +[controller:test-integration-envtest] Trace[1308400628]: ---"Objects listed" error: 13504ms (21:22:05.514) +[controller:test-integration-envtest] Trace[1308400628]: [13.50410494s] [13.50410494s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6068" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] TrustedAccessRoleBindingController "msg"="Determined CreateOrUpdate action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs\",\"location\":\"westus2\",\"name\":\"asotest-rg-xbxbvs\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:05.561263 31508 trace.go:236] Trace[253050697]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.012) (total time: 13551ms): +[controller:test-integration-envtest] Trace[253050697]: ---"Objects listed" error: 13551ms (21:22:05.561) +[controller:test-integration-envtest] Trace[253050697]: [13.551148681s] [13.551148681s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6102" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:05.578404 31508 trace.go:236] Trace[1942726461]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.013) (total time: 13568ms): +[controller:test-integration-envtest] Trace[1942726461]: ---"Objects listed" error: 13568ms (21:22:05.578) +[controller:test-integration-envtest] Trace[1942726461]: [13.568145521s] [13.568145521s] END +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ProfilesEndpointController "msg"="adding finalizer" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-f947f/asotest-rg-stutqa aso-test-samples-creationanddeletion-test-containerservic-f947f/samplemanagedcluster aso-test-samples-creationanddeletion-test-containerservic-f947f/pool2]... +[controller:test-integration-envtest] I0908 21:22:05.671021 31508 trace.go:236] Trace[1469456859]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.013) (total time: 13660ms): +[controller:test-integration-envtest] Trace[1469456859]: ---"Objects listed" error: 13660ms (21:22:05.670) +[controller:test-integration-envtest] Trace[1469456859]: [13.66072638s] [13.66072638s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6102" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6160" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-f947f/asotest-rg-stutqa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-stutqa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-f947f/asotest-rg-stutqa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 471b7206-70ed-4f79-adaf-867a9fd8354e, UID in object meta: " name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:05.812105 31508 trace.go:236] Trace[728280377]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 13763ms): +[controller:test-integration-envtest] Trace[728280377]: ---"Objects listed" error: 13763ms (21:22:05.811) +[controller:test-integration-envtest] Trace[728280377]: [13.763960058s] [13.763960058s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6167" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6168" generation=1 uid="0d6c176b-7ae2-47e3-8658-e492c9261088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] TrustedAccessRoleBindingController "msg"="About to send resource to Azure" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:05Z] TrustedAccessRoleBindingController "msg"="Successfully sent resource to Azure" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb" +[controller:test-integration-envtest] I0908 21:22:06.014968 31508 trace.go:236] Trace[1771256383]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 13966ms): +[controller:test-integration-envtest] Trace[1771256383]: ---"Objects listed" error: 13966ms (21:22:06.014) +[controller:test-integration-envtest] Trace[1771256383]: [13.96698187s] [13.96698187s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6171" generation=1 uid="dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6172" generation=1 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"324fce9a-f11d-49fb-9195-32f621557b76", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6169" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" status="{\"etag\":\"W/\\\"275de5d1-fd1f-46b0-938d-e6c4a3ef7ba1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westus3\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"xg3kxz0pge3ufmvv2t4b4t0mnc.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"275de5d1-fd1f-46b0-938d-e6c4a3ef7ba1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a35c9152-594e-41c8-be75-3b9a1dfaa2e3\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] I0908 21:22:06.218222 31508 trace.go:236] Trace[1374639227]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 14169ms): +[controller:test-integration-envtest] Trace[1374639227]: ---"Objects listed" error: 14169ms (21:22:06.218) +[controller:test-integration-envtest] Trace[1374639227]: [14.169962046s] [14.169962046s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6174" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"885940dc-5085-479a-9047-6de0e2f6fa3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="About to send resource to Azure" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" +[controller:test-integration-envtest] I0908 21:22:06.376245 31508 trace.go:236] Trace[1101934126]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 14327ms): +[controller:test-integration-envtest] Trace[1101934126]: ---"Objects listed" error: 14327ms (21:22:06.376) +[controller:test-integration-envtest] Trace[1101934126]: [14.327821658s] [14.327821658s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Successfully sent resource to Azure" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6177" generation=2 uid="b560217b-22b7-4e35-955a-1bda8869dd74" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"471b7206-70ed-4f79-adaf-867a9fd8354e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:06 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6183" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb?api-version=2023-02-02-preview\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Done with reconcile" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:06.476203 31508 trace.go:236] Trace[802132271]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 14428ms): +[controller:test-integration-envtest] Trace[802132271]: ---"Objects listed" error: 14428ms (21:22:06.476) +[controller:test-integration-envtest] Trace[802132271]: [14.428677018s] [14.428677018s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] I0908 21:22:06.575188 31508 trace.go:236] Trace[510185650]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.049) (total time: 14528ms): +[controller:test-integration-envtest] Trace[510185650]: ---"Objects listed" error: 14528ms (21:22:06.575) +[controller:test-integration-envtest] Trace[510185650]: [14.528135962s] [14.528135962s] END +[controller:test-integration-envtest] I0908 21:22:06.594489 31508 trace.go:236] Trace[29215302]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 14547ms): +[controller:test-integration-envtest] Trace[29215302]: ---"Objects listed" error: 14547ms (21:22:06.594) +[controller:test-integration-envtest] Trace[29215302]: [14.547129116s] [14.547129116s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6179" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"006e8fad-c440-4ca4-850f-69ed6ce71633", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6183" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb?api-version=2023-02-02-preview\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6077" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6189" generation=1 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Determined CreateOrUpdate action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] I0908 21:22:06.734209 31508 trace.go:236] Trace[1727044550]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 14686ms): +[controller:test-integration-envtest] Trace[1727044550]: ---"Objects listed" error: 14686ms (21:22:06.734) +[controller:test-integration-envtest] Trace[1727044550]: [14.686771417s] [14.686771417s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Resource not created yet, will check again" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Didn't commit obj as there was no change" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Done with reconcile" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6184" generation=1 uid="303fc57e-5f10-44e2-8b8a-28ae2858b899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:06 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="applying ownership" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="adding finalizer" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6183" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb?api-version=2023-02-02-preview\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] I0908 21:22:06.822631 31508 trace.go:236] Trace[1177679387]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 14774ms): +[controller:test-integration-envtest] Trace[1177679387]: ---"Objects listed" error: 14774ms (21:22:06.822) +[controller:test-integration-envtest] Trace[1177679387]: [14.774890947s] [14.774890947s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6192" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6190" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:06.911104 31508 trace.go:236] Trace[1366175092]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 14863ms): +[controller:test-integration-envtest] Trace[1366175092]: ---"Objects listed" error: 14863ms (21:22:06.910) +[controller:test-integration-envtest] Trace[1366175092]: [14.863820513s] [14.863820513s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6192" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Determined CreateOrUpdate action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Resource successfully created/updated" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] TrustedAccessRoleBindingController "msg"="Got ARM status" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb\",\"name\":\"sample-tarb\",\"properties\":{\"provisioningState\":\"Succeeded\",\"roles\":[\"Microsoft.MachineLearningServices/workspaces/mlworkload\"],\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces\"},\"type\":\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:06Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-f947f/samplemanagedcluster resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-f947f/samplemanagedcluster, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b560217b-22b7-4e35-955a-1bda8869dd74, UID in object meta: " name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6199" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"885940dc-5085-479a-9047-6de0e2f6fa3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e546c25f-c1eb-426b-ae86-d62f277a3c7e?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Resource not created yet, will check again" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Didn't commit obj as there was no change" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:06Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" status="{\"etag\":\"W/\\\"31955d74-13a9-44ed-9e8b-9b2775e278bd\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1\",\"location\":\"westus3\",\"name\":\"samplenic1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"0lsyijo1xipelhpdhxs3crjchb.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"31955d74-13a9-44ed-9e8b-9b2775e278bd\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"314e7535-16a9-43b2-adf8-be9c1a788d24\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6199" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"885940dc-5085-479a-9047-6de0e2f6fa3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e546c25f-c1eb-426b-ae86-d62f277a3c7e?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6192" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Resource not created yet, will check again" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Didn't commit obj as there was no change" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" status="{\"etag\":\"W/\\\"d0563865-453c-442c-ba9a-fda948a8cb08\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\",\"name\":\"samplesubnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:07.111297 31508 trace.go:236] Trace[605990842]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 15063ms): +[controller:test-integration-envtest] Trace[605990842]: ---"Objects listed" error: 15063ms (21:22:07.111) +[controller:test-integration-envtest] Trace[605990842]: [15.063707494s] [15.063707494s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6200" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"0d6c176b-7ae2-47e3-8658-e492c9261088", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6196" generation=1 uid="303fc57e-5f10-44e2-8b8a-28ae2858b899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6192" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6113" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6206" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"006e8fad-c440-4ca4-850f-69ed6ce71633", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00063f5d-5592-4f22-864e-453e69f1b061?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6203" generation=2 uid="3dcbe100-da10-40f3-b71a-b9d782c739f3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"b560217b-22b7-4e35-955a-1bda8869dd74", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] I0908 21:22:07.190441 31508 trace.go:236] Trace[379686323]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 15141ms): +[controller:test-integration-envtest] Trace[379686323]: ---"Objects listed" error: 15141ms (21:22:07.190) +[controller:test-integration-envtest] Trace[379686323]: [15.141913044s] [15.141913044s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6005" generation=2 uid="4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:21:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Resource not created yet, will check again" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Didn't commit obj as there was no change" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6206" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"006e8fad-c440-4ca4-850f-69ed6ce71633", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00063f5d-5592-4f22-864e-453e69f1b061?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Got ARM status" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz\",\"location\":\"westcentralus\",\"name\":\"asotestagymlz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6208" generation=1 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] TrustedAccessRoleBindingController "msg"="Done with reconcile" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] I0908 21:22:07.244882 31508 trace.go:236] Trace[1545240780]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 15196ms): +[controller:test-integration-envtest] Trace[1545240780]: ---"Objects listed" error: 15196ms (21:22:07.244) +[controller:test-integration-envtest] Trace[1545240780]: [15.196247952s] [15.196247952s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6204" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6210" generation=1 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6192" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" status="{\"etag\":\"W/\\\"77838bb1-9cb5-4658-b3d1-5641d7e9dd4f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\",\"name\":\"samplesubnetvmss\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Resource successfully created/updated" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Got ARM status" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne\",\"location\":\"Global\",\"name\":\"asotestbnocne\",\"properties\":{\"contentTypesToCompress\":[\"application/json\"],\"hostName\":\"asotestbnocne.azureedge.net\",\"isCompressionEnabled\":true,\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"origins\":[{\"name\":\"source\",\"properties\":{\"enabled\":true,\"hostName\":\"example.com\",\"priority\":1,\"weight\":1000}}],\"provisioningState\":\"Succeeded\",\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"resourceState\":\"Running\"},\"type\":\"Microsoft.Cdn/profiles/endpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6214" generation=1 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"885940dc-5085-479a-9047-6de0e2f6fa3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-5bf2e/asotest-rg-eysbsy aso-test-samples-creationanddeletion-test-containerservic-5bf2e/samplemanagedcluster202221 aso-test-samples-creationanddeletion-test-containerservic-5bf2e/pool202221]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" status="{\"etag\":\"W/\\\"9cb814e7-5743-45c3-bcab-e79aebadd7f6\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss\",\"location\":\"westus3\",\"name\":\"samplenicvmss\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"raukejxfcajufcw4n1jxopcxsd.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"9cb814e7-5743-45c3-bcab-e79aebadd7f6\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c6c450fb-93ae-4c3a-920d-e533f16345b1\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-5bf2e/asotest-rg-eysbsy resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-eysbsy": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-5bf2e/asotest-rg-eysbsy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1, UID in object meta: " name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6175" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6216" generation=1 uid="303fc57e-5f10-44e2-8b8a-28ae2858b899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:06 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p\",\"name\":\"pool202221p\",\"properties\":{\"count\":1,\"currentOrchestratorVersion\":\"1.25.6\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-2204gen2containerd-202306.07.0\",\"orchestratorVersion\":\"1.25.6\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"scaleDownMode\":\"Delete\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] I0908 21:22:07.499970 31508 trace.go:236] Trace[992743118]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.049) (total time: 15452ms): +[controller:test-integration-envtest] Trace[992743118]: ---"Objects listed" error: 15452ms (21:22:07.499) +[controller:test-integration-envtest] Trace[992743118]: [15.452761586s] [15.452761586s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-f947f/pool2 resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool2": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-f947f/pool2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3dcbe100-da10-40f3-b71a-b9d782c739f3, UID in object meta: " name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6225" generation=1 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"006e8fad-c440-4ca4-850f-69ed6ce71633", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6226" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"0d6c176b-7ae2-47e3-8658-e492c9261088", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/8e0066ca-0a4d-4972-8862-46a6b33599a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:07.604788 31508 trace.go:236] Trace[1614293384]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 15556ms): +[controller:test-integration-envtest] Trace[1614293384]: ---"Objects listed" error: 15556ms (21:22:07.604) +[controller:test-integration-envtest] Trace[1614293384]: [15.556121593s] [15.556121593s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6227" generation=1 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6229" generation=1 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6223" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] I0908 21:22:07.667590 31508 trace.go:236] Trace[744067150]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 15618ms): +[controller:test-integration-envtest] Trace[744067150]: ---"Objects listed" error: 15618ms (21:22:07.667) +[controller:test-integration-envtest] Trace[744067150]: [15.618764845s] [15.618764845s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6226" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"0d6c176b-7ae2-47e3-8658-e492c9261088", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/8e0066ca-0a4d-4972-8862-46a6b33599a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6233" generation=1 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6230" generation=2 uid="dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:04 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" status="{\"etag\":\"W/\\\"cbb5901f-6e11-42a6-9691-74cd566f60ec\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\",\"name\":\"samplesubnetvmss1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6231" generation=2 uid="85aa3832-a8a6-41bf-9d8a-c68cd87749f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"4cc72aa4-ac15-4bc5-bf01-5bf2823cb2a1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:55 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:07.739911 31508 trace.go:236] Trace[754820992]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 15691ms): +[controller:test-integration-envtest] Trace[754820992]: ---"Objects listed" error: 15691ms (21:22:07.739) +[controller:test-integration-envtest] Trace[754820992]: [15.691111343s] [15.691111343s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6236" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" status="{\"etag\":\"W/\\\"249a5b24-ec5c-49b1-ae7a-3532de1b328e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1\",\"location\":\"westus3\",\"name\":\"samplenicvmss1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"xcoc4dx3sdaudendc05xqhhxda.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"249a5b24-ec5c-49b1-ae7a-3532de1b328e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9c813ead-8651-4285-b3c3-443472b1d335\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] I0908 21:22:07.816220 31508 trace.go:236] Trace[2014661539]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 15767ms): +[controller:test-integration-envtest] Trace[2014661539]: ---"Objects listed" error: 15767ms (21:22:07.816) +[controller:test-integration-envtest] Trace[2014661539]: [15.767269203s] [15.767269203s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:08.014998 31508 trace.go:236] Trace[63530182]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 15935ms): +[controller:test-integration-envtest] Trace[63530182]: ---"Objects listed" error: 15935ms (21:22:07.983) +[controller:test-integration-envtest] Trace[63530182]: [15.935254641s] [15.935254641s] END +[controller:test-integration-envtest] I0908 21:22:08.144914 31508 trace.go:236] Trace[1202833444]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 16097ms): +[controller:test-integration-envtest] Trace[1202833444]: ---"Objects listed" error: 16097ms (21:22:08.144) +[controller:test-integration-envtest] Trace[1202833444]: [16.097210216s] [16.097210216s] END +[controller:test-integration-envtest] I0908 21:22:08.208052 31508 trace.go:236] Trace[1123616489]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.051) (total time: 16159ms): +[controller:test-integration-envtest] Trace[1123616489]: ---"Objects listed" error: 16158ms (21:22:08.207) +[controller:test-integration-envtest] Trace[1123616489]: [16.159067895s] [16.159067895s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="cd254fe2-fa5a-4476-a0ac-dfc36d628c0f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6246" generation=1 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"0d6c176b-7ae2-47e3-8658-e492c9261088", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] I0908 21:22:08.248199 31508 trace.go:236] Trace[1810753474]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.052) (total time: 16198ms): +[controller:test-integration-envtest] Trace[1810753474]: ---"Objects listed" error: 16198ms (21:22:08.248) +[controller:test-integration-envtest] Trace[1810753474]: [16.198878293s] [16.198878293s] END +[controller:test-integration-envtest] I0908 21:22:08.249420 31508 trace.go:236] Trace[1125169031]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.081) (total time: 16170ms): +[controller:test-integration-envtest] Trace[1125169031]: ---"Objects listed" error: 16170ms (21:22:08.249) +[controller:test-integration-envtest] Trace[1125169031]: [16.170610649s] [16.170610649s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6245" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:08Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-5bf2e/samplemanagedcluster202221 resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster202221": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-5bf2e/samplemanagedcluster202221, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 85aa3832-a8a6-41bf-9d8a-c68cd87749f6, UID in object meta: " name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6248" generation=1 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] I0908 21:22:08.432815 31508 trace.go:236] Trace[768492052]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.100) (total time: 16334ms): +[controller:test-integration-envtest] Trace[768492052]: ---"Objects listed" error: 16334ms (21:22:08.432) +[controller:test-integration-envtest] Trace[768492052]: [16.334962246s] [16.334962246s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6252" generation=2 uid="dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:04 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYQlhCVlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6250" generation=1 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6252" generation=2 uid="dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:04 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYQlhCVlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:08.517244 31508 trace.go:236] Trace[1672567163]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.050) (total time: 16469ms): +[controller:test-integration-envtest] Trace[1672567163]: ---"Objects listed" error: 16469ms (21:22:08.517) +[controller:test-integration-envtest] Trace[1672567163]: [16.469396263s] [16.469396263s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotest-rg-bhffyh aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestojccxz aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestypmeko]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotest-rg-bhffyh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bhffyh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotest-rg-bhffyh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: cd254fe2-fa5a-4476-a0ac-dfc36d628c0f, UID in object meta: " name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6257" generation=2 uid="b702c34d-097f-42c2-b7b0-43063049527e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"85aa3832-a8a6-41bf-9d8a-c68cd87749f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] I0908 21:22:08.733209 31508 trace.go:236] Trace[1590607695]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.145) (total time: 16590ms): +[controller:test-integration-envtest] Trace[1590607695]: ---"Objects listed" error: 16590ms (21:22:08.733) +[controller:test-integration-envtest] Trace[1590607695]: [16.590563457s] [16.590563457s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6262" generation=2 uid="d755c008-0e42-4916-9cf5-acd8e358e391" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"cd254fe2-fa5a-4476-a0ac-dfc36d628c0f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:00 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] I0908 21:22:08.786645 31508 trace.go:236] Trace[1751237948]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.176) (total time: 16613ms): +[controller:test-integration-envtest] Trace[1751237948]: ---"Objects listed" error: 16613ms (21:22:08.786) +[controller:test-integration-envtest] Trace[1751237948]: [16.613262752s] [16.613262752s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotest-rg-xbxbvs resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-xbxbvs": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotest-rg-xbxbvs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dfb33ad5-8473-4cc3-ab15-ab860a5a2b2e, UID in object meta: " name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6264" generation=1 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ProfileController "msg"="Determined Delete action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ProfileController "msg"="Starting delete of resource" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ProfileController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ProfileController "msg"="Delete succeeded, removing finalizer" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotest-rg-xbxbvs aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotestagymlz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq\",\"location\":\"westus2\",\"name\":\"asotest-rg-kktczq\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:08Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-5bf2e/pool202221 resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool202221": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-5bf2e/pool202221, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b702c34d-097f-42c2-b7b0-43063049527e, UID in object meta: " name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6273" generation=1 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:08Z] ProfileController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestojccxz resource status: Operation cannot be fulfilled on profiles.cdn.azure.com "asotestojccxz": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profiles/aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestojccxz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d755c008-0e42-4916-9cf5-acd8e358e391, UID in object meta: " name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] I0908 21:22:08.929495 31508 trace.go:236] Trace[1298009041]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.177) (total time: 16754ms): +[controller:test-integration-envtest] Trace[1298009041]: ---"Objects listed" error: 16754ms (21:22:08.929) +[controller:test-integration-envtest] Trace[1298009041]: [16.754457391s] [16.754457391s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6274" generation=2 uid="303fc57e-5f10-44e2-8b8a-28ae2858b899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:06 +0000 UTC" deletionTimestamp="2023-09-08 21:22:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Starting delete of resource" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6277" generation=1 uid="6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6282" generation=2 uid="5cd2b114-1c8d-457c-b43a-ef2df1beb3c1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"d755c008-0e42-4916-9cf5-acd8e358e391", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:09 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6253" generation=2 uid="9b58d3b7-f911-4065-b62c-16399af703ea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6284" generation=2 uid="303fc57e-5f10-44e2-8b8a-28ae2858b899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:06 +0000 UTC" deletionTimestamp="2023-09-08 21:22:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUQUdZTUxaLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ProfilesEndpointController "msg"="Determined Delete action" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ProfilesEndpointController "msg"="Starting delete of resource" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ProfilesEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ProfilesEndpointController "msg"="Delete succeeded, removing finalizer" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6284" generation=2 uid="303fc57e-5f10-44e2-8b8a-28ae2858b899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:06 +0000 UTC" deletionTimestamp="2023-09-08 21:22:08 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUQUdZTUxaLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:09.388880 31508 trace.go:236] Trace[1848475102]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.178) (total time: 17213ms): +[controller:test-integration-envtest] Trace[1848475102]: ---"Objects listed" error: 17213ms (21:22:09.388) +[controller:test-integration-envtest] Trace[1848475102]: [17.21356302s] [17.21356302s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6287" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6291" generation=1 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotest-rg-tayamh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-tayamh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotest-rg-tayamh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9b58d3b7-f911-4065-b62c-16399af703ea, UID in object meta: " name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotestagymlz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotestagymlz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotestagymlz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 303fc57e-5f10-44e2-8b8a-28ae2858b899, UID in object meta: " name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6293" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ImageController "msg"="applying ownership" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] I0908 21:22:09.590026 31508 trace.go:236] Trace[470688198]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.177) (total time: 17389ms): +[controller:test-integration-envtest] Trace[470688198]: ---"Objects listed" error: 17389ms (21:22:09.563) +[controller:test-integration-envtest] Trace[470688198]: [17.389094554s] [17.389094554s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6300" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ImageController "msg"="applying ownership" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotest-rg-tayamh aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestcklqfi aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestbnocne]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6289" generation=1 uid="6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:09Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6301" generation=1 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] I0908 21:22:10.114164 31508 trace.go:236] Trace[195398161]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.199) (total time: 17917ms): +[controller:test-integration-envtest] Trace[195398161]: ---"Objects listed" error: 17917ms (21:22:10.114) +[controller:test-integration-envtest] Trace[195398161]: [17.917274389s] [17.917274389s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6305" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineController "msg"="applying ownership" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed\",\"location\":\"westus2\",\"name\":\"asotest-rg-bqrmed\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6309" generation=1 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineController "msg"="Set owner reference" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6313" generation=1 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6310" generation=2 uid="7cf6294c-44d2-4448-b982-e855daf5be01" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"9b58d3b7-f911-4065-b62c-16399af703ea", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp="2023-09-08 21:22:10 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6314" generation=1 uid="6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6308" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ProfileController "msg"="Determined Delete action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ProfileController "msg"="Starting delete of resource" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ProfileController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ProfileController "msg"="Delete succeeded, removing finalizer" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6312" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6311" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6314" generation=1 uid="6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineController "msg"="adding finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="Resource creation/update failure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE: NotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"NotFound\",\n \"message\": \"The entity was not found in this Azure location.\",\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:10Z] ImageController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE: NotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "The entity was not found in this Azure location.", +[controller:test-integration-envtest] "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6321" generation=1 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"8bb75972-e43b-4c1c-879b-0e265f377506\",\"principalId\":\"81fa57e6-ed07-4101-8932-7453a099b873\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6322" generation=1 uid="b752a20f-912d-4b41-b824-0b97cbede892" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] DiskController "msg"="applying ownership" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6320" generation=1 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6319" generation=1 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6317" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov\",\"location\":\"westus2\",\"name\":\"asotest-rg-iydqov\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc\",\"location\":\"westus2\",\"name\":\"asotest-rg-atnifc\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:10Z] ProfileController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestcklqfi resource status: Operation cannot be fulfilled on profiles.cdn.azure.com "asotestcklqfi": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profiles/aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestcklqfi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7cf6294c-44d2-4448-b982-e855daf5be01, UID in object meta: " name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] DiskController "msg"="Set owner reference" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ImageController "msg"="Resource creation/update failure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE: NotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"NotFound\",\n \"message\": \"The entity was not found in this Azure location.\",\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6327" generation=1 uid="65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] SnapshotController "msg"="applying ownership" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:10Z] ImageController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE: NotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "The entity was not found in this Azure location.", +[controller:test-integration-envtest] "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] DiskController "msg"="adding finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6336" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/ca66eba2-c537-447e-8cd0-0426d0f1e335?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:10Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6326" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6332" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Encountered error, re-queuing..." name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] SnapshotController "msg"="Set owner reference" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6332" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6328" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6337" generation=1 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] BatchAccountController "msg"="applying ownership" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="6331" generation=2 uid="63a7c4d1-8319-47ff-819d-edfd36521602" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"7cf6294c-44d2-4448-b982-e855daf5be01", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp="2023-09-08 21:22:10 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6338" generation=1 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6336" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/ca66eba2-c537-447e-8cd0-0426d0f1e335?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6339" generation=1 uid="6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6341" generation=1 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6342" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Encountered error, re-queuing..." name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6335" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="applying ownership" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] I0908 21:22:11.142437 31508 trace.go:236] Trace[1533182093]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.202) (total time: 18942ms): +[controller:test-integration-envtest] Trace[1533182093]: ---"Objects listed" error: 18942ms (21:22:11.142) +[controller:test-integration-envtest] Trace[1533182093]: [18.942991424s] [18.942991424s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6342" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ProfilesEndpointController "msg"="Determined Delete action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ProfilesEndpointController "msg"="Starting delete of resource" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ProfilesEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ProfilesEndpointController "msg"="Delete succeeded, removing finalizer" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] BatchAccountController "msg"="Set owner reference" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:11.184659 31508 trace.go:236] Trace[516132923]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.203) (total time: 18983ms): +[controller:test-integration-envtest] Trace[516132923]: ---"Objects listed" error: 18983ms (21:22:11.184) +[controller:test-integration-envtest] Trace[516132923]: [18.983735254s] [18.983735254s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] SnapshotController "msg"="adding finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss\",\"location\":\"westus3\",\"name\":\"samplevmss\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"uniqueId\":\"f75cdd4e-c783-4b76-a16a-9a5af507b906\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"samplenicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"sampleipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"standard_d1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Set owner reference" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="About to send resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6340" generation=1 uid="b752a20f-912d-4b41-b824-0b97cbede892" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] I0908 21:22:11.266664 31508 trace.go:236] Trace[409757466]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.204) (total time: 19065ms): +[controller:test-integration-envtest] Trace[409757466]: ---"Objects listed" error: 19065ms (21:22:11.266) +[controller:test-integration-envtest] Trace[409757466]: [19.065261947s] [19.065261947s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] BatchAccountController "msg"="adding finalizer" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6346" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] RoleAssignmentController "msg"="applying ownership" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="About to send resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="Successfully sent resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:11Z] ProfilesEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestbnocne resource status: Operation cannot be fulfilled on profilesendpoints.cdn.azure.com "asotestbnocne": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profilesendpoints/aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestbnocne, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 63a7c4d1-8319-47ff-819d-edfd36521602, UID in object meta: " name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="adding finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6351" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c145328a-3f58-4e48-83c9-16dec8525e99?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:11.668568 31508 trace.go:236] Trace[1406637623]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.177) (total time: 19494ms): +[controller:test-integration-envtest] Trace[1406637623]: ---"Objects listed" error: 19494ms (21:22:11.668) +[controller:test-integration-envtest] Trace[1406637623]: [19.494030314s] [19.494030314s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6358" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/4d993a98-b6a4-4b8c-9bd3-1e32f9e4efe6?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:11.749959 31508 trace.go:236] Trace[1203230537]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.234) (total time: 19518ms): +[controller:test-integration-envtest] Trace[1203230537]: ---"Objects listed" error: 19518ms (21:22:11.749) +[controller:test-integration-envtest] Trace[1203230537]: [19.518479632s] [19.518479632s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6359" generation=1 uid="b165bfb9-4501-4d60-9964-f7b05dc1c25f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] RoleAssignmentController "msg"="Set owner reference" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6363" generation=1 uid="b752a20f-912d-4b41-b824-0b97cbede892" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6351" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c145328a-3f58-4e48-83c9-16dec8525e99?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6349" generation=1 uid="65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6352" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a79c60b0-6b53-4796-857f-339146989f58?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6358" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/4d993a98-b6a4-4b8c-9bd3-1e32f9e4efe6?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] WorkspaceController "msg"="Reconcile invoked" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6361" generation=1 uid="9a88ecfa-eba9-4241-8573-dae0924047b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] WorkspaceController "msg"="applying ownership" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Resource successfully created/updated" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6352" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a79c60b0-6b53-4796-857f-339146989f58?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6363" generation=1 uid="b752a20f-912d-4b41-b824-0b97cbede892" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20210701\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="Got ARM status" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm\",\"location\":\"westus3\",\"name\":\"aso-sample-vm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"assessmentMode\":\"ImageDefault\",\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"deleteOption\":\"Detach\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/aso-sample-vm_OsDisk_1_b6b585178b694a9f8f2c76dbf3f4fe5d\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"aso-sample-vm_OsDisk_1_b6b585178b694a9f8f2c76dbf3f4fe5d\",\"osType\":\"Linux\"}},\"timeCreated\":\"2023-07-10T22:16:01.0657327+00:00\",\"vmId\":\"cc285731-3c22-452e-80e8-755ce04814b3\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] I0908 21:22:11.879698 31508 trace.go:236] Trace[538903242]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.204) (total time: 19678ms): +[controller:test-integration-envtest] Trace[538903242]: ---"Objects listed" error: 19678ms (21:22:11.879) +[controller:test-integration-envtest] Trace[538903242]: [19.678244539s] [19.678244539s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6362" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] BatchAccountController "msg"="updated resource in etcd" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6354" generation=1 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] SnapshotController "msg"="About to send resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] SnapshotController "msg"="Successfully sent resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6367" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20220301\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] I0908 21:22:11.942063 31508 trace.go:236] Trace[1015918011]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.216) (total time: 19728ms): +[controller:test-integration-envtest] Trace[1015918011]: ---"Objects listed" error: 19728ms (21:22:11.941) +[controller:test-integration-envtest] Trace[1015918011]: [19.728736077s] [19.728736077s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6366" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/3655972a-e2d4-4dd8-b44b-d87d516c8404?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:11Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6366" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/3655972a-e2d4-4dd8-b44b-d87d516c8404?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] WorkspaceController "msg"="Set owner reference" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] DiskController "msg"="Resource successfully created/updated" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] I0908 21:22:12.138540 31508 trace.go:236] Trace[367084656]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.225) (total time: 19915ms): +[controller:test-integration-envtest] Trace[367084656]: ---"Objects listed" error: 19915ms (21:22:12.138) +[controller:test-integration-envtest] Trace[367084656]: [19.915820977s] [19.915820977s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1\",\"location\":\"westus3\",\"name\":\"samplevmss1\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"timeCreated\":\"2023-07-10T22:16:01.1438804+00:00\",\"uniqueId\":\"60f176f1-acdd-47a2-8308-4f9a795ad7ec\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"extensionProfile\":{\"extensions\":[{\"name\":\"mycustomextension\",\"properties\":{\"autoUpgradeMinorVersion\":false,\"publisher\":\"Microsoft.Azure.Extensions\",\"settings\":{\"commandToExecute\":\"/bin/bash -c \\\"echo hello\\\"\"},\"type\":\"CustomScript\",\"typeHandlerVersion\":\"2.0\"}}]},\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"mynicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"myipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"STANDARD_D1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] RoleAssignmentController "msg"="adding finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] DiskController "msg"="Got ARM status" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk\",\"location\":\"westus3\",\"name\":\"sampledisk\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"diskSizeBytes\":536870912000,\"diskSizeGB\":500,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:00.928832+00:00\",\"uniqueId\":\"1e8adf54-eb39-4c4c-9130-167c716016ba\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/disks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] I0908 21:22:12.238898 31508 trace.go:236] Trace[1866450715]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.225) (total time: 20015ms): +[controller:test-integration-envtest] Trace[1866450715]: ---"Objects listed" error: 20015ms (21:22:12.238) +[controller:test-integration-envtest] Trace[1866450715]: [20.015867372s] [20.015867372s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] WorkspaceController "msg"="adding finalizer" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="About to send resource to Azure" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Successfully sent resource to Azure" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="About to send resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] I0908 21:22:12.422098 31508 trace.go:236] Trace[875238448]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.226) (total time: 20197ms): +[controller:test-integration-envtest] Trace[875238448]: ---"Objects listed" error: 20197ms (21:22:12.421) +[controller:test-integration-envtest] Trace[875238448]: [20.197614111s] [20.197614111s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6378" generation=1 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6380" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] I0908 21:22:12.503377 31508 trace.go:236] Trace[936771685]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.227) (total time: 20277ms): +[controller:test-integration-envtest] Trace[936771685]: ---"Objects listed" error: 20277ms (21:22:12.502) +[controller:test-integration-envtest] Trace[936771685]: [20.277369062s] [20.277369062s] END +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] I0908 21:22:12.570084 31508 trace.go:236] Trace[586010110]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.223) (total time: 20349ms): +[controller:test-integration-envtest] Trace[586010110]: ---"Objects listed" error: 20348ms (21:22:12.569) +[controller:test-integration-envtest] Trace[586010110]: [20.349008757s] [20.349008757s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6383" generation=1 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6390" generation=1 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] WorkspaceController "msg"="updated resource in etcd" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6381" generation=1 uid="9a88ecfa-eba9-4241-8573-dae0924047b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b4959698-4d0e-49c0-8fb6-6e7ea205b978", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6389" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6392" generation=1 uid="b752a20f-912d-4b41-b824-0b97cbede892" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6377" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6387" generation=1 uid="65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:12.788336 31508 trace.go:236] Trace[1672801803]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.228) (total time: 20562ms): +[controller:test-integration-envtest] Trace[1672801803]: ---"Objects listed" error: 20562ms (21:22:12.788) +[controller:test-integration-envtest] Trace[1672801803]: [20.562534789s] [20.562534789s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="updated resource in etcd" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6393" generation=1 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi/operationResults/dc88950f-5d2c-41d9-8b26-26aa48579af4?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Done with reconcile" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag" +[controller:test-integration-envtest] I0908 21:22:12.847164 31508 trace.go:236] Trace[870263838]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.230) (total time: 20619ms): +[controller:test-integration-envtest] Trace[870263838]: ---"Objects listed" error: 20619ms (21:22:12.847) +[controller:test-integration-envtest] Trace[870263838]: [20.619353845s] [20.619353845s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:12Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6387" generation=1 uid="65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6396" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/b97408f9-74e0-47c2-9044-53b6f308d631?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6393" generation=1 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi/operationResults/dc88950f-5d2c-41d9-8b26-26aa48579af4?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6386" generation=1 uid="b165bfb9-4501-4d60-9964-f7b05dc1c25f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Resource not created yet, will check again" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Didn't commit obj as there was no change" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Done with reconcile" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] SnapshotController "msg"="Resource successfully created/updated" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] SnapshotController "msg"="Got ARM status" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\",\"location\":\"westus2\",\"name\":\"aso-sample-snapshot\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeBytes\":34359738368,\"diskSizeGB\":32,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:01.0676272+00:00\",\"uniqueId\":\"25fc167c-1844-4caf-b8a1-d2f91601ca9a\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/snapshots\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6394" generation=1 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz\",\"location\":\"westus2\",\"name\":\"asotest-rg-gwixyz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:12Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6396" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/b97408f9-74e0-47c2-9044-53b6f308d631?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6393" generation=1 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi/operationResults/dc88950f-5d2c-41d9-8b26-26aa48579af4?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:12.929504 31508 trace.go:236] Trace[1352634171]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.228) (total time: 20703ms): +[controller:test-integration-envtest] Trace[1352634171]: ---"Objects listed" error: 20703ms (21:22:12.929) +[controller:test-integration-envtest] Trace[1352634171]: [20.7038549s] [20.7038549s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] VirtualMachineController "msg"="Resource successfully created/updated" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] VirtualMachineController "msg"="Got ARM status" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm\",\"location\":\"westus3\",\"name\":\"samplevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/samplevm_OsDisk_1_72981c73114842eab163ea7d47665d09\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"samplevm_OsDisk_1_72981c73114842eab163ea7d47665d09\",\"osType\":\"Linux\"}},\"vmId\":\"d3f03373-33e8-4cf5-b799-b99e775be9e2\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:12Z] BatchAccountController "msg"="Resource successfully created/updated" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] BatchAccountController "msg"="Got ARM status" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi\",\"identity\":{\"type\":\"None\"},\"location\":\"westcentralus\",\"name\":\"asotestmgrosi\",\"properties\":{\"accountEndpoint\":\"asotestmgrosi.westcentralus.batch.azure.com\",\"activeJobAndJobScheduleQuota\":300,\"dedicatedCoreQuota\":0,\"dedicatedCoreQuotaPerVMFamily\":[{\"coreQuota\":0,\"name\":\"standardAv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv3Family\"},{\"coreQuota\":0,\"name\":\"standardEv3Family\"},{\"coreQuota\":0,\"name\":\"standardDSv2Family\"},{\"coreQuota\":0,\"name\":\"standardDSv3Family\"},{\"coreQuota\":0,\"name\":\"standardESv3Family\"},{\"coreQuota\":0,\"name\":\"standardFSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCFamily\"},{\"coreQuota\":0,\"name\":\"standardNVFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv4Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardA0_A7Family\"},{\"coreQuota\":0,\"name\":\"standardA8_A11Family\"},{\"coreQuota\":0,\"name\":\"standardDFamily\"},{\"coreQuota\":0,\"name\":\"standardGFamily\"},{\"coreQuota\":0,\"name\":\"basicAFamily\"},{\"coreQuota\":0,\"name\":\"standardFFamily\"},{\"coreQuota\":0,\"name\":\"standardNVPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardNCPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardHFamily\"},{\"coreQuota\":0,\"name\":\"standardHPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardMSFamily\"},{\"coreQuota\":0,\"name\":\"standardDSFamily\"},{\"coreQuota\":0,\"name\":\"standardFSFamily\"},{\"coreQuota\":0,\"name\":\"standardGSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNDSFamily\"},{\"coreQuota\":0,\"name\":\"standardNCSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBSFamily\"},{\"coreQuota\":0,\"name\":\"standardHCSFamily\"},{\"coreQuota\":0,\"name\":\"standardNVSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBrsv2Family\"},{\"coreQuota\":0,\"name\":\"standardDAv4Family\"},{\"coreQuota\":0,\"name\":\"standardDASv4Family\"},{\"coreQuota\":0,\"name\":\"standardEAv4Family\"},{\"coreQuota\":0,\"name\":\"standardEASv4Family\"},{\"coreQuota\":0,\"name\":\"standardMSv2Family\"},{\"coreQuota\":0,\"name\":\"standardEIv3Family\"},{\"coreQuota\":0,\"name\":\"standardNVSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NCASv3_T4 Family\"},{\"coreQuota\":0,\"name\":\"standardXEIDSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NDASv4_A100 Family\"},{\"coreQuota\":0,\"name\":\"standardDCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardHBv3Family\"},{\"coreQuota\":0,\"name\":\"standardNPSFamily\"},{\"coreQuota\":0,\"name\":\"standardFXMDVSFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv5Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardNCADSA100v4Family\"},{\"coreQuota\":0,\"name\":\"standardDADSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEADSv5Family\"},{\"coreQuota\":0,\"name\":\"StandardNVADSA10v5Family\"},{\"coreQuota\":0,\"name\":\"standardEBDSv5Family\"}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"lowPriorityCoreQuota\":0,\"poolAllocationMode\":\"BatchService\",\"poolQuota\":100,\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.Batch/batchAccounts\"}" +[controller:test-integration-envtest] I0908 21:22:13.069376 31508 trace.go:236] Trace[1406959062]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.229) (total time: 20842ms): +[controller:test-integration-envtest] Trace[1406959062]: ---"Objects listed" error: 20842ms (21:22:13.069) +[controller:test-integration-envtest] Trace[1406959062]: [20.842514292s] [20.842514292s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6404" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] I0908 21:22:13.172909 31508 trace.go:236] Trace[1971389035]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.223) (total time: 20952ms): +[controller:test-integration-envtest] Trace[1971389035]: ---"Objects listed" error: 20951ms (21:22:13.172) +[controller:test-integration-envtest] Trace[1971389035]: [20.952004013s] [20.952004013s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6405" generation=1 uid="65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="updated resource in etcd" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6409" generation=1 uid="9a88ecfa-eba9-4241-8573-dae0924047b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b4959698-4d0e-49c0-8fb6-6e7ea205b978", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6411" generation=1 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="Reconcile invoked" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6409" generation=1 uid="9a88ecfa-eba9-4241-8573-dae0924047b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b4959698-4d0e-49c0-8fb6-6e7ea205b978", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6404" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6412" generation=1 uid="b165bfb9-4501-4d60-9964-f7b05dc1c25f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6261" generation=2 uid="a3b9be36-2e30-4c1d-9fad-4ffd796c057c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:51 +0000 UTC" deletionTimestamp="2023-09-08 21:22:07 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="Got ARM status" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag\",\"location\":\"westcentralus\",\"name\":\"asotestdftsag\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"25a00b9e-7c61-4ef1-b6f5-55d801bc6eea\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6412" generation=1 uid="b165bfb9-4501-4d60-9964-f7b05dc1c25f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] I0908 21:22:13.360526 31508 trace.go:236] Trace[43990221]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.229) (total time: 21134ms): +[controller:test-integration-envtest] Trace[43990221]: ---"Objects listed" error: 21134ms (21:22:13.360) +[controller:test-integration-envtest] Trace[43990221]: [21.134104141s] [21.134104141s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] BatchAccountController "msg"="updated resource in etcd" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6414" generation=1 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] BatchAccountController "msg"="Done with reconcile" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6417" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] I0908 21:22:13.660698 31508 trace.go:236] Trace[864742134]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.230) (total time: 21432ms): +[controller:test-integration-envtest] Trace[864742134]: ---"Objects listed" error: 21432ms (21:22:13.660) +[controller:test-integration-envtest] Trace[864742134]: [21.432225502s] [21.432225502s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] I0908 21:22:13.731875 31508 trace.go:236] Trace[171632614]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.231) (total time: 21503ms): +[controller:test-integration-envtest] Trace[171632614]: ---"Objects listed" error: 21503ms (21:22:13.731) +[controller:test-integration-envtest] Trace[171632614]: [21.503503841s] [21.503503841s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"737615ed-0c79-42f4-83ae-a7e0708c79ef\",\"principalId\":\"1fb2e51d-57b9-42ab-98b3-12b2a835b166\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] I0908 21:22:13.872124 31508 trace.go:236] Trace[1579167556]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.210) (total time: 21664ms): +[controller:test-integration-envtest] Trace[1579167556]: ---"Objects listed" error: 21664ms (21:22:13.871) +[controller:test-integration-envtest] Trace[1579167556]: [21.664673335s] [21.664673335s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/asotest-rg-dwrfmg resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-dwrfmg": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-0d27c/asotest-rg-dwrfmg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a3b9be36-2e30-4c1d-9fad-4ffd796c057c, UID in object meta: " name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="updated resource in etcd" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6424" generation=1 uid="9a88ecfa-eba9-4241-8573-dae0924047b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b4959698-4d0e-49c0-8fb6-6e7ea205b978", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] WorkspaceController "msg"="Done with reconcile" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6422" generation=2 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-0d27c/asotest-rg-dwrfmg aso-test-samples-creationanddeletion-test-containerservic-0d27c/sampleworkspaces aso-test-samples-creationanddeletion-test-containerservic-0d27c/asoworkspacestorageacct aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault aso-test-samples-creationanddeletion-test-containerservic-0d27c/samplemanagedcluster202221preview aso-test-samples-creationanddeletion-test-containerservic-0d27c/pool202221p aso-test-samples-creationanddeletion-test-containerservic-0d27c/sample-tarb]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6404" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6423" generation=1 uid="009359e2-1776-456b-95c5-5d5befc35201" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:13 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ConfigurationStoreController "msg"="applying ownership" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:13Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6426" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6404" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ConfigurationStoreController "msg"="Set owner reference" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ConfigurationStoreController "msg"="adding finalizer" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] I0908 21:22:14.333722 31508 trace.go:236] Trace[1427674550]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.230) (total time: 22105ms): +[controller:test-integration-envtest] Trace[1427674550]: ---"Objects listed" error: 22105ms (21:22:14.333) +[controller:test-integration-envtest] Trace[1427674550]: [22.105077393s] [22.105077393s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6432" generation=1 uid="b165bfb9-4501-4d60-9964-f7b05dc1c25f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6433" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="Successfully sent resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6431" generation=2 uid="c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:57 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] WorkspaceController "msg"="Determined Delete action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] WorkspaceController "msg"="Starting delete of resource" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6439" generation=2 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6439" generation=2 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="6441" generation=2 uid="adb215b2-d1c6-4a3f-b12e-91889de5aef3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6438" generation=1 uid="009359e2-1776-456b-95c5-5d5befc35201" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"cf113fa9-8538-460a-b220-82a178ef22e0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] StorageAccountController "msg"="Determined Delete action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] StorageAccountController "msg"="Starting delete of resource" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ConfigurationStoreController "msg"="Determined CreateOrUpdate action" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6442" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="6449" generation=2 uid="2b29f7e4-2ae3-44da-ac56-d8bd65fed807" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:52 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:21:54 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6439" generation=2 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6445" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:14Z] RoleAssignmentController "msg"="applying ownership" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ConfigurationStoreController "msg"="About to send resource to Azure" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ConfigurationStoreController "msg"="Successfully sent resource to Azure" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] VaultController "msg"="Determined Delete action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] VaultController "msg"="Starting delete of resource" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] VaultController "msg"="Delete succeeded, removing finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] I0908 21:22:15.250471 31508 trace.go:236] Trace[1106109689]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.230) (total time: 23022ms): +[controller:test-integration-envtest] Trace[1106109689]: ---"Objects listed" error: 23022ms (21:22:15.250) +[controller:test-integration-envtest] Trace[1106109689]: [23.022424607s] [23.022424607s] END +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:15Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/asoworkspacestorageacct resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asoworkspacestorageacct": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-containerservic-0d27c/asoworkspacestorageacct, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adb215b2-d1c6-4a3f-b12e-91889de5aef3, UID in object meta: " name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6442" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] RoleAssignmentController "msg"="Set owner reference" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] RoleAssignmentController "msg"="Resource successfully created/updated" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] RoleAssignmentController "msg"="Got ARM status" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\",\"name\":\"778d7607-9bda-5093-9734-e1db04b19339\",\"properties\":{\"createdBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"createdOn\":\"2001-02-03T04:05:06Z\",\"principalId\":\"81fa57e6-ed07-4101-8932-7453a099b873\",\"principalType\":\"ServicePrincipal\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq\",\"updatedBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"updatedOn\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Authorization/roleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6439" generation=2 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:15Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/sampleworkspaces resource status: Operation cannot be fulfilled on workspaces.machinelearningservices.azure.com "sampleworkspaces": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspaces/aso-test-samples-creationanddeletion-test-containerservic-0d27c/sampleworkspaces, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c9f4f380-b6ae-4682-8dbe-2d46ae91e3d9, UID in object meta: " name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] I0908 21:22:15.434704 31508 trace.go:236] Trace[1891035667]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.349) (total time: 23087ms): +[controller:test-integration-envtest] Trace[1891035667]: ---"Objects listed" error: 23087ms (21:22:15.434) +[controller:test-integration-envtest] Trace[1891035667]: [23.08773519s] [23.08773519s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] RoleAssignmentController "msg"="adding finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] I0908 21:22:15.598138 31508 trace.go:236] Trace[1502159756]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.350) (total time: 23250ms): +[controller:test-integration-envtest] Trace[1502159756]: ---"Objects listed" error: 23250ms (21:22:15.597) +[controller:test-integration-envtest] Trace[1502159756]: [23.250084504s] [23.250084504s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6439" generation=2 uid="ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6460" generation=1 uid="009359e2-1776-456b-95c5-5d5befc35201" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"cf113fa9-8538-460a-b220-82a178ef22e0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/d9C3zhetW1huLa7-8uKnJ5gr32CZotj4Onn3qYUElsQ?api-version=2022-05-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx?api-version=2022-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ConfigurationStoreController "msg"="Done with reconcile" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] I0908 21:22:15.899928 31508 trace.go:236] Trace[300546933]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.351) (total time: 23551ms): +[controller:test-integration-envtest] Trace[300546933]: ---"Objects listed" error: 23551ms (21:22:15.899) +[controller:test-integration-envtest] Trace[300546933]: [23.551437315s] [23.551437315s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:15Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:16Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "mlworkspaces-vault": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2b29f7e4-2ae3-44da-ac56-d8bd65fed807, UID in object meta: " name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6460" generation=1 uid="009359e2-1776-456b-95c5-5d5befc35201" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"cf113fa9-8538-460a-b220-82a178ef22e0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/d9C3zhetW1huLa7-8uKnJ5gr32CZotj4Onn3qYUElsQ?api-version=2022-05-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx?api-version=2022-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6456" generation=2 uid="e6eabf13-f005-4554-9a05-ccffbb8d9767" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"a3b9be36-2e30-4c1d-9fad-4ffd796c057c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:15 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:02 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Determined CreateOrUpdate action" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Resource successfully created/updated" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Got ARM status" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx\",\"location\":\"westus2\",\"name\":\"asotestuzefrx\",\"properties\":{\"creationDate\":\"2022-10-19T17:54:32+00:00\",\"disableLocalAuth\":false,\"enablePurgeProtection\":false,\"encryption\":{},\"endpoint\":\"https://asotestuzefrx.azconfig.io\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Disabled\",\"softDeleteRetentionInDays\":7},\"sku\":{\"name\":\"standard\"},\"systemData\":{\"createdAt\":\"2022-10-19T17:54:32+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2022-10-19T17:54:33+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.AppConfiguration/configurationStores\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Getting Kubernetes resources for export" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" ResourcesToWrite=0 +[controller:test-integration-envtest] I0908 21:22:16.327160 31508 trace.go:236] Trace[416306019]: "Reflector ListAndWatch" name:pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:229 (08-Sep-2023 21:21:52.349) (total time: 23979ms): +[controller:test-integration-envtest] Trace[416306019]: ---"Objects listed" error: 23979ms (21:22:16.326) +[controller:test-integration-envtest] Trace[416306019]: [23.979809955s] [23.979809955s] END +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="865" generation=1 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6461" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=2 uid="b4959698-4d0e-49c0-8fb6-6e7ea205b978" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:14 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6466" generation=1 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:15 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotest-rg-bqrmed resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bqrmed": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotest-rg-bqrmed, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9, UID in object meta: " name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotest-rg-bqrmed aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotestmgrosi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:16Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/samplemanagedcluster202221preview resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster202221preview": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-0d27c/samplemanagedcluster202221preview, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6eabf13-f005-4554-9a05-ccffbb8d9767, UID in object meta: " name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="871" generation=1 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotest-rg-atnifc resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-atnifc": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotest-rg-atnifc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b4959698-4d0e-49c0-8fb6-6e7ea205b978, UID in object meta: " name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6473" generation=1 uid="009359e2-1776-456b-95c5-5d5befc35201" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"cf113fa9-8538-460a-b220-82a178ef22e0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:13 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ConfigurationStoreController "msg"="Done with reconcile" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6476" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:08 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotest-rg-atnifc aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotestdftsag]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="6480" generation=2 uid="0c480e12-a33d-4c80-b051-0359b103a8be" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:58 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:16Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6478" generation=2 uid="9c9308a1-f241-4ea2-adc6-db50d93b57c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ec778fdf-fa7c-4a88-bcb1-b5586eeccdf9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] BatchAccountController "msg"="Determined Delete action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] BatchAccountController "msg"="Starting delete of resource" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] BatchAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] BatchAccountController "msg"="Delete succeeded, removing finalizer" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6486" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] WorkspaceController "msg"="Reconcile invoked" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6488" generation=2 uid="9a88ecfa-eba9-4241-8573-dae0924047b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b4959698-4d0e-49c0-8fb6-6e7ea205b978", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="6484" generation=2 uid="60928854-d2f1-4423-8de1-bb48baa63386" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"e6eabf13-f005-4554-9a05-ccffbb8d9767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6487" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] TrustedAccessRoleBindingController "msg"="Determined Delete action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] TrustedAccessRoleBindingController "msg"="Starting delete of resource" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] TrustedAccessRoleBindingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] WorkspaceController "msg"="Determined Delete action" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] TrustedAccessRoleBindingController "msg"="Delete succeeded, removing finalizer" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] WorkspaceController "msg"="Starting delete of resource" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6486" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:17Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/pool202221p resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool202221p": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-0d27c/pool202221p, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0c480e12-a33d-4c80-b051-0359b103a8be, UID in object meta: " name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6446" generation=2 uid="c1068c99-30fa-4265-98bb-7c819108e8aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:22:13 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:14 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6486" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:17Z] TrustedAccessRoleBindingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/sample-tarb resource status: Operation cannot be fulfilled on trustedaccessrolebindings.containerservice.azure.com "sample-tarb": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/trustedaccessrolebindings/aso-test-samples-creationanddeletion-test-containerservic-0d27c/sample-tarb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 60928854-d2f1-4423-8de1-bb48baa63386, UID in object meta: " name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:17Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotestdftsag resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "asotestdftsag": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotestdftsag, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9a88ecfa-eba9-4241-8573-dae0924047b8, UID in object meta: " name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6486" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:17Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6502" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vdecpn": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c1068c99-30fa-4265-98bb-7c819108e8aa, UID in object meta: " name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sample-vmss-secret aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20210701 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20220301 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vm aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampledisk aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-snapshot aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevm]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6486" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6502" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6502" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6486" generation=2 uid="632ff2e8-d47a-4d4a-ac9d-ed2920c43698" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:16 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6507" generation=1 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6380" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6502" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6367" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/asotest-rg-kktczq resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kktczq": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/asotest-rg-kktczq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 632ff2e8-d47a-4d4a-ac9d-ed2920c43698, UID in object meta: " name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6502" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6502" generation=2 uid="cf113fa9-8538-460a-b220-82a178ef22e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:12 +0000 UTC" deletionTimestamp="2023-09-08 21:22:17 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:17 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6389" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6514" generation=1 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/asotest-rg-kktczq aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/aso-sample-contributor]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6417" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6518" generation=2 uid="87e6271b-c483-4028-b2bb-03e06a94b785" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6516" generation=1 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6515" generation=1 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotest-rg-gwixyz aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotestuzefrx]... +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotest-rg-gwixyz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gwixyz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotest-rg-gwixyz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: cf113fa9-8538-460a-b220-82a178ef22e0, UID in object meta: " name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6519" generation=1 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 87e6271b-c483-4028-b2bb-03e06a94b785, UID in object meta: " name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii\",\"location\":\"westus2\",\"name\":\"asotest-rg-lzksii\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja\",\"location\":\"westus2\",\"name\":\"asotest-rg-xvqdja\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6524" generation=2 uid="324fce9a-f11d-49fb-9195-32f621557b76" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:01 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6527" generation=1 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6532" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6534" generation=1 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6529" generation=2 uid="6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:08 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6533" generation=2 uid="054c7ad6-5be2-45ae-aacd-f048d67c43f9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey\",\"location\":\"westus2\",\"name\":\"asotest-rg-epdyey\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6530" generation=2 uid="009359e2-1776-456b-95c5-5d5befc35201" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"cf113fa9-8538-460a-b220-82a178ef22e0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:13 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:18Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 324fce9a-f11d-49fb-9195-32f621557b76, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ConfigurationStoreController "msg"="Determined Delete action" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ConfigurationStoreController "msg"="Starting delete of resource" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ConfigurationStoreController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ConfigurationStoreController "msg"="Delete succeeded, removing finalizer" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6532" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6540" generation=1 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6539" generation=2 uid="4337104b-c0e6-4fd8-a114-400be0d481b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:18Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6546" generation=1 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6541" generation=2 uid="8cb8ce2f-4a4c-493e-8489-2e64ba902cb2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"632ff2e8-d47a-4d4a-ac9d-ed2920c43698", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp="2023-09-08 21:22:18 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:15 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] ConfigurationStoreController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotestuzefrx resource status: Operation cannot be fulfilled on configurationstores.appconfiguration.azure.com "asotestuzefrx": StorageError: invalid object, Code: 4, Key: /registry/appconfiguration.azure.com/configurationstores/aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotestuzefrx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 009359e2-1776-456b-95c5-5d5befc35201, UID in object meta: " name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6f84bbdb-5e45-46d9-a8ed-4b4e8ebf09b8, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6548" generation=2 uid="19eb77bf-2cbc-4563-82ca-1bb767bc8e4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp="2023-09-08 21:22:19 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:06 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 054c7ad6-5be2-45ae-aacd-f048d67c43f9, UID in object meta: " name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6479" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss1 resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4337104b-c0e6-4fd8-a114-400be0d481b3, UID in object meta: " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Determined Delete action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Starting delete of resource" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Successfully issued DELETE to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6551" generation=2 uid="668cbbe3-acbf-49ee-8ee0-b632bc31e821" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp="2023-09-08 21:22:19 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] WorkspaceController "msg"="Reconcile invoked" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6553" generation=1 uid="33dcbb40-bef2-48eb-a0cb-a03df330ed6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] WorkspaceController "msg"="applying ownership" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] RoleAssignmentController "msg"="Successfully sent resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6554" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" id="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" resourceID="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 19eb77bf-2cbc-4563-82ca-1bb767bc8e4c, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesEventhubController "msg"="Owner does not yet exist" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" NamespacedName="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] WorkspaceController "msg"="Set owner reference" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6560" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespaceController "msg"="applying ownership" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" status="{\"id\":\"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve\",\"location\":\"westus2\",\"name\":\"asotest-rg-gxhtve\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2023-09-08T21:21:51Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6558" generation=2 uid="45a65f34-46b3-411e-916e-0efc05b73f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp="2023-09-08 21:22:19 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] WorkspaceController "msg"="adding finalizer" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6566" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="874" generation=1 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespaceController "msg"="Set owner reference" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-epdyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6565" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:19Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:19Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6568" generation=2 uid="70944688-45c6-4dbb-8118-7fdc9e38188b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp="2023-09-08 21:22:19 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:03 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6572" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6532" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6561" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6569" generation=1 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6575" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6561" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:22:16 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] WorkspaceController "msg"="updated resource in etcd" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6573" generation=1 uid="33dcbb40-bef2-48eb-a0cb-a03df330ed6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"15106a41-9b8b-40ac-b80d-30ca0cc9d3d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="adding finalizer" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Owner does not yet exist" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" NamespacedName="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6578" generation=2 uid="885940dc-5085-479a-9047-6de0e2f6fa3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp="2023-09-08 21:22:20 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="Resource successfully created/updated" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="Got ARM status" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\",\"name\":\"a0bf597c-9acb-5a53-96ec-a419ae71b361\",\"properties\":{\"createdBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"createdOn\":\"2001-02-03T04:05:06Z\",\"principalId\":\"1fb2e51d-57b9-42ab-98b3-12b2a835b166\",\"principalType\":\"ServicePrincipal\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov\",\"updatedBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"updatedOn\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Authorization/roleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 668cbbe3-acbf-49ee-8ee0-b632bc31e821, UID in object meta: " name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6532" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss1 resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 45a65f34-46b3-411e-916e-0efc05b73f2b, UID in object meta: " name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6579" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="applying ownership" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="updated resource in etcd" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6582" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6589" generation=2 uid="e84be3cf-bdec-4356-aa9c-2a65c803a94b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp="2023-09-08 21:22:20 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6581" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 885940dc-5085-479a-9047-6de0e2f6fa3c, UID in object meta: " name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6590" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="Set owner reference" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6583" generation=1 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 70944688-45c6-4dbb-8118-7fdc9e38188b, UID in object meta: " name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6591" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="About to send resource to Azure" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6598" generation=1 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] WorkspaceController "msg"="updated resource in etcd" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6601" generation=1 uid="33dcbb40-bef2-48eb-a0cb-a03df330ed6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"15106a41-9b8b-40ac-b80d-30ca0cc9d3d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] WorkspaceController "msg"="Done with reconcile" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:20Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6600" generation=2 uid="006e8fad-c440-4ca4-850f-69ed6ce71633" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp="2023-09-08 21:22:20 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:04 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="adding finalizer" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] WorkspaceController "msg"="Reconcile invoked" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6601" generation=1 uid="33dcbb40-bef2-48eb-a0cb-a03df330ed6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"15106a41-9b8b-40ac-b80d-30ca0cc9d3d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo\",\"location\":\"westus2\",\"name\":\"asotest-rg-upywuo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] WorkspaceController "msg"="Got ARM status" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj\",\"location\":\"westcentralus\",\"name\":\"asotestipyygj\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"f1f5c451-a77d-412d-a883-2e315b694c13\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6608" generation=2 uid="0d6c176b-7ae2-47e3-8658-e492c9261088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:02 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="updated resource in etcd" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6614" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e84be3cf-bdec-4356-aa9c-2a65c803a94b, UID in object meta: " name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6614" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6611" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:10 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6532" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 006e8fad-c440-4ca4-850f-69ed6ce71633, UID in object meta: " name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6523" generation=1 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] WorkspaceController "msg"="updated resource in etcd" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6615" generation=1 uid="33dcbb40-bef2-48eb-a0cb-a03df330ed6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"15106a41-9b8b-40ac-b80d-30ca0cc9d3d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] WorkspaceController "msg"="Done with reconcile" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6532" generation=1 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="updated resource in etcd" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6606" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6614" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6617" generation=1 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="About to send resource to Azure" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6614" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:21Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0d6c176b-7ae2-47e3-8658-e492c9261088, UID in object meta: " name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6626" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6620" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:21Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6614" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6626" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6628" generation=1 uid="3365afe4-3ec4-4fff-958a-6ac4ef461a89" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:21 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="applying ownership" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6624" generation=2 uid="ad68cae9-58c5-401b-ad30-735c050f2bce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6521" generation=1 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Got ARM status" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi\",\"location\":\"West Central US\",\"name\":\"asotestajtszi\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"disableLocalAuth\":false,\"isAutoInflateEnabled\":false,\"kafkaEnabled\":true,\"maximumThroughputUnits\":0,\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestajtszi\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestajtszi.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"capacity\":1,\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.EventHub/Namespaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="Set owner reference" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6626" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="updated resource in etcd" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6633" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6631" generation=2 uid="c54282d2-4802-4274-a210-785b22218e08" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:11 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6619" generation=2 uid="ea773049-9cbd-4941-95b5-ce4fe006abae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6633" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="adding finalizer" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6626" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6594" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="updated resource in etcd" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6640" generation=1 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20210701 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20210701": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20210701, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ad68cae9-58c5-401b-ad30-735c050f2bce, UID in object meta: " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="875" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="applying ownership" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="Set owner reference" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="adding finalizer" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6626" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6644" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6584" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Set owner reference" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6633" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="updated resource in etcd" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="877" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6642" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6644" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6641" generation=1 uid="3365afe4-3ec4-4fff-958a-6ac4ef461a89" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FleetController "msg"="About to send resource to Azure" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6626" generation=2 uid="1ee33013-b13d-4ebc-ba12-d1e81cbb011e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6637" generation=2 uid="babfd393-033a-4631-8431-5089eddef3a2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:09 +0000 UTC" deletionTimestamp="2023-09-08 21:22:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ea773049-9cbd-4941-95b5-ce4fe006abae, UID in object meta: " name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20220301 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20220301": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20220301, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c54282d2-4802-4274-a210-785b22218e08, UID in object meta: " name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Determined Delete action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Starting delete of resource" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubController "msg"="adding finalizer" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6538" generation=1 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6645" generation=2 uid="7b7e32bd-b3a9-483a-902a-86b3ce1d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6644" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6654" generation=2 uid="b752a20f-912d-4b41-b824-0b97cbede892" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:22 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6655" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6644" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-authorization-v-d7f58/asotest-rg-iydqov aso-test-samples-creationanddeletion-test-authorization-v-d7f58/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-authorization-v-d7f58/aso-sample-contributor]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] DiskController "msg"="Determined Delete action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] DiskController "msg"="Starting delete of resource" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] DiskController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] DiskController "msg"="Delete succeeded, removing finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-d7f58/asotest-rg-iydqov resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-iydqov": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-authorization-v-d7f58/asotest-rg-iydqov, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1ee33013-b13d-4ebc-ba12-d1e81cbb011e, UID in object meta: " name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6657" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"e19bb421-147e-4c28-a19d-b9f919c1b2b0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6633" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6659" generation=1 uid="3365afe4-3ec4-4fff-958a-6ac4ef461a89" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="6660" generation=2 uid="65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:23 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:12 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6655" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] SnapshotController "msg"="Determined Delete action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] SnapshotController "msg"="Starting delete of resource" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] SnapshotController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] SnapshotController "msg"="Delete succeeded, removing finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6659" generation=1 uid="3365afe4-3ec4-4fff-958a-6ac4ef461a89" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Determined CreateOrUpdate action" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6644" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6633" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="About to send resource to Azure" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Successfully sent resource to Azure" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Resource successfully created/updated" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Got ARM status" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy\",\"location\":\"westcentralus\",\"name\":\"asotestzczcxy\",\"properties\":{\"createdAt\":\"2023-03-23T23:16:08.453\",\"messageRetentionInDays\":7,\"partitionCount\":1,\"partitionIds\":[\"0\"],\"status\":\"Active\",\"updatedAt\":\"2023-03-23T23:16:08.57\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Got ARM status" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\",\"location\":\"westcentralus\",\"name\":\"asotestxkvmrd\",\"properties\":{\"clientId\":\"815d55c5-8aeb-40cc-9060-d6924e260e3f\",\"principalId\":\"7cb755f0-11f4-4637-a460-dff0590e5e02\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss1 resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss1": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7b7e32bd-b3a9-483a-902a-86b3ce1d905e, UID in object meta: " name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Got ARM status" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst\",\"location\":\"West Central US\",\"name\":\"asotestloljst\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"disableLocalAuth\":false,\"isAutoInflateEnabled\":false,\"kafkaEnabled\":true,\"maximumThroughputUnits\":0,\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestloljst\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestloljst.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"capacity\":1,\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.EventHub/Namespaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6644" generation=2 uid="15106a41-9b8b-40ac-b80d-30ca0cc9d3d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:21 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "aso-sample-vm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: babfd393-033a-4631-8431-5089eddef3a2, UID in object meta: " name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] DiskController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampledisk resource status: Operation cannot be fulfilled on disks.compute.azure.com "sampledisk": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/disks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampledisk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b752a20f-912d-4b41-b824-0b97cbede892, UID in object meta: " name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6670" generation=2 uid="b165bfb9-4501-4d60-9964-f7b05dc1c25f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:11 +0000 UTC" deletionTimestamp="2023-09-08 21:22:23 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:13 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6655" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] SnapshotController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-snapshot resource status: Operation cannot be fulfilled on snapshots.compute.azure.com "aso-sample-snapshot": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/snapshots/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-snapshot, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 65fcc63a-82ea-4f6c-b1a9-ccf57a7ba393, UID in object meta: " name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6665" generation=2 uid="1b2dacc8-9b4f-4d61-93f0-85439f932d9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"c1068c99-30fa-4265-98bb-7c819108e8aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:10 +0000 UTC" deletionTimestamp="2023-09-08 21:22:23 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6655" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Determined Delete action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Starting delete of resource" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6675" generation=1 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"e19bb421-147e-4c28-a19d-b9f919c1b2b0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:23 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubController "msg"="Done with reconcile" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="updated resource in etcd" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6676" generation=1 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:23 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:23Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] FleetController "msg"="Successfully sent resource to Azure" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" id="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6679" generation=1 uid="3365afe4-3ec4-4fff-958a-6ac4ef461a89" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:21 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:23 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] UserAssignedIdentityController "msg"="Done with reconcile" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:23Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotest-rg-xvqdja aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotestipyygj]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6672" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"e19bb421-147e-4c28-a19d-b9f919c1b2b0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6605" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6680" generation=2 uid="414543b8-e8e6-48f0-b5e8-04319bce1e21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"1ee33013-b13d-4ebc-ba12-d1e81cbb011e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:14 +0000 UTC" deletionTimestamp="2023-09-08 21:22:23 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FleetController "msg"="updated resource in etcd" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotest-rg-xvqdja resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-xvqdja": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotest-rg-xvqdja, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 15106a41-9b8b-40ac-b80d-30ca0cc9d3d3, UID in object meta: " name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6609" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6655" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-d7f58/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-authorization-v-d7f58/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b165bfb9-4501-4d60-9964-f7b05dc1c25f, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6603" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] RoleAssignmentController "msg"="Determined Delete action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] RoleAssignmentController "msg"="Starting delete of resource" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] RoleAssignmentController "msg"="Successfully issued DELETE to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] RoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "samplevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1b2dacc8-9b4f-4d61-93f0-85439f932d9a, UID in object meta: " name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6655" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6574" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestloljst" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationrules/asotestkccfkn\",\"location\":\"westcentralus\",\"name\":\"asotestkccfkn\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Set owner reference" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Set owner reference" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestzczcxy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] WorkspaceController "msg"="Reconcile invoked" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6687" generation=2 uid="33dcbb40-bef2-48eb-a0cb-a03df330ed6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"15106a41-9b8b-40ac-b80d-30ca0cc9d3d3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:24 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FederatedIdentityCredentialController "msg"="Set owner reference" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ownerGvk="managedidentity.azure.com/v1api20181130storage, Kind=UserAssignedIdentity" ownerName="asotestxkvmrd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] RoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-d7f58/aso-sample-contributor resource status: Operation cannot be fulfilled on roleassignments.authorization.azure.com "aso-sample-contributor": StorageError: invalid object, Code: 4, Key: /registry/authorization.azure.com/roleassignments/aso-test-samples-creationanddeletion-test-authorization-v-d7f58/aso-sample-contributor, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 414543b8-e8e6-48f0-b5e8-04319bce1e21, UID in object meta: " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] WorkspaceController "msg"="Determined Delete action" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] WorkspaceController "msg"="Starting delete of resource" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubController "msg"="Set owner reference" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="adding finalizer" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] FederatedIdentityCredentialController "msg"="adding finalizer" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsAuthorizationRuleController "msg"="adding finalizer" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6693" generation=1 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"e19bb421-147e-4c28-a19d-b9f919c1b2b0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:24 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubController "msg"="adding finalizer" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:24Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6695" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"4f6586ca-237d-47e0-b009-91db93bc2f4c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6697" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3365afe4-3ec4-4fff-958a-6ac4ef461a89", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Determined CreateOrUpdate action" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6698" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"4f6586ca-237d-47e0-b009-91db93bc2f4c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:25Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotestipyygj resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "asotestipyygj": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotestipyygj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 33dcbb40-bef2-48eb-a0cb-a03df330ed6b, UID in object meta: " name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6696" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"6abd1e21-9413-4cc7-83a2-3d1e60b34799", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Resource creation/update failure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationrules/asotestwqssoi\",\"location\":\"westcentralus\",\"name\":\"asotestwqssoi\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Got ARM status" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationrules/asotestfmqpry\",\"location\":\"westcentralus\",\"name\":\"asotestfmqpry\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/authorizationrules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6701" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"6abd1e21-9413-4cc7-83a2-3d1e60b34799", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubController "msg"="Determined CreateOrUpdate action" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="About to send resource to Azure" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully sent resource to Azure" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Resource successfully created/updated" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Got ARM status" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq\",\"location\":\"westcentralus\",\"name\":\"asotesthhwdlq\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"userMetadata\":\"Some interesting metadata\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/consumergroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6706" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3365afe4-3ec4-4fff-958a-6ac4ef461a89", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubController "msg"="About to send resource to Azure" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubController "msg"="Successfully sent resource to Azure" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubController "msg"="Resource successfully created/updated" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubController "msg"="Got ARM status" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane\",\"location\":\"westcentralus\",\"name\":\"asotestrvmane\",\"properties\":{\"createdAt\":\"2022-10-19T18:58:46.543\",\"messageRetentionInDays\":7,\"partitionCount\":1,\"partitionIds\":[\"0\"],\"status\":\"Active\",\"updatedAt\":\"2022-10-19T18:58:47.02\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6706" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3365afe4-3ec4-4fff-958a-6ac4ef461a89", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6711" generation=1 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"4f6586ca-237d-47e0-b009-91db93bc2f4c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Done with reconcile" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6710" generation=1 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"6abd1e21-9413-4cc7-83a2-3d1e60b34799", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6708" generation=2 uid="16412e63-906f-4c3e-838d-84574c6819ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"324fce9a-f11d-49fb-9195-32f621557b76", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp="2023-09-08 21:22:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:05 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Successfully sent resource to Azure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Resource successfully created/updated" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] FederatedIdentityCredentialController "msg"="Got ARM status" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl\",\"name\":\"asotestklmddl\",\"properties\":{\"audiences\":[\"api://AzureADTokenExchange\"],\"issuer\":\"https://oidc.prod-aks.azure.com/00000000-0000-0000-0000-00000000000/\",\"subject\":\"system:serviceaccount:default:default\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:25Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6716" generation=1 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"4f6586ca-237d-47e0-b009-91db93bc2f4c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Done with reconcile" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6718" generation=1 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"6abd1e21-9413-4cc7-83a2-3d1e60b34799", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubController "msg"="Done with reconcile" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6714" generation=2 uid="acddcde5-94f8-481e-a290-3a34f700dadf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"885940dc-5085-479a-9047-6de0e2f6fa3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:01 +0000 UTC" deletionTimestamp="2023-09-08 21:22:25 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6721" generation=1 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3365afe4-3ec4-4fff-958a-6ac4ef461a89", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] FederatedIdentityCredentialController "msg"="Done with reconcile" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6720" generation=2 uid="bd905bbf-ce75-499c-b61c-ed3c2e9e86fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"006e8fad-c440-4ca4-850f-69ed6ce71633", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:00 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 16412e63-906f-4c3e-838d-84574c6819ba, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6724" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6596" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: acddcde5-94f8-481e-a290-3a34f700dadf, UID in object meta: " name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Set owner reference" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6585" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6727" generation=2 uid="49bc6111-f5ce-419c-bae4-720b78654a73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"0d6c176b-7ae2-47e3-8658-e492c9261088", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:21:59 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:07 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6729" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:21 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bd905bbf-ce75-499c-b61c-ed3c2e9e86fb, UID in object meta: " name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Set owner reference" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="adding finalizer" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6737" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="adding finalizer" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 49bc6111-f5ce-419c-bae4-720b78654a73, UID in object meta: " name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6737" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6742" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6737" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6740" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"77e09a39-f608-4345-852e-daa495dd5c3f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6737" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6742" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Determined CreateOrUpdate action" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6737" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6742" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="About to send resource to Azure" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully sent resource to Azure" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Resource successfully created/updated" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Got ARM status" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe\",\"location\":\"westcentralus\",\"name\":\"asotestmlxcqe\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"userMetadata\":\"Some interesting metadata\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/consumergroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6745" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"77e09a39-f608-4345-852e-daa495dd5c3f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:22:20 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6737" generation=2 uid="dcf078b3-aa75-4876-9066-a06cc035fc37" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:18 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6742" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6742" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsAuthorizationRuleController "msg"="Got ARM status" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationrules/asotestgylboh\",\"location\":\"westcentralus\",\"name\":\"asotestgylboh\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/authorizationrules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotest-rg-epdyey aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestajtszi aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestkccfkn aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestfmqpry aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotesthhwdlq]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotest-rg-epdyey resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-epdyey": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotest-rg-epdyey, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dcf078b3-aa75-4876-9066-a06cc035fc37, UID in object meta: " name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6753" generation=1 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"77e09a39-f608-4345-852e-daa495dd5c3f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] NamespacesEventhubsConsumerGroupController "msg"="Done with reconcile" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6742" generation=2 uid="d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:26Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6759" generation=1 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"77e09a39-f608-4345-852e-daa495dd5c3f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubsAuthorizationRuleController "msg"="Done with reconcile" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6758" generation=2 uid="e19bb421-147e-4c28-a19d-b9f919c1b2b0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"dcf078b3-aa75-4876-9066-a06cc035fc37", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:26 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespaceController "msg"="Determined Delete action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespaceController "msg"="Starting delete of resource" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotest-rg-upywuo aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestxkvmrd aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestklmddl]... +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotest-rg-upywuo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-upywuo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotest-rg-upywuo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab, UID in object meta: " name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:27Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestajtszi resource status: Operation cannot be fulfilled on namespaces.eventhub.azure.com "asotestajtszi": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaces/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestajtszi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e19bb421-147e-4c28-a19d-b9f919c1b2b0, UID in object meta: " name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6770" generation=2 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:18 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6769" generation=2 uid="92a7c5d9-6ab6-4991-920c-44c516bffc25" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"e19bb421-147e-4c28-a19d-b9f919c1b2b0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:24 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6772" generation=2 uid="3365afe4-3ec4-4fff-958a-6ac4ef461a89" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"d85a7cfb-74fc-4bbb-b5a5-7ab3a90677ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:21 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:23 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] UserAssignedIdentityController "msg"="Determined Delete action" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6774" generation=2 uid="4f6586ca-237d-47e0-b009-91db93bc2f4c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"e19bb421-147e-4c28-a19d-b9f919c1b2b0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:23 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubController "msg"="Determined Delete action" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubController "msg"="Starting delete of resource" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] NamespacesEventhubController "msg"="Delete succeeded, removing finalizer" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:27Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestkccfkn resource status: Operation cannot be fulfilled on namespacesauthorizationrules.eventhub.azure.com "asotestkccfkn": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestkccfkn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 92a7c5d9-6ab6-4991-920c-44c516bffc25, UID in object meta: " name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:27Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestxkvmrd resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "asotestxkvmrd": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestxkvmrd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3365afe4-3ec4-4fff-958a-6ac4ef461a89, UID in object meta: " name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6782" generation=2 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6782" generation=2 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="6784" generation=2 uid="b520c1ea-2d18-49ef-a750-d5366d2d64e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3365afe4-3ec4-4fff-958a-6ac4ef461a89", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FederatedIdentityCredentialController "msg"="Determined Delete action" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FederatedIdentityCredentialController "msg"="Starting delete of resource" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FederatedIdentityCredentialController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] FederatedIdentityCredentialController "msg"="Delete succeeded, removing finalizer" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:27Z] NamespacesEventhubController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy resource status: Operation cannot be fulfilled on namespaceseventhubs.eventhub.azure.com "asotestzczcxy": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubs/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4f6586ca-237d-47e0-b009-91db93bc2f4c, UID in object meta: " name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6782" generation=2 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:27Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:27Z] FederatedIdentityCredentialController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestklmddl resource status: Operation cannot be fulfilled on federatedidentitycredentials.managedidentity.azure.com "asotestklmddl": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/federatedidentitycredentials/aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestklmddl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b520c1ea-2d18-49ef-a750-d5366d2d64e5, UID in object meta: " name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6782" generation=2 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6782" generation=2 uid="fccbb376-73c0-4948-a5e6-980390c474cb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:22:17 +0000 UTC" deletionTimestamp="2023-09-08 21:22:27 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:22:27 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6790" generation=2 uid="fe8fa957-52c9-4d70-8449-b21df367bc33" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"4f6586ca-237d-47e0-b009-91db93bc2f4c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp="2023-09-08 21:22:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined Delete action" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsAuthorizationRuleController "msg"="Starting delete of resource" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:28Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotest-rg-lzksii resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-lzksii": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotest-rg-lzksii, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fccbb376-73c0-4948-a5e6-980390c474cb, UID in object meta: " name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotest-rg-lzksii aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestrvmane aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestgylboh aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestmlxcqe aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestwqssoi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:28Z] NamespacesEventhubsAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestfmqpry resource status: Operation cannot be fulfilled on namespaceseventhubsauthorizationrules.eventhub.azure.com "asotestfmqpry": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestfmqpry, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fe8fa957-52c9-4d70-8449-b21df367bc33, UID in object meta: " name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6798" generation=2 uid="3ddf964b-e737-4486-9a6e-b8f0099b5648" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"4f6586ca-237d-47e0-b009-91db93bc2f4c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp="2023-09-08 21:22:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsConsumerGroupController "msg"="Determined Delete action" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsConsumerGroupController "msg"="Starting delete of resource" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespacesEventhubsConsumerGroupController "msg"="Delete succeeded, removing finalizer" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:28Z] NamespacesEventhubsConsumerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotesthhwdlq resource status: Operation cannot be fulfilled on namespaceseventhubsconsumergroups.eventhub.azure.com "asotesthhwdlq": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsconsumergroups/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotesthhwdlq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3ddf964b-e737-4486-9a6e-b8f0099b5648, UID in object meta: " name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6809" generation=2 uid="6abd1e21-9413-4cc7-83a2-3d1e60b34799" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"fccbb376-73c0-4948-a5e6-980390c474cb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp="2023-09-08 21:22:28 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:23 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespaceController "msg"="Determined Delete action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespaceController "msg"="Starting delete of resource" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:28Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:29Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst resource status: Operation cannot be fulfilled on namespaces.eventhub.azure.com "asotestloljst": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaces/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6abd1e21-9413-4cc7-83a2-3d1e60b34799, UID in object meta: " name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6822" generation=2 uid="77e09a39-f608-4345-852e-daa495dd5c3f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"6abd1e21-9413-4cc7-83a2-3d1e60b34799", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubController "msg"="Determined Delete action" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubController "msg"="Starting delete of resource" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubController "msg"="Delete succeeded, removing finalizer" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6826" generation=2 uid="e2d122d7-4294-4550-b955-b415135c3dc4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"6abd1e21-9413-4cc7-83a2-3d1e60b34799", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:20 +0000 UTC" deletionTimestamp="2023-09-08 21:22:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:25 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:29Z] NamespacesEventhubController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestrvmane resource status: Operation cannot be fulfilled on namespaceseventhubs.eventhub.azure.com "asotestrvmane": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubs/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestrvmane, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 77e09a39-f608-4345-852e-daa495dd5c3f, UID in object meta: " name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:29Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestwqssoi resource status: Operation cannot be fulfilled on namespacesauthorizationrules.eventhub.azure.com "asotestwqssoi": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestwqssoi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e2d122d7-4294-4550-b955-b415135c3dc4, UID in object meta: " name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6834" generation=2 uid="07d711ae-733d-44b6-a3ad-6caebc328fbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"77e09a39-f608-4345-852e-daa495dd5c3f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined Delete action" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubsAuthorizationRuleController "msg"="Starting delete of resource" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:29Z] NamespacesEventhubsAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:30Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6839" generation=2 uid="dafbd76b-65a1-497a-9f67-e56bcc4ea950" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"77e09a39-f608-4345-852e-daa495dd5c3f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:19 +0000 UTC" deletionTimestamp="2023-09-08 21:22:29 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:26 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:30Z] NamespacesEventhubsConsumerGroupController "msg"="Determined Delete action" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:30Z] NamespacesEventhubsConsumerGroupController "msg"="Starting delete of resource" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:30Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:30Z] NamespacesEventhubsConsumerGroupController "msg"="Delete succeeded, removing finalizer" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:30Z] NamespacesEventhubsAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestgylboh resource status: Operation cannot be fulfilled on namespaceseventhubsauthorizationrules.eventhub.azure.com "asotestgylboh": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestgylboh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 07d711ae-733d-44b6-a3ad-6caebc328fbf, UID in object meta: " name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:22:30Z] NamespacesEventhubsConsumerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestmlxcqe resource status: Operation cannot be fulfilled on namespaceseventhubsconsumergroups.eventhub.azure.com "asotestmlxcqe": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsconsumergroups/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestmlxcqe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dafbd76b-65a1-497a-9f67-e56bcc4ea950, UID in object meta: " name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:30Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:32Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:32Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:32Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:32Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:32Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:40Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:40Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:41Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:41Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:41Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:57Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:57Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:57Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:57Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:22:57Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:23:29Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:23:29Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:23:29Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:23:29Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:23:29Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:24:29Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:24:29Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:24:30Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:24:30Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:24:30Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:25:30Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:25:30Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:25:30Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:25:30Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:25:30Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:30Z] FleetController "msg"="Reconcile invoked" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="881" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:22:22 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:30Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:31Z] FleetController "msg"="Resource successfully created/updated" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" resourceID="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:31Z] FleetController "msg"="Got ARM status" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet202315preview" status="{\"eTag\":\"\\\"0f008956-0000-4d00-0000-64fb916d0000\\\"\",\"id\":\"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview\",\"location\":\"westus3\",\"name\":\"samplefleet202315preview\",\"properties\":{\"hubProfile\":{\"dnsPrefix\":\"aso\",\"fqdn\":\"aso-y5yhdno3.hcp.westus3.azmk8s.io\",\"kubernetesVersion\":\"1.25.11\"},\"provisioningState\":\"Succeeded\"},\"systemData\":{\"createdAt\":\"2023-09-08T21:22:23.5972509Z\",\"createdBy\":\"954d4203-089b-43a8-b725-0e8fd05d5ced\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2023-09-08T21:22:23.5972509Z\",\"lastModifiedBy\":\"954d4203-089b-43a8-b725-0e8fd05d5ced\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.ContainerService/fleets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:31Z] FleetController "msg"="updated resource in etcd" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="943" generation=1 uid="99176646-c8df-455f-b5c5-330ee424ce5b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"9384559a-6b33-4180-8e85-4d510b76d489", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:22:22 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet202315preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:26:31 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:31Z] FleetController "msg"="Done with reconcile" name="samplefleet202315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] 2023/09/08 21:26:33 http: TLS handshake error from 127.0.0.1:49604: read tcp 127.0.0.1:45305->127.0.0.1:49604: read: connection reset by peer +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:22:19 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:33Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:35Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:35Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:26:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:06Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:06Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:06Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:21Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:21Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:21Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:21Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:21Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:21Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:27:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:07Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:07Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:07Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:23Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:23Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:23Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:28:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:09Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:09Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:09Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:09Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:09Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:09Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:24Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:24Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:24Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:39Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:40Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:40Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:29:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:11Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:11Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:11Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:26Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:26Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:26Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:26Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:26Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:26Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:30:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:13Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:13Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:13Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:28Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:28Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:28Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:31:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:30Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:30Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:32:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:16Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:16Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:16Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:33:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:18Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:18Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:18Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="949" generation=2 uid="9384559a-6b33-4180-8e85-4d510b76d489" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:21:57 +0000 UTC" deletionTimestamp="2023-09-08 21:26:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:26:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:34:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] kube_per_test_context.go:511: +[controller:test-integration-envtest] Timed out after 491.952s. +[controller:test-integration-envtest] Expected +[controller:test-integration-envtest] <*v1api20200601.ResourceGroup | 0xc00da95e00>: { +[controller:test-integration-envtest] TypeMeta: {Kind: "", APIVersion: ""}, +[controller:test-integration-envtest] ObjectMeta: { +[controller:test-integration-envtest] Name: "asotest-rg-gxhtve", +[controller:test-integration-envtest] GenerateName: "", +[controller:test-integration-envtest] Namespace: "aso-test-samples-creationanddeletion-test-containerservic-1407f", +[controller:test-integration-envtest] SelfLink: "", +[controller:test-integration-envtest] UID: "9384559a-6b33-4180-8e85-4d510b76d489", +[controller:test-integration-envtest] ResourceVersion: "949", +[controller:test-integration-envtest] Generation: 2, +[controller:test-integration-envtest] CreationTimestamp: { +[controller:test-integration-envtest] Time: 2023-09-08T21:21:57Z, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] DeletionTimestamp: { +[controller:test-integration-envtest] Time: 2023-09-08T21:26:33Z, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] DeletionGracePeriodSeconds: 0, +[controller:test-integration-envtest] Labels: nil, +[controller:test-integration-envtest] Annotations: { +[controller:test-integration-envtest] "serviceoperator.azure.com/poller-resume-id": "GenericClient.DeleteByID", +[controller:test-integration-envtest] "serviceoperator.azure.com/poller-resume-token": "{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", +[controller:test-integration-envtest] "serviceoperator.azure.com/resource-id": "/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] OwnerReferences: nil, +[controller:test-integration-envtest] Finalizers: [ +[controller:test-integration-envtest] "serviceoperator.azure.com/finalizer", +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] ManagedFields: [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] Manager: "Go-http-client", +[controller:test-integration-envtest] Operation: "Update", +[controller:test-integration-envtest] APIVersion: "resources.azure.com/v1api20200601", +[controller:test-integration-envtest] Time: { +[controller:test-integration-envtest] Time: 2023-09-08T21:21:57Z, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] FieldsType: "FieldsV1", +[controller:test-integration-envtest] FieldsV1: { +[controller:test-integration-envtest] Raw: "{\"f:spec\":{\".\":{},\"f:location\":{},\"f:tags\":{\".\":{},\"f:CreatedAt\":{}}}}", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Subresource: "", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] Manager: "Go-http-client", +[controller:test-integration-envtest] Operation: "Update", +[controller:test-integration-envtest] APIVersion: "resources.azure.com/v1api20200601storage", +[controller:test-integration-envtest] Time: { +[controller:test-integration-envtest] Time: 2023-09-08T21:26:35Z, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] FieldsType: "FieldsV1", +[controller:test-integration-envtest] FieldsV1: { +[controller:test-integration-envtest] Raw: "{\"f:metadata\":{\"f:annotations\":{\".\":{},\"f:serviceoperator.azure.com/poller-resume-id\":{},\"f:serviceoperator.azure.com/poller-resume-token\":{},\"f:serviceoperator.azure.com/resource-id\":{}},\"f:finalizers\":{\".\":{},\"v:\\\"serviceoperator.azure.com/finalizer\\\"\":{}}}}", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Subresource: "", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] Manager: "Go-http-client", +[controller:test-integration-envtest] Operation: "Update", +[controller:test-integration-envtest] APIVersion: "resources.azure.com/v1api20200601storage", +[controller:test-integration-envtest] Time: { +[controller:test-integration-envtest] Time: 2023-09-08T21:26:35Z, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] FieldsType: "FieldsV1", +[controller:test-integration-envtest] FieldsV1: { +[controller:test-integration-envtest] Raw: "{\"f:status\":{\"f:conditions\":{},\"f:id\":{},\"f:location\":{},\"f:name\":{},\"f:properties\":{\".\":{},\"f:provisioningState\":{}},\"f:tags\":{\".\":{},\"f:CreatedAt\":{}},\"f:type\":{}}}", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Subresource: "status", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Spec: { +[controller:test-integration-envtest] AzureName: "asotest-rg-gxhtve", +[controller:test-integration-envtest] Location: "westus2", +[controller:test-integration-envtest] ManagedBy: nil, +[controller:test-integration-envtest] Tags: { +[controller:test-integration-envtest] "CreatedAt": "2023-09-08T21:21:51Z", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Status: { +[controller:test-integration-envtest] Conditions: [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] Type: "Ready", +[controller:test-integration-envtest] Status: "False", +[controller:test-integration-envtest] Severity: "Info", +[controller:test-integration-envtest] LastTransitionTime: { +[controller:test-integration-envtest] Time: 2023-09-08T21:26:35Z, +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] ObservedGeneration: 2, +[controller:test-integration-envtest] Reason: "Deleting", +[controller:test-integration-envtest] Message: "The resource is being deleted", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] Id: "/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve", +[controller:test-integration-envtest] Location: "westus2", +[controller:test-integration-envtest] ManagedBy: nil, +[controller:test-integration-envtest] Name: "asotest-rg-gxhtve", +[controller:test-integration-envtest] Properties: { +[controller:test-integration-envtest] ProvisioningState: "Succeeded", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Tags: { +[controller:test-integration-envtest] "CreatedAt": "2023-09-08T21:21:51Z", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] Type: "Microsoft.Resources/resourceGroups", +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] } +[controller:test-integration-envtest] to be deleted +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-1407f/asotest-rg-gxhtve aso-test-samples-creationanddeletion-test-containerservic-1407f/samplefleet202315preview]... +[controller:test-integration-envtest] panic: test timed out after 15m0s +[controller:test-integration-envtest] running tests: +[controller:test-integration-envtest] Test_Samples_CreationAndDeletion (15m0s) +[controller:test-integration-envtest] Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion (13m41s) +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79052 [running]: +[controller:test-integration-envtest] testing.(*M).startAlarm.func1() +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:2241 +0x3c5 +[controller:test-integration-envtest] created by time.goFunc +[controller:test-integration-envtest] /usr/local/go/src/time/sleep.go:176 +0x32 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 1 [chan receive, 15 minutes]: +[controller:test-integration-envtest] testing.tRunner.func1() +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1542 +0x4a5 +[controller:test-integration-envtest] testing.tRunner(0xc0000276c0, 0xc000491bb0) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1582 +0x144 +[controller:test-integration-envtest] testing.runTests(0xc00020a960?, {0x8844540, 0x85, 0x85}, {0xc000491c68?, 0x4baf45?, 0x885a1e0?}) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:2034 +0x489 +[controller:test-integration-envtest] testing.(*M).Run(0xc00020a960) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1906 +0x63a +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.SetupTeardownTestMain(0x0?, 0x59c95a8?, 0x59c95b0) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/wait.go:67 +0x169 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/controllers_test.TestMain(0xffffffffffffffff?) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/controllers/suite_test.go:69 +0x27 +[controller:test-integration-envtest] main.main() +[controller:test-integration-envtest] _testmain.go:315 +0x1d3 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 12 [chan receive, 12 minutes]: +[controller:test-integration-envtest] testing.tRunner.func1() +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1542 +0x4a5 +[controller:test-integration-envtest] testing.tRunner(0xc000027860, 0x59c94c8) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1582 +0x144 +[controller:test-integration-envtest] created by testing.(*T).Run +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1629 +0x3ea +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67863 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01eeb9f38?, {0x5d9c8c0, 0xc017c4a000}, 0x1, 0xc017c34120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01eeb9fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc017c23560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78834 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58af48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58af38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58af30, {0xc00b0b8600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b8600?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afd040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afd040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afd040, {0x4f3b7c0, 0xc01d2367e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f804240, {0xc008d17400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c780, 0x2?, {0x5dbd7f0, 0xc023b10e40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80cb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67829 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc015522f38?, {0x5d9c8c0, 0xc017fcc480}, 0x1, 0xc017fd40c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc015522fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01795cea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71982 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063e00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72725 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca7d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78467 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012422480, 0xc01f0d0000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78684 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1200, 0xc01f9a1700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72032 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca850, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67542 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf050, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130623c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72462 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf590, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69354 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d51cf38?, {0x5d9c8c0, 0xc01c65e270}, 0x1, 0xc01c613860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d51cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01c62fe60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70619 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e74cf38?, {0x5d9c8c0, 0xc021d454a0}, 0x1, 0xc021d54c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01e74cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc021d58b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79 [select]: +[controller:test-integration-envtest] github.com/onsi/gomega/internal.(*AsyncAssertion).match(0xc012efe310, {0x5dc28d0?, 0xc0231ffea0}, 0x1, {0x0, 0x0, 0x0}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/onsi/gomega@v1.27.7/internal/async_assertion.go:538 +0x8b4 +[controller:test-integration-envtest] github.com/onsi/gomega/internal.(*AsyncAssertion).Should(0xc012efe310, {0x5dc28d0, 0xc0231ffea0}, {0x0, 0x0, 0x0}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/onsi/gomega@v1.27.7/internal/async_assertion.go:145 +0x8d +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.(*KubePerTestContext).deleteResourcesAndWait(0xc010c05180, {0xc01418b730, 0x1, 0x1?}) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_per_test_context.go:528 +0x157 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.(*KubePerTestContext).DeleteResourcesAndWait(0xc000272b60?, {0xc00fa68c40?, 0x2?, 0xc0008a1368?}) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_per_test_context.go:557 +0x54 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.KubeGlobalContext.forTestWithConfig.func1() +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_per_test_context.go:199 +0x268 +[controller:test-integration-envtest] testing.(*common).Cleanup.func1() +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1150 +0x11f +[controller:test-integration-envtest] testing.(*common).runCleanup(0xc000272b60, 0x532806?) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1328 +0xe2 +[controller:test-integration-envtest] testing.tRunner.func2() +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1570 +0x29 +[controller:test-integration-envtest] runtime.Goexit() +[controller:test-integration-envtest] /usr/local/go/src/runtime/panic.go:522 +0x177 +[controller:test-integration-envtest] testing.(*common).FailNow(0xc000272b60) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:980 +0x4c +[controller:test-integration-envtest] testing.(*common).Fatalf(0xc000272b60, {0x5813f87?, 0x40d987?}, {0xc01418b640?, 0x4cf8de0?, 0xc000272b01?}) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1064 +0x65 +[controller:test-integration-envtest] github.com/onsi/gomega/internal.(*Gomega).ConfigureWithT.func1({0xc0010de000, 0x126e}, {0xc0008a1740?, 0x3?, 0x3?}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/onsi/gomega@v1.27.7/internal/gomega.go:37 +0xb1 +[controller:test-integration-envtest] github.com/onsi/gomega/internal.(*AsyncAssertion).match.func3({0x581bb35, 0x9}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/onsi/gomega@v1.27.7/internal/async_assertion.go:478 +0x1d3 +[controller:test-integration-envtest] github.com/onsi/gomega/internal.(*AsyncAssertion).match(0xc012d2e620, {0x5dc28d0?, 0xc01a4acb00}, 0x1, {0x0, 0x0, 0x0}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/onsi/gomega@v1.27.7/internal/async_assertion.go:560 +0xee3 +[controller:test-integration-envtest] github.com/onsi/gomega/internal.(*AsyncAssertion).Should(0xc012d2e620, {0x5dc28d0, 0xc01a4acb00}, {0x0, 0x0, 0x0}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/onsi/gomega@v1.27.7/internal/async_assertion.go:145 +0x8d +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.(*KubePerTestContext).DeleteResourceAndWait(0xc010c05180, {0x5e1e5c8?, 0xc00da95e00}) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_per_test_context.go:511 +0x109 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/controllers_test.runGroupTest(0xc010c05180, {0xc000076640, 0x33}) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/controllers/samples_test.go:115 +0x906 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/controllers_test.Test_Samples_CreationAndDeletion.func1.1(0xc000027860?) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/controllers/samples_test.go:69 +0x6c +[controller:test-integration-envtest] testing.tRunner(0xc000272b60, 0xc0000122e8) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1576 +0x10b +[controller:test-integration-envtest] created by testing.(*T).Run +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1629 +0x3ea +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60744 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc008446a20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60511 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc014abe000, 0xc009b337b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60498 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b418, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018dd6b30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b3f0, 0xc00cf12040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f0030}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e078?, 0x3b9aca00, 0x0, 0x0?, 0x21643c72db9b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8f20, 0xc01f3b7900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78892 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022201548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022201538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022201530, {0xc01e26f200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26f200?, 0x3?, 0x7f7fe04a9500?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab1540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab1540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab1540, {0x4f3b7c0, 0xc023fb53b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5d5c0, {0xc014576c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfecb90, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f794040}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60472 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start.func2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:279 +0x50 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:278 +0x91b +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78587 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394f9c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394f9b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394f9b0, {0xc009c29400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c29400?, 0x3?, 0x37effa600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a2f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a2f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a2f00, {0x4f3b7c0, 0xc023fb5b78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc006f23e30, {0xc008763000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0194525a0, 0x2?, {0x5dbd7f0, 0xc00ac4d940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc00ac4d900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61129 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009caff38?, {0x5d9c8c0, 0xc011324180}, 0x1, 0xc008460ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77680 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022201980, 0xc023460800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc016e97340?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60471 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/certwatcher.(*CertWatcher).Start(0xc010c2e000, {0x5dd1c70, 0xc0157e53b0}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/certwatcher/certwatcher.go:118 +0x2ab +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:245 +0x25 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:244 +0x410 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78084 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c2000, 0xc005791300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c880?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62445 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d75e7d0, 0xc009db4120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59249 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cad800}, {0x7f7fb0611580, 0xc0058b40b0}, {0x5e003f8?, 0x574bf00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00d684c40, {0x0?, 0x0?}, 0xc00e227560, 0xc00165f840?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00d684c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ab2e140?, {0x5d9c8a0, 0xc015433950}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00d684c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78598 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c3848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c3838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c3830, {0xc01eaf3800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01eaf3800?, 0x3?, 0x7f7fe04a9100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab0780, {0x4f3b7c0, 0xc0234ca060}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a70b0, {0xc0110c7000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073040, 0xc011f700c0?, {0x5dbd7f0, 0xc01f794480}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab815e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79031 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f632c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f632c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f632c30, {0xc00e6d0400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d0400?, 0x3?, 0x37edfe000?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2c8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2c8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2c8c0, {0x4f3b7c0, 0xc023e5ecd8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f377d40, {0xc003393c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835cf00, 0x2?, {0x5dbd7f0, 0xc023f519c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80d60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72514 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca250, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44dbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61928 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b54c0}, {0x7f7fb0611580, 0xc015104630}, {0x5e003f8?, 0x572d180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50540, {0x0?, 0x0?}, 0xc00e227560, 0xc00ed544e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008f845c0?, {0x5d9c8a0, 0xc00d9e65f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61125 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60758 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78036 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad5500, 0xc023461700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f379140?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77913 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f260ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f260ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f260ab0, {0xc023e0a200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0a200?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0640, {0x4f3b7c0, 0xc00d126240}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacc9c0, {0xc007848400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072140, 0xc011f700c0?, {0x5dbd7f0, 0xc01df08540}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca2740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78573 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012871800, 0xc023461f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69e140?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60487 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117be68, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117be40, 0xc00d604a30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c007e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e938?, 0x3b9aca00, 0x0, 0x0?, 0x1f86e4695be9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e8c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e82c0, 0xc00b5aed00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72105 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca250, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009bd1800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44dbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62382 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59260 [chan receive]: +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*Broadcaster).loop(0xc0157e4cd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/mux.go:268 +0x65 +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewLongQueueBroadcaster +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/mux.go:93 +0x116 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78530 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25a948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc020ab2bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25a930, {0xc001ccc000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccc000?, 0x3?, 0xc00abddce8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3b7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3b7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3b7c0, {0x4f3b7c0, 0xc023c5bd70}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f2e1860, {0xc00b0c5c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835def0, 0xc01d287b90?, {0x5dbd7f0, 0xc01f82c000}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da8000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6bf80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77997 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad47c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad47b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad47b0, {0xc00ad5c600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5c600?, 0x3?, 0x37eb48e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3a000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3a000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3a000, {0x4f3b7c0, 0xc01d589d58}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3afc20, {0xc009c26800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad09b0, 0x2?, {0x5dbd7f0, 0xc01f3789c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cffc00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f378980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60491 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001691ba8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001691b80, 0xc0101f64e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a69c280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0136530e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a69c2f8?, 0x3b9aca00, 0x0, 0x0?, 0x2183ce3ac453?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a69c280, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001691550, 0xc01d567f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63034 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a45a738?, {0x5d9c8c0, 0xc01de461e0}, 0x1, 0xc00d6e4600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00dabe750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78290 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b90c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b90b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b90b0, {0xc01f2ffe00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2ffe00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73d2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73d2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73d2c0, {0x4f3b7c0, 0xc023946c78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f346360, {0xc000721000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13540, 0xc01d0899b0?, {0x5dbd7f0, 0xc01f3f5780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236bec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60466 [select, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*controllerManager).Start(0xc016a7c9c0, {0x5dd1c70, 0xc00fc37ef0}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/internal.go:509 +0x867 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.createSharedEnvTest.func6() +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:248 +0x31 +[controller:test-integration-envtest] created by github.com/Azure/azure-service-operator/v2/internal/testcommon.createSharedEnvTest +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:245 +0x10fe +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62425 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc20000, 0xc00e227560, 0xc00fa25f20, 0x70757320796c7463?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60508 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6bf80}, {0x7f7fb0611580, 0xc001691a20}, {0x5e003f8?, 0x5788540}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001c1d420, {0x0?, 0x0?}, 0xc00e227560, 0xc007a4ffe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001c1d420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0086b3740?, {0x5d9c8a0, 0xc010c2e230}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001c1d420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61250 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78127 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee0f00, 0xc023940900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78626 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c729380, 0xc00a186700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c440?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60517 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc013e64190, 0xc00badea61?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78491 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb9080, 0xc023940c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60559 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78433 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25a900, 0xc023df2900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61265 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62617 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac2e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac2c0, 0xc010835cd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772be0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d0660}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772c58?, 0x3b9aca00, 0x0, 0x0?, 0x1e23ca23e19a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772be0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e96b0, 0xc01da2a300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60570 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582c460, 0xc009b33fd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60771 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130623c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e981580) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61822 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0062679e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60499 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f4a0, 0xc00d6054d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9eaa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c012c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9eb18?, 0x3b9aca00, 0x0, 0x0?, 0x21520e9c4d68?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9eaa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e88f0, 0xc010294200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60775 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62639 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae9b0, 0x7974227b3a227365?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60773 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00c0fd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60558 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0157e59f0, 0xc00badea61?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61927 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78299 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6300, 0xc01f9a1900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32e2c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 495 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a4f8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00813f120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a4d0, 0xc00792cf90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007949110}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a438?, 0x3b9aca00, 0x0, 0x0?, 0x1fe64ee8291d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a3c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6a50, 0x74206f7420686369?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4232 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efcde8, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d3cb4c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efcdc0, 0xc000b19f40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00651adb0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694398?, 0x3b9aca00, 0x0, 0x0?, 0x20b2d38e3a82?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694320, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4160, 0xc000a32e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 163 [syscall, 14 minutes]: +[controller:test-integration-envtest] syscall.Syscall6(0x0?, 0x0?, 0x0?, 0x0?, 0x0?, 0x0?, 0x0?) +[controller:test-integration-envtest] /usr/local/go/src/syscall/syscall_linux.go:91 +0x36 +[controller:test-integration-envtest] os.(*Process).blockUntilWaitable(0xc0003aa780) +[controller:test-integration-envtest] /usr/local/go/src/os/wait_waitid.go:32 +0x87 +[controller:test-integration-envtest] os.(*Process).wait(0xc0003aa780) +[controller:test-integration-envtest] /usr/local/go/src/os/exec_unix.go:22 +0x28 +[controller:test-integration-envtest] os.(*Process).Wait(...) +[controller:test-integration-envtest] /usr/local/go/src/os/exec.go:132 +[controller:test-integration-envtest] os/exec.(*Cmd).Wait(0xc000342580) +[controller:test-integration-envtest] /usr/local/go/src/os/exec/exec.go:890 +0x45 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:174 +0x65 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:172 +0x33c +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 494 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a448, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e255740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a420, 0xc00792cd00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007948e40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a398?, 0x3b9aca00, 0x0, 0x0?, 0x22906f521943?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a320, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c68f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 182 [syscall, 14 minutes]: +[controller:test-integration-envtest] syscall.Syscall6(0x3?, 0x9?, 0x0?, 0x0?, 0xc0000b2620?, 0xc0000b2620?, 0x46e01d?) +[controller:test-integration-envtest] /usr/local/go/src/syscall/syscall_linux.go:91 +0x36 +[controller:test-integration-envtest] os.(*Process).blockUntilWaitable(0xc0004b4de0) +[controller:test-integration-envtest] /usr/local/go/src/os/wait_waitid.go:32 +0x87 +[controller:test-integration-envtest] os.(*Process).wait(0xc0004b4de0) +[controller:test-integration-envtest] /usr/local/go/src/os/exec_unix.go:22 +0x28 +[controller:test-integration-envtest] os.(*Process).Wait(...) +[controller:test-integration-envtest] /usr/local/go/src/os/exec.go:132 +[controller:test-integration-envtest] os/exec.(*Cmd).Wait(0xc00016be40) +[controller:test-integration-envtest] /usr/local/go/src/os/exec/exec.go:890 +0x45 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:174 +0x65 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:172 +0x33c +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 490 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc002177320) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2235 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea8e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2234 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea8a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4234 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027c4738?, {0x5d9c8c0, 0xc00642bb60}, 0x1, 0xc00792b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x76225b3a22736e6f?, 0x3b9aca00, 0x0, 0x6e?, 0x22726576654e223a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc003ddfe60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2230 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc002175080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2054 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0001496d8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001e2e1c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0001496b0, 0xc003a38b30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002114e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004f68cf0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002114ed8?, 0x3b9aca00, 0x0, 0x0?, 0x2252c5516e76?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002114e60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6630, 0x6f72707041206e65?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6365 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0089de010, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01e2df4a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da50e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2231 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77935 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a61c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a61b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a61b0, {0xc01e26fa00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26fa00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7900, {0x4f3b7c0, 0xc0234ca228}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f35a6c0, {0xc00e0b0000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453b30, 0x2?, {0x5dbd7f0, 0xc023cac2c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cac200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78501 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c8587c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c8587b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c8587b0, {0xc008139e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139e00?, 0x3?, 0x37ea98600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefcc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefcc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefcc80, {0x4f3b7c0, 0xc023dc6a38}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7194a0, {0xc00e596400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cadc0, 0x2?, {0x5dbd7f0, 0xc023c2d580}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff2e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2d440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2287 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000185500, 0xc00792a060, 0xc00766f860, 0xc0075f2fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2051 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0009589c8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005c6ac00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0009589a0, 0xc0075be670) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0058c9040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0075b31d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0058c90b8?, 0x3b9aca00, 0x0, 0x0?, 0x1f910e1d5d9b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0058c9040, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6d10, 0x747265706f727022?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78854 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012981980, 0xc02043c700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c7200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2370 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc002177440) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2242 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc000ab1590, 0x64616574736e6920?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 848 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002e25f0, 0x7265762064657461?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2279 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000185340, 0xc00792a060, 0xc00766eba0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2226 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc5d40}, {0x7f7fb0611580, 0xc0001496b0}, {0x5e003f8?, 0x5737600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000185500, {0x0?, 0x0?}, 0xc00792a060, 0xc0076bf8e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000185500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006d02640?, {0x5d9c8a0, 0xc000ab1c70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000185500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 849 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2053 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007eae238, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ea0f3a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc007eae210, 0xc007eba7c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc007ec01e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007eb48a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc007ec0258?, 0x3b9aca00, 0x0, 0x0?, 0x215f8f0c8dfe?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc007ec01e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958420, 0x20656874202c6465?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2052 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000958868, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011bc40e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000958840, 0xc0075be150) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0058c8f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0075b2c30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0058c8f78?, 0x3b9aca00, 0x0, 0x0?, 0x22e0a513eb98?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0058c8f00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958370, 0x626f223a22657079?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 841 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002d7d10, 0xc00042bfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 242 [IO wait]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb8775578, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc007e54100?, 0xc008140000?, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Read(0xc007e54100, {0xc008140000, 0xa000, 0xa000}) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:167 +0x299 +[controller:test-integration-envtest] net.(*netFD).Read(0xc007e54100, {0xc008140000?, 0xc008140005?, 0x54?}) +[controller:test-integration-envtest] /usr/local/go/src/net/fd_posix.go:55 +0x29 +[controller:test-integration-envtest] net.(*conn).Read(0xc0002dfbc8, {0xc008140000?, 0x0?, 0xc007e0d330?}) +[controller:test-integration-envtest] /usr/local/go/src/net/net.go:183 +0x45 +[controller:test-integration-envtest] crypto/tls.(*atLeastReader).Read(0xc01d611080, {0xc008140000?, 0xc01d611080?, 0x0?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:788 +0x3d +[controller:test-integration-envtest] bytes.(*Buffer).ReadFrom(0xc007e0d410, {0x5d97be0, 0xc01d611080}) +[controller:test-integration-envtest] /usr/local/go/src/bytes/buffer.go:202 +0x98 +[controller:test-integration-envtest] crypto/tls.(*Conn).readFromUntil(0xc007e0d180, {0x5d9cd20?, 0xc0002dfbc8}, 0xc00c3fabb0?) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:810 +0xe5 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecordOrCCS(0xc007e0d180, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:617 +0x116 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecord(...) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:583 +[controller:test-integration-envtest] crypto/tls.(*Conn).Read(0xc007e0d180, {0xc007e63000, 0x1000, 0x5dba2f8?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:1316 +0x16f +[controller:test-integration-envtest] bufio.(*Reader).Read(0xc007e592c0, {0xc007e5e120, 0x9, 0xc023476f6c?}) +[controller:test-integration-envtest] /usr/local/go/src/bufio/bufio.go:237 +0x1bb +[controller:test-integration-envtest] io.ReadAtLeast({0x5d979e0, 0xc007e592c0}, {0xc007e5e120, 0x9, 0x9}, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] io.ReadFull(...) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:351 +[controller:test-integration-envtest] golang.org/x/net/http2.readFrameHeader({0xc007e5e120?, 0x9?, 0xc00042fdb0?}, {0x5d979e0?, 0xc007e592c0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/frame.go:237 +0x6e +[controller:test-integration-envtest] golang.org/x/net/http2.(*Framer).ReadFrame(0xc007e5e0e0) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/frame.go:498 +0x95 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientConnReadLoop).run(0xc00042ff98) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2254 +0x12e +[controller:test-integration-envtest] golang.org/x/net/http2.(*ClientConn).readLoop(0xc007dea900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2149 +0x6f +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*Transport).newClientConn +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:821 +0xc1f +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 843 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09f80}, {0x7f7fb0611580, 0xc000149600}, {0x5e003f8?, 0x5736b80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000185340, {0x0?, 0x0?}, 0xc00792a060, 0xc0076bf580?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000185340, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006d02540?, {0x5d9c8a0, 0xc000ab1a40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000185340, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78833 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f051c80, 0xc01f0d1000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc01244efc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2050 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000958918, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009a76ca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0009588f0, 0xc0075be3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0058c8fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0075b2f00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0058c9018?, 0x3b9aca00, 0x0, 0x0?, 0x1dd53b6bf1db?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0058c8fa0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6bb0, 0x7274736967655272?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 497 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0004c6ff8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006f4bc20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0004c6fd0, 0xc00516ce00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004de2280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004df1230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004de22f8?, 0x3b9aca00, 0x0, 0x0?, 0x212ebff5f1b9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004de2280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6b00, 0x697263736564227b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 496 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a2e8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010739880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a2c0, 0xc00792c7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0079488a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a258?, 0x3b9aca00, 0x0, 0x0?, 0x1e971ed09570?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a1e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958210, 0x54203a656d614e22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2103 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002be7d0, 0xc000429fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2276 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007600000, 0xc00792a060, 0xc00766e6c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 493 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a398, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d482920?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a370, 0xc00792ca70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007948b70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a2f8?, 0x3b9aca00, 0x0, 0x0?, 0x208a00c8a8a2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958580, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2261 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b05a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a799a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 491 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).Start(0xc002118e00, {0x5dd1c70, 0xc000ab0ff0}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:214 +0x45 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cluster.(*cluster).Start(0x72656469766f7270?, {0x5dd1c70?, 0xc000ab0ff0?}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cluster/internal.go:104 +0x82 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00773d860) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2698 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc009342000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2193 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0075497a0, 0xc00792a060, 0xc007868ea0, 0xc0077befb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 877 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6bd80}, {0x7f7fb0611580, 0xc0004c6e70}, {0x5e003f8?, 0x572ed80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007600000, {0x0?, 0x0?}, 0xc00792a060, 0xc00773dae0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007600000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004df2280?, {0x5d9c8a0, 0xc00027ea00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007600000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2225 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 876 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 842 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 871 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/certwatcher.(*CertWatcher).Start(0xc00027e280, {0x5dd1c70, 0xc000ab0fa0}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/certwatcher/certwatcher.go:118 +0x2ab +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:245 +0x25 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:244 +0x410 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 875 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002d6e60, 0xc002c90fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 873 [select, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/certwatcher.(*CertWatcher).Watch(0xc00027e280) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/certwatcher/certwatcher.go:126 +0xb8 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/certwatcher.(*CertWatcher).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/certwatcher/certwatcher.go:113 +0x25f +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 870 [IO wait, 14 minutes]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb8775758, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc003e196e0?, 0xc00768bed0?, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Read(0xc003e196e0, {0xc00768bed0, 0x10000, 0x10000}) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:167 +0x299 +[controller:test-integration-envtest] os.(*File).read(...) +[controller:test-integration-envtest] /usr/local/go/src/os/file_posix.go:31 +[controller:test-integration-envtest] os.(*File).Read(0xc0005cb8f0, {0xc00768bed0?, 0x6874206570797420?, 0x7720656c75722065?}) +[controller:test-integration-envtest] /usr/local/go/src/os/file.go:118 +0x5e +[controller:test-integration-envtest] github.com/fsnotify/fsnotify.(*Watcher).readEvents(0xc00027e410) +[controller:test-integration-envtest] /go/pkg/mod/github.com/fsnotify/fsnotify@v1.6.0/backend_inotify.go:356 +0xdf +[controller:test-integration-envtest] created by github.com/fsnotify/fsnotify.NewWatcher +[controller:test-integration-envtest] /go/pkg/mod/github.com/fsnotify/fsnotify@v1.6.0/backend_inotify.go:150 +0x1b0 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 872 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start.func2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:279 +0x50 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:278 +0x91b +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 868 [IO wait, 12 minutes]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb8775488, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc00016cf00?, 0x4?, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Accept(0xc00016cf00) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:614 +0x2bd +[controller:test-integration-envtest] net.(*netFD).accept(0xc00016cf00) +[controller:test-integration-envtest] /usr/local/go/src/net/fd_unix.go:172 +0x35 +[controller:test-integration-envtest] net.(*TCPListener).accept(0xc0043ad4e8) +[controller:test-integration-envtest] /usr/local/go/src/net/tcpsock_posix.go:148 +0x25 +[controller:test-integration-envtest] net.(*TCPListener).Accept(0xc0043ad4e8) +[controller:test-integration-envtest] /usr/local/go/src/net/tcpsock.go:297 +0x3d +[controller:test-integration-envtest] crypto/tls.(*listener).Accept(0xc0043ad500) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/tls.go:66 +0x2d +[controller:test-integration-envtest] net/http.(*Server).Serve(0xc0004a01e0, {0x5dc0860, 0xc0043ad500}) +[controller:test-integration-envtest] /usr/local/go/src/net/http/server.go:3059 +0x385 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start(0xc0001493f0, {0x5dd1c70?, 0xc000ab0fa0}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:294 +0x9a5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bebb00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 836 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*Broadcaster).loop(0xc000ab0370) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/mux.go:268 +0x65 +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewLongQueueBroadcaster +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/mux.go:93 +0x116 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 867 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc002177290) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2212 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00030db30, 0xc002c8ffb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2048 [select, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*controllerManager).Start(0xc003f98340, {0x5dd1c70, 0xc0075b6410}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/internal.go:509 +0x867 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.createSharedEnvTest.func6() +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:248 +0x31 +[controller:test-integration-envtest] created by github.com/Azure/azure-service-operator/v2/internal/testcommon.createSharedEnvTest +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:245 +0x10fe +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2055 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000958bd8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000958bb0, 0xc0075bee20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0058c9220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0075b3a40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0058c9298?, 0x3b9aca00, 0x0, 0x0?, 0x1e12c56ce5cd?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0058c9220, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958160, 0xc0077df400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2056 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007eae188, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed54b80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc007eae160, 0xc007eba530) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc007ec0140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007eb45d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc007ec01b8?, 0x3b9aca00, 0x0, 0x0?, 0x229d0e6e9225?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc007ec0140, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000149550, 0xc00abb1d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2057 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000149628, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f925ca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000149600, 0xc003a38870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002114dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004f689f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002114e38?, 0x3b9aca00, 0x0, 0x0?, 0x20b068e0885a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002114dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6580, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2058 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0004c6f48, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0132d1ec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0004c6f20, 0xc00516cb70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004de21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004df0f60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004de2258?, 0x3b9aca00, 0x0, 0x0?, 0x22a232c24f2d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004de21e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6840, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2059 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df4028, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0062452e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df4000, 0xc000df8010) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000dfa000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc000df6030}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000dfa078?, 0x3b9aca00, 0x0, 0x0?, 0x22d2ce7efb91?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000dfa000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6c60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2060 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000958a78, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e8a5180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000958a50, 0xc0075be900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0058c90e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0075b34a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0058c9158?, 0x3b9aca00, 0x0, 0x0?, 0x1dba4b47ce66?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0058c90e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958630, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2061 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000958b28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000958b00, 0xc0075beb90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0058c9180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0075b3770}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0058c91f8?, 0x3b9aca00, 0x0, 0x0?, 0x20194c3ce388?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0058c9180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0009586e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2062 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0004c6e98, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01394eb20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0004c6e70, 0xc00516c8e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004de2140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004df0c90}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004de21b8?, 0x3b9aca00, 0x0, 0x0?, 0x225c076ac3f4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004de2140, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6370, 0xc007851e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2063 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a5a8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015a49420?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a580, 0xc00792d220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0079493e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a4d8?, 0x3b9aca00, 0x0, 0x0?, 0x2318616e43c5?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0009582c0, 0xc0024f9400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2064 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000aba238, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010aa1e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000aba210, 0xc0097c8530) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0097ca140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0097c65d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0097ca1b8?, 0x3b9aca00, 0x0, 0x0?, 0x225015a18a56?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0097ca140, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c66e0, 0x4552206568742067?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2065 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007eae0d8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0060cfd00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc007eae0b0, 0xc007eba2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc007ec00a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007eb4300}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc007ec0118?, 0x3b9aca00, 0x0, 0x0?, 0x1e1db51236b2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc007ec00a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6dc0, 0x73696854202e6e6f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2066 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000aba0d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000aba0b0, 0xc0097c8010) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0097ca000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0097c6030}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0097ca078?, 0x3b9aca00, 0x0, 0x0?, 0x212104defb39?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0097ca000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000958790, 0x727065722065756c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2067 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000aba188, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0134c4440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000aba160, 0xc0097c82a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0097ca0a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0097c6300}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0097ca118?, 0x3b9aca00, 0x0, 0x0?, 0x20ad9a8cbede?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0097ca0a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c62c0, 0x2c22676e69727473?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2068 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007eae2e8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002e216c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc007eae2c0, 0xc007ebaa50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc007ec0280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007eb4b70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc007ec02f8?, 0x3b9aca00, 0x0, 0x0?, 0x20a9893cb0f8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc007ec0280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0001494a0, 0x656c626173696420?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2069 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00990e028, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f0a1b60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00990e000, 0xc009912010) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009914000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc009910030}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009914078?, 0x3b9aca00, 0x0, 0x0?, 0x20d7d847eac6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009914000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c64d0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2070 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a238, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f51fd80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a210, 0xc00792c550) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0079485d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a1b8?, 0x3b9aca00, 0x0, 0x0?, 0x1f9a8b9586d2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a140, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0009584d0, 0xc005fe0900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2071 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007eae028, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00df68280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc007eae000, 0xc007eba010) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc007ec0000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007eb4030}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc007ec0078?, 0x3b9aca00, 0x0, 0x0?, 0x1e99d8b89bd7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc007ec0000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6790, 0x53223a226e6f6974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2072 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a188, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a160, 0xc00792c2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a0a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007948300}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a118?, 0x3b9aca00, 0x0, 0x0?, 0x1d880cd1285d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a0a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c69a0, 0x7270222c22746365?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2073 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a0d8, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011276ca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a0b0, 0xc00792c030) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007948030}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794a078?, 0x3b9aca00, 0x0, 0x0?, 0x1efd00004d86?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794a000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6420, 0x206562206c6c6977?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2087 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00030d040, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2075 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002d73b0, 0x6420666f2074756f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2076 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2077 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7ec0}, {0x7f7fb0611580, 0xc000a3a0b0}, {0x5e003f8?, 0x572f100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956000, {0x0?, 0x0?}, 0xc00792a060, 0xc00793c3c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958040?, {0x5d9c8a0, 0xc007952000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 481 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956000, 0xc00792a060, 0xc0099163c0, 0xc00775bf10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2181 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002a9db0, 0x544154535f6d726f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc000116370, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 522 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002e3220, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78148 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fa7c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fa7b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fa7b0, {0xc00a741e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a741e00?, 0x3?, 0x5be79600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5a40, {0x4f3b7c0, 0xc00d126fc0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f90b980, {0xc0079b2c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c120f0, 0x2?, {0x5dbd7f0, 0xc01f16da80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e7e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16da40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 523 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2243 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2081 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002e3f90, 0xc00079efb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2082 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2083 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5240}, {0x7f7fb0611580, 0xc000a3a160}, {0x5e003f8?, 0x5745280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0079561c0, {0x0?, 0x0?}, 0xc00792a060, 0xc00793c660?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0079561c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958080?, {0x5d9c8a0, 0xc0079520f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0079561c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 524 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5580}, {0x7f7fb0611580, 0xc007eae000}, {0x5e003f8?, 0x5739900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6000, {0x0?, 0x0?}, 0xc00792a060, 0xc007ed8020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edc040?, {0x5d9c8a0, 0xc007ed2000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2108 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0079561c0, 0xc00792a060, 0xc004bdfaa0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 881 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002e38b0, 0xc00048a7d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2098 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2099 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31b4c0}, {0x7f7fb0611580, 0xc0004c6f20}, {0x5e003f8?, 0x573a000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076001c0, {0x0?, 0x0?}, 0xc00792a060, 0xc00773dee0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076001c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004df2680?, {0x5d9c8a0, 0xc00027ee10}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076001c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2186 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076001c0, 0xc00792a060, 0xc00792bf80, 0x656c755279726576?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78957 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fffc480, 0xc0237f0a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f4a00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2088 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2089 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6880}, {0x7f7fb0611580, 0xc000a3a210}, {0x5e003f8?, 0x5733e00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956380, {0x0?, 0x0?}, 0xc00792a060, 0xc00793c900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958480?, {0x5d9c8a0, 0xc0079521e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2294 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956380, 0xc00792a060, 0xc009916c60, 0x533b580?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2114 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00030c410, 0xc000484fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2115 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2116 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4700}, {0x7f7fb0611580, 0xc000958840}, {0x5e003f8?, 0x5732900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007549260, {0x0?, 0x0?}, 0xc00792a060, 0xc00758d1c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007549260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b80c0?, {0x5d9c8a0, 0xc0075b64b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007549260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2316 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007549260, 0xc00792a060, 0xc007869e00, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77944 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632a80, 0xc02043da00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e31b280?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2355 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6000, 0xc00792a060, 0xc0086ca060, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2104 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2105 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51bc0}, {0x7f7fb0611580, 0xc0004c6fd0}, {0x5e003f8?, 0x5746b00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007600380, {0x0?, 0x0?}, 0xc00792a060, 0xc0076021e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007600380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004df2800?, {0x5d9c8a0, 0xc00027ef00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007600380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2188 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007600380, 0xc00792a060, 0xc0078684e0, 0x646e6f4365746167?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2200 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002e2d70, 0x22656d616e225b3a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2131 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002bec30, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2132 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78300 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf6338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6330, {0xc0207abc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207abc00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf08c0, {0x4f3b7c0, 0xc023947668}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c91a0, {0xc00a184800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c139f0, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32e600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236bf5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32e5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4100}, {0x7f7fb0611580, 0xc000aba0b0}, {0x5e003f8?, 0x574db00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e0000, {0x0?, 0x0?}, 0xc00792a060, 0xc0097ec020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e0000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097ee040?, {0x5d9c8a0, 0xc0097dc000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e0000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2331 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e0000, 0xc00792a060, 0xc008461500, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78975 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012980ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012980ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012980ab0, {0xc01267c200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267c200?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe1400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe1400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe1400, {0x4f3b7c0, 0xc023fb4bd0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023dda5a0, {0xc00a349400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec870, 0xc023c662a0?, {0x5dbd7f0, 0xc01f795080}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e28e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f795000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2093 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002a9770, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2094 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2095 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4240}, {0x7f7fb0611580, 0xc000a3a2c0}, {0x5e003f8?, 0x5731b00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956540, {0x0?, 0x0?}, 0xc00792a060, 0xc00793cba0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958880?, {0x5d9c8a0, 0xc0079522d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2319 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956540, 0xc00792a060, 0xc008586240, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78447 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c858900, 0xc023460300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc5f00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78448 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c858948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c858938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c858930, {0xc00ee74e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74e00?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430f2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430f2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430f2c0, {0x4f3b7c0, 0xc023b8a7c8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0236f28a0, {0xc014195c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec9b0, 0xc011f700c0?, {0x5dbd7f0, 0xc0236b4280}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba5ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2296 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956c40, 0xc00792a060, 0xc009916f60, 0xc0097e5fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2147 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00030d540, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2148 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2149 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16d3c0}, {0x7f7fb0611580, 0xc000a3a370}, {0x5e003f8?, 0x5741380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956700, {0x0?, 0x0?}, 0xc00792a060, 0xc00793ce40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958d80?, {0x5d9c8a0, 0xc0079523c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2358 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956700, 0xc00792a060, 0xc0086ca9c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 528 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00027e0a0, 0xc00079b7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 529 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78902 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728000, 0xc02043dd00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16c640?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2183 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6ec0}, {0x7f7fb0611580, 0xc000a3a580}, {0x5e003f8?, 0x5731e80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956c40, {0x0?, 0x0?}, 0xc00792a060, 0xc00793d620?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956c40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007959200?, {0x5d9c8a0, 0xc007952690}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956c40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2153 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002e3c70, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2154 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2162 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b48c0}, {0x7f7fb0611580, 0xc007eae0b0}, {0x5e003f8?, 0x5749880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed61c0, {0x0?, 0x0?}, 0xc00792a060, 0xc007ed82c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed61c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edc1c0?, {0x5d9c8a0, 0xc007ed20f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed61c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2155 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e62bc0}, {0x7f7fb0611580, 0xc000a3a420}, {0x5e003f8?, 0x574ec80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0079568c0, {0x0?, 0x0?}, 0xc00792a060, 0xc00793d0e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0079568c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958dc0?, {0x5d9c8a0, 0xc0079524b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0079568c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2304 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed61c0, 0xc00792a060, 0xc009917b60, 0xc007d68030?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2282 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0079568c0, 0xc00792a060, 0xc00766f080, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2214 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc016e963c0}, {0x7f7fb0611580, 0xc000958a50}, {0x5e003f8?, 0x574c980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0075497a0, {0x0?, 0x0?}, 0xc00792a060, 0xc00758d9a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0075497a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b8240?, {0x5d9c8a0, 0xc0075b6780}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0075497a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2120 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002bea00, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2121 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2122 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c740}, {0x7f7fb0611580, 0xc0009588f0}, {0x5e003f8?, 0x5747580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007549420, {0x0?, 0x0?}, 0xc00792a060, 0xc00758d460?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007549420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b81c0?, {0x5d9c8a0, 0xc0075b65a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007549420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2328 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007549420, 0xc00792a060, 0xc008461020, 0xc00775afb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78198 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394fcc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394fcb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394fcb0, {0xc00e483c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e483c00?, 0x3?, 0x37e89ea00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bc500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bc500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bc500, {0x4f3b7c0, 0xc023e5f518}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f272060, {0xc0199f2800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12a00, 0x2?, {0x5dbd7f0, 0xc01f69f600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacf3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69f5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2182 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2159 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002be500, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2160 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2161 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11100}, {0x7f7fb0611580, 0xc000a3a4d0}, {0x5e003f8?, 0x5745980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956a80, {0x0?, 0x0?}, 0xc00792a060, 0xc00793d380?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007958ec0?, {0x5d9c8a0, 0xc0079525a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2300 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956a80, 0xc00792a060, 0xc009917560, 0x6f5a19?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77947 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f632dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f632db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f632db0, {0xc00aa36400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa36400?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e30000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e30000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e30000, {0x4f3b7c0, 0xc023b8b818}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf2bd0, {0xc00ae75800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c076d0, 0x5dd4e28?, {0x5dbd7f0, 0xc01e31b9c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba48a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31b980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78054 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb8948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012eb8938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb8930, {0xc008139200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139200?, 0x3?, 0x37e73a000?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3bb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3bb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3bb80, {0x4f3b7c0, 0xc023fb53e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3e24e0, {0xc007db0800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad1450, 0x2?, {0x5dbd7f0, 0xc0236b4900}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32eb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b48c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79020 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012f2cf00, 0xc01f9a0700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c140?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2133 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50ac0}, {0x7f7fb0611580, 0xc000df4000}, {0x5e003f8?, 0x5747c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b2000, {0x0?, 0x0?}, 0xc00792a060, 0xc0076bc020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b2000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0076c0040?, {0x5d9c8a0, 0xc0076a0000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b2000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2323 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b2000, 0xc00792a060, 0xc0084603c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78425 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f6333c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00793ebb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f6333b0, {0xc00a740600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a740600?, 0x3?, 0x37eb41900?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3a8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3a8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3a8c0, {0x4f3b7c0, 0xc023c5b338}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023d51650, {0xc00b0c4400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835db30, 0x2?, {0x5dbd7f0, 0xc01dc6ab40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8b4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6ab00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2247 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79da0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2166 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc000ab1810, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2167 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2168 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31a5c0}, {0x7f7fb0611580, 0xc007eae160}, {0x5e003f8?, 0x574bf00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6380, {0x0?, 0x0?}, 0xc00792a060, 0xc007ed8560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edc200?, {0x5d9c8a0, 0xc007ed21e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2334 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6380, 0xc00792a060, 0xc008461920, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2213 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2126 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002befa0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2127 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2128 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa1c80}, {0x7f7fb0611580, 0xc0009589a0}, {0x5e003f8?, 0x5749180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0075495e0, {0x0?, 0x0?}, 0xc00792a060, 0xc00758d700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0075495e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b8200?, {0x5d9c8a0, 0xc0075b6690}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0075495e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2360 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0075495e0, 0xc00792a060, 0xc0086caf00, 0xc0076ccfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2194 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002d68c0, 0xc0007a17b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2195 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2196 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31a280}, {0x7f7fb0611580, 0xc000aba160}, {0x5e003f8?, 0x572c000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e01c0, {0x0?, 0x0?}, 0xc00792a060, 0xc0097ec2c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e01c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097ee100?, {0x5d9c8a0, 0xc0097dc0f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e01c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2190 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e01c0, 0xc00792a060, 0xc0078689c0, 0xc0076d0fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77902 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25a048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25a038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25a030, {0xc0043cec00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0043cec00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afc8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afc8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afc8c0, {0x4f3b7c0, 0xc01db36750}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9bda0, {0xc005c67400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe73b0, 0x2?, {0x5dbd7f0, 0xc023c2c6c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8b620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2c680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2362 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78d40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2244 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4e80}, {0x7f7fb0611580, 0xc007eae2c0}, {0x5e003f8?, 0x572f800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6700, {0x0?, 0x0?}, 0xc00792a060, 0xc007ed8aa0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edc740?, {0x5d9c8a0, 0xc007ed23c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2172 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00030caf0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2173 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78181 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870900, 0xc01f744d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e62900?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2201 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2202 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df081c0}, {0x7f7fb0611580, 0xc000aba210}, {0x5e003f8?, 0x5739200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e0380, {0x0?, 0x0?}, 0xc00792a060, 0xc0097ec560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e0380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097ee280?, {0x5d9c8a0, 0xc0097dc1e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e0380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2291 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e0380, 0xc00792a060, 0xc009916780, 0xc007941fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78334 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f633248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f633238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f633230, {0xc0238fdc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fdc00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e1180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e1180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e1180, {0x4f3b7c0, 0xc023c5aa38}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf3170, {0xc003104000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d590, 0x5dd4e28?, {0x5dbd7f0, 0xc023b119c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8a960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2224 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002a9310, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2218 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00030df40, 0xc0000aefb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2219 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2220 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc016e966c0}, {0x7f7fb0611580, 0xc000958b00}, {0x5e003f8?, 0x5788540}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007549960, {0x0?, 0x0?}, 0xc00792a060, 0xc00758dc40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007549960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b8280?, {0x5d9c8a0, 0xc0075b6870}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007549960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2308 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007549960, 0xc00792a060, 0xc0078692c0, 0x40fd0a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78352 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee13c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee13b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee13b0, {0xc023f9c800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023f9c800?, 0x3?, 0x37e930400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf1a40, {0x4f3b7c0, 0xc0237f9458}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c66bd0, {0xc003b61000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f558b0, 0x2?, {0x5dbd7f0, 0xc023fa0e80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa0e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2174 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7a40}, {0x7f7fb0611580, 0xc007eae210}, {0x5e003f8?, 0x5733000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6540, {0x0?, 0x0?}, 0xc00792a060, 0xc007ed8800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edc600?, {0x5d9c8a0, 0xc007ed22d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2311 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6540, 0xc00792a060, 0xc0078696e0, 0xc007d69f10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78875 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394f200, 0xc023940400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2285 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6700, 0xc00792a060, 0xc00766f4a0, 0xc007838fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78783 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fffcf00, 0xc0058c6f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78155 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c2648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c2638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c2630, {0xc00f5dd000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dd000?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4780, {0x4f3b7c0, 0xc01d6102a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a73e0, {0xc000a73400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6320, 0x6?, {0x5dbd7f0, 0xc01f98c4c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0239386a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78668 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f39c80, 0xc004d0b300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2258 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11700}, {0x7f7fb0611580, 0xc000958bb0}, {0x5e003f8?, 0x572f480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007549b20, {0x0?, 0x0?}, 0xc00792a060, 0xc00758dee0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007549b20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b8340?, {0x5d9c8a0, 0xc0075b6960}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007549b20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2321 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007549b20, 0xc00792a060, 0xc008586600, 0xc00773afb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 476 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0002d7810, 0xc00079f7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 477 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 478 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa0680}, {0x7f7fb0611580, 0xc00990e000}, {0x5e003f8?, 0x574d780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922000, {0x0?, 0x0?}, 0xc00792a060, 0xc009924020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009926040?, {0x5d9c8a0, 0xc00991e000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2326 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922000, 0xc00792a060, 0xc008460c60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78398 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a7248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a7238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a7230, {0xc00aa37e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa37e00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddde00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddde00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddde00, {0x4f3b7c0, 0xc0237f9d88}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f320780, {0xc00849a800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55e50, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc4140}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba46e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78961 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fffc780, 0xc0237f1000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f5580?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78809 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012980600, 0xc004d0ac00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82d680?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78268 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85080, 0xc01f745f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6e40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77922 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee0a80, 0xc01f0d1100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc00fa5b320?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78863 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c858f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x4167e5?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c858f30, {0xc020444bfc, 0x4, 0x4}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0xc01eacd9b0?}, {0xc020444bfc?, 0xc004bdad08?, 0x40dad6?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] io.ReadAtLeast({0x7f7fb0670ce8, 0xc00c858f00}, {0xc020444bfc, 0x4, 0x4}, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*lengthDelimitedFrameReader).Read(0xc023dc6a98, {0xc00b8c2800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:76 +0x88 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07720, 0x6f3a66222c7d7b3a?, {0x5dbd7f0, 0xc01f16c6c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16c640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77756 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b9b00, 0xc01f0d0800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77693 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022201848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022201838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022201830, {0xc023cc3600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc3600?, 0x3?, 0x5be79600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7cc0, {0x4f3b7c0, 0xc01d589d40}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ca4ab0, {0xc023dc4800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019452d70, 0x2?, {0x5dbd7f0, 0xc01df09fc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e7980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77692 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022201800, 0xc0237f0b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09d00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78221 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261e00, 0xc0057fbf00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc016e96100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78223 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200000, 0xc023940000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc016e963c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78857 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012981b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012981b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012981b30, {0xc0006c1e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c1e00?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3ab40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3ab40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3ab40, {0x4f3b7c0, 0xc01d589d88}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b19650, {0xc022ba7c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07360, 0x5dd4e28?, {0x5dbd7f0, 0xc0234c7a80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e74f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77768 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012f2c780, 0xc0237f1200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78013 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728a80, 0xc01f9a0b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77909 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f260780, 0xc0057fa100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78699 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f632948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00133fbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f632930, {0xc00aa37800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa37800?, 0x3?, 0x37fae6f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912c80, {0x4f3b7c0, 0xc0234cb578}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd7c50, {0xc00c188c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073c20, 0x2?, {0x5dbd7f0, 0xc01df082c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78101 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25bcc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25bcb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25bcb0, {0xc00a740a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a740a00?, 0x3?, 0x37e9d8600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b4500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b4500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b4500, {0x4f3b7c0, 0xc01db37d88}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78aa20, {0xc024089800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe7cc0, 0x2?, {0x5dbd7f0, 0xc01f16c740}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e6fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16c700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78940 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd9e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd9e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd9e30, {0xc0207ab200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207ab200?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f556780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f556780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f556780, {0x4f3b7c0, 0xc01d610510}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4fb90, {0xc00b470000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062ca4b0, 0xc023e5d8f0?, {0x5dbd7f0, 0xc023e63d80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe6a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78717 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6c48, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023d00c00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6c30, {0xc0006c3801, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c3801?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f557cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f557cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f557cc0, {0x4f3b7c0, 0xc023e5e210}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bca180, {0xc00f71b400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb680, 0xc023da9b90?, {0x5dbd7f0, 0xc023f50640}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca2e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d00c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78332 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4000, 0xc00bdd3a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc023d97200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78347 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee0480, 0xc004d0b600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78853 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012981848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012981838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012981830, {0xc0006c1a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c1a00?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e1a40, {0x4f3b7c0, 0xc01d589bd8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18870, {0xc022ba7400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c071d0, 0x5dd4e28?, {0x5dbd7f0, 0xc0234c7240}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e74b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79051 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0137456c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001d3ebb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0137456b0, {0xc008138200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008138200?, 0x3?, 0x37e9d8100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0640, {0x4f3b7c0, 0xc023e5fef0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f741a70, {0xc00ae75c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835de00, 0x2?, {0x5dbd7f0, 0xc023d003c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32f840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d00380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78053 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb8900, 0xc0057e4d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b4540?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78912 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f260600, 0xc00a187100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78397 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7200, 0xc0038c1b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023fa1dc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78389 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee19c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee19b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee19b0, {0xc00aa37400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa37400?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddc780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddc780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddc780, {0x4f3b7c0, 0xc0237f9638}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c67a40, {0xc003b61c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55b30, 0x5dd4e28?, {0x5dbd7f0, 0xc023fa1440}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa1400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78360 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b14180, 0xc0237f0300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d01000?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77931 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1c80, 0xc01f0d1800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2372 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc0021773b0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2373 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78ce0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78437 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7800, 0xc0038c1f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc4dc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2375 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc007679b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2363 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78d80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78285 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd8f00, 0xc00a187c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d012c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2376 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc007679ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2377 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78918 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012422f48, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010e6bbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012422f30, {0xc00658a001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00658a001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73c3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73c3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73c3c0, {0x4f3b7c0, 0xc023e5f7a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f273830, {0xc009bc0400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12cd0, 0xc0150dff80?, {0x5dbd7f0, 0xc01f82d3c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cffd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cac700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4750 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00872f690, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc003c91f80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007679b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2341 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0085f60c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2342 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0085f6240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2343 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2135 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78e00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2136 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78e60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6572 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d4bd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6682 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09490, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b48cb00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4791 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35710, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001dc0740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f60c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2365 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00992b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2366 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00992b740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2367 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6555 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008697e90, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023768280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2138 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000df2720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3477 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1e640, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2139 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000df28a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2140 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6529 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d45d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2347 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0085f6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2369 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78ea0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2386 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78f00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2725 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000abaa78, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0231ff600?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000abaa50, 0xc0077dc2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0097ca3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc009542000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0097ca438?, 0x3b9aca00, 0x0, 0x0?, 0x1e3e388adf62?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0097ca3c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000aba9a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2348 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0085f6ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2349 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6608 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35d10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2874 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2847 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3b158, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010d51f60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3b130, 0xc008a62ad0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00794b040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc008ea46c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00794b0b8?, 0x3b9aca00, 0x0, 0x0?, 0x1e5f75956a8d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00794b040, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000a3b080, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2351 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78f60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2388 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00992bc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2352 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da4fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a78fa0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78714 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6000, 0xc005791700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc00d8c0b40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2389 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00992be00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2390 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2879 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6603 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886a490, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992bc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2403 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79000) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2404 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da50e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79040) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5909 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0090f8850, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7275746552203a72?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a69f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2878 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0090fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2407 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a790a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2408 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a790e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2873 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea5440}, 0x1, 0xc008a4f260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x614e223a226e6f69?, 0x3b9aca00, 0x0, 0x65?, 0x65687420666f2065?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2871 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2410 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da52c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79140) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2411 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a791a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62641 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16da40}, {0x7f7fb0611580, 0xc0013226e0}, {0x5e003f8?, 0x5740580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f6d20, {0x0?, 0x0?}, 0xc00e227560, 0xc0135f7c40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f6d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027a5b80?, {0x5d9c8a0, 0xc01d450d70}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f6d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2870 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea5410}, 0x1, 0xc008a4f200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc003d60690?, 0x3b9aca00, 0x0, 0x0?, 0x99?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2393 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a791e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2394 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da54a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79240) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6446 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b51110, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0091a45a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f99a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2868 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2396 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79280) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2397 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da55e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a792e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2865 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2867 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea53e0}, 0x1, 0xc008a4f1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6120656361707365?, 0x3b9aca00, 0x0, 0x22?, 0x7d22676e69727473?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2399 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79320) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2400 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79380) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2864 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea53b0}, 0x1, 0xc008a4f140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x656372756f736572?, 0x3b9aca00, 0x0, 0x75?, 0x6f7365727b2f7370?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6563 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6d90, 0x41) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc003e054a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008be6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b01e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2419 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da57c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a793e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2420 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79420) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2862 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2859 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2422 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79480) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2423 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da59a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a794c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2861 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea5380}, 0x1, 0xc008a4f0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x203d3d2073757461?, 0x3b9aca00, 0x0, 0x22?, 0x7574617473222c7d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6564 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6d90, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005fd4ba0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008be6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b01e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2380 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79520) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2381 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79560) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6562 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6d90, 0x40) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b482380?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008be6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b01e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6565 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6d90, 0x3f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0109a3c60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008be6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b01e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2426 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a795a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2427 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a795e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2856 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008eaa240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2143 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000df2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2384 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79620) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2385 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79660) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2852 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10dc0}, {0x7f7fb0611580, 0xc000a3b130}, {0x5e003f8?, 0x572bc80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956ee0, {0x0?, 0x0?}, 0xc00792a060, 0xc008d183a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008a08740?, {0x5d9c8a0, 0xc008a22a50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2855 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea5320}, 0x1, 0xc008a4f020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2144 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000df30e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2435 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a796a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2436 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a796e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3595 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc002da6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2145 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2851 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2429 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00890af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2430 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00890b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2431 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2858 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc008ea5350}, 0x1, 0xc008a4f080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0009cc360?, 0x3b9aca00, 0x0, 0xc0?, 0xc00078ce70?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008eaa2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2439 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088dc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2451 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc002da5f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79720) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2452 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79760) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2850 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc008a22960, 0xc00078dc20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2440 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088dc780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2441 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2454 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088ae480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2455 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088ae5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2456 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3570 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956ee0, 0xc00792a060, 0xc0051759e0, 0xc005565e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2442 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088dcba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2443 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088dcd20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2444 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2445 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b00a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a797a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2446 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a797e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6689 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08850, 0x43) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0221c6360?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b14a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2458 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088aec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2877 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008a69f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2448 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088dcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2459 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088aed80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2460 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2449 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088dd080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2466 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2467 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b01e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79820) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2468 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79860) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6571 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d4bd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2461 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088aee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2462 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088aefc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2463 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6570 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d4bd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2464 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088af080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78855 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0129819c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0129819b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0129819b0, {0xc0006c1c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c1c00?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3a140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3a140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3a140, {0x4f3b7c0, 0xc01d589c80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18de0, {0xc022ba7800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c072c0, 0x5dd4e28?, {0x5dbd7f0, 0xc0234c7600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e74da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2465 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088af200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2498 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6679 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65250, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013437680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d293e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2514 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a798a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2470 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088dd5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2515 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b03c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a798e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4796 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad9d0, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d9d16e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3753 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef0870, 0xc0024a07b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2471 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088dd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2472 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6598 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9610, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008b31640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dd5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6678 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65250, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fa68b60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d293e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2501 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088af3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2502 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088af560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2503 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4851 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886af50, 0x2d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a891640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00890af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6628 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adf50, 0x6b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01cbad520?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2474 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088ddb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6649 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9e50, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c524200?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aae600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2475 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088ddce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2476 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4856 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d8b10, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001814e40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2477 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2478 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088ddec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2479 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6574 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d4bd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6583 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9890, 0x2e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bf7640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4864 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088acf10, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090da300?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ae480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2504 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088afc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6588 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9010, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006031fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2505 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088afda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2506 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6593 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088add90, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001e2ed40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088afc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3572 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df4ff8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc021ebab00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df4fd0, 0xc00b00a220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f30640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0042ef890}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f306b8?, 0x3b9aca00, 0x0, 0x0?, 0x23d1eac9cc60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f30640, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df4f20, 0xc004d0bf00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6510 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9810, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00df68c60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b00a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2517 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00895a7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2518 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00895a960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6086 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad5d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2519 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2508 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008a26180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2509 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008a26300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2510 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3594 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001387738?, {0x5d9c8c0, 0xc00529ed80}, 0x1, 0xc002f1dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc001387788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc002da6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6627 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adf50, 0x6a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aae9a60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2530 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008aae600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4892 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00895e450, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015a49940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00895a7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2531 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008aae780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2532 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6645 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9e50, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ab7aa40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aae600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2522 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79920) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2523 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79960) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78794 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013745080, 0xc0057b4b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69ee00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2512 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008a26de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2534 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008aaeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2535 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008aaecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2536 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6662 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d93d0, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e983900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6774 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abe3d0, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0229381a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aaeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6573 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d4bd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4947 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad7d0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e579940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2538 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008aaf0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2539 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6638 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008a2c110, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022938720?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da52c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4740 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007548540, 0xc00792a060, 0xc007259ec0, 0xc009b00b00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2262 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a799e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3560 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cad700}, {0x7f7fb0611580, 0xc001322580}, {0x5e003f8?, 0x574a300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007548540, {0x0?, 0x0?}, 0xc00792a060, 0xc001606dc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007548540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0076c1240?, {0x5d9c8a0, 0xc001279bd0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007548540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4733 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001385738?, {0x5d9c8c0, 0xc006b71dd0}, 0x1, 0xc007580ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009a233b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2206 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b06e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79a20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2207 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79a60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3559 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2542 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79aa0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2543 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b08c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79ae0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4712 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007548380, 0xc00792a060, 0xc009ae4f00, 0x6457514546565551?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3555 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0013225a8, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00abb5180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322580, 0xc009793470) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001258dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00261baa0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001258e38?, 0x3b9aca00, 0x0, 0x0?, 0x22f368f81984?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001258dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0013224d0, 0xc00993d400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2545 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79b20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2562 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79b60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3552 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11f40}, {0x7f7fb0611580, 0xc001322420}, {0x5e003f8?, 0x5734880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007548380, {0x0?, 0x0?}, 0xc00792a060, 0xc001606a80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007548380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0076c1100?, {0x5d9c8a0, 0xc0012798b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007548380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3551 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2209 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79ba0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2578 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79be0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3550 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0012796d0, 0x223a226e6f697470?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3782 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008a61f38?, {0x5d9c8c0, 0xc00a814180}, 0x1, 0xc007f92ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc008a61f88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006045e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2564 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79c20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2565 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79c60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4736 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0075481c0, 0xc00792a060, 0xc009a26f60, 0xc009af3f10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78917 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012422f00, 0xc0057b5d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc013ea37a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2567 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79ca0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2568 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79ce0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3546 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794240}, {0x7f7fb0611580, 0xc001322370}, {0x5e003f8?, 0x574f000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0075481c0, {0x0?, 0x0?}, 0xc00792a060, 0xc0016067e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0075481c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0076c0d00?, {0x5d9c8a0, 0xc0012797c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0075481c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6707 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b084d0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c3f2ea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2570 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79d20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2571 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b0f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79d60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3544 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0012794a0, 0x697263736564227b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3541 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322448, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013517300?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322420, 0xc009793130) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001258c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00261ac60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001258cf8?, 0x3b9aca00, 0x0, 0x0?, 0x22889b6db509?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001258c80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0013222c0, 0x6172656e65476465?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2248 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79de0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4374 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78718 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6d80, 0xc005791d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d00c80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2574 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b10e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79e20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2575 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79e60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4373 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d999a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2250 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79ea0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2251 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b12c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79ee0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4375 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69e840}, {0x7f7fb0611580, 0xc005ee4370}, {0x5e003f8?, 0x5740580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922540, {0x0?, 0x0?}, 0xc00792a060, 0xc006d50340?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006e95300?, {0x5d9c8a0, 0xc002f0f0e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78224 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022200048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022200038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022200030, {0xc01e26ea00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26ea00?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6a00, {0x4f3b7c0, 0xc00d1274b8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5d1d0, {0xc010b9a400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072c80, 0xc01d4aeab0?, {0x5dbd7f0, 0xc016e96700}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc016e966c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2253 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79f20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2254 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79f60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4765 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001e57f38?, {0x5d9c8c0, 0xc00730e810}, 0x1, 0xc007581a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d8b9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3539 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322398, 0x55) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f0edd60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322370, 0xc009792ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001258be0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00261a990}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001258c58?, 0x3b9aca00, 0x0, 0x0?, 0x227692ce1597?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001258be0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001322210, 0xc00993d200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2256 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b14a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79fa0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2257 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a79fe0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6447 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b51110, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f99a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4624 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efdc58, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010d506a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efdc30, 0xc00373add0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0046950e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006deb680}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004695158?, 0x3b9aca00, 0x0, 0x0?, 0x23d8a24b275a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0046950e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efdb80, 0xc0076c5560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3545 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2595 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b15e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea020) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2596 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea060) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2688 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4a00}, {0x7f7fb0611580, 0xc001322160}, {0x5e003f8?, 0x573b500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007548000, {0x0?, 0x0?}, 0xc00792a060, 0xc001606400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007548000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0076c0880?, {0x5d9c8a0, 0xc001279270}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007548000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4986 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009be2090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2271 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea0a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2272 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b17c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea0e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2687 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4241 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32e5c0}, {0x7f7fb0611580, 0xc005ee42c0}, {0x5e003f8?, 0x5743680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922380, {0x0?, 0x0?}, 0xc00792a060, 0xc006d500a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006e94c80?, {0x5d9c8a0, 0xc002f0eff0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2626 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea120) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2627 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea160) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6687 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08850, 0x45) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cf280e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b14a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5585 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922380, 0xc00792a060, 0xc00ac4e4e0, 0xc00ac4c200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2629 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b19a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea1a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2630 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea1e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4240 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2686 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001278fa0, 0x6f697469646e6f63?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2632 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea220) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2633 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea260) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79029 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f6321c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01aa75bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f6321b0, {0xc00e6d0000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d0000?, 0x3?, 0x37edfe000?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2c280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2c280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2c280, {0x4f3b7c0, 0xc023e5ec30}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f377950, {0xc00014fc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835cd20, 0x2?, {0x5dbd7f0, 0xc023f51740}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3558 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001279ae0, 0xc001e567b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2614 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea2a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2615 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea2e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3684 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001e5cf38?, {0x5d9c8c0, 0xc00746e510}, 0x1, 0xc000a61e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc001e5cf88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0059314d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78297 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6180, 0xc01f9a1800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f5b80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2617 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea320) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2618 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea360) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3497 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce238, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0098712a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce210, 0xc0021c6b10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020db4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006eaee70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020db518?, 0x3b9aca00, 0x0, 0x0?, 0x21621a7aebeb?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020db4a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce160, 0xc0089cab00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3494 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2620 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea3a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2621 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057b1f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea3e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6167 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005072e90, 0x74) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f0ecc80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006146cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3493 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc006146f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2602 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea420) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2603 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea460) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6402 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007ee5150, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c56c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2608 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2624 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea4a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2625 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea4e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2906 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc009295140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2905 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc009294fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2643 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea520) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2644 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea560) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4980 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009bb5ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5865 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8250, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006e433e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2646 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea5a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2647 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea5e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2901 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc009294d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2902 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2649 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea620) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2650 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea660) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2897 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc009294960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2900 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc009294ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2652 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea6a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2653 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea6e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2898 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3500 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ec1e0, 0x617073656d616e3a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2655 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea720) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2656 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea760) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6355 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283d90, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24f4a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0092947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2639 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc007881da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4235 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc003ddfe60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2640 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc007881f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2641 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2526 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea7a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2527 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea7e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6331 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b2d0, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6802 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0075a9fd0, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a464f60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007881da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4236 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee42e8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f9d0fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee42c0, 0xc0077dd310) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d56000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0066b2630}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d56078?, 0x3b9aca00, 0x0, 0x0?, 0x217eb7e21fd9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d56000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4210, 0x746e756f63636165?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2659 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008ac6c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2690 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea820) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2691 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea860) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78963 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f260c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f260c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f260c30, {0xc01f801e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f801e00?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5cc0, {0x4f3b7c0, 0xc023dc7f50}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023653dd0, {0xc00da9b800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54370, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f98d300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacf000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98d2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2660 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008ac6de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2661 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68786 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f6b60, 0xc00e227560, 0xc019ff9620, 0x206120726f662064?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2675 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0078dc540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2676 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0078dc6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2677 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6846 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0078d2510, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007283e40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0078dc540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2581 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0097f15c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2582 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0097f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2583 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6104 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4910, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006ba0100?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f15c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2493 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0089b4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2494 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0089b42a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2495 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6117 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5150, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010c5c6e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2585 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0097f1aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2586 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0097f1c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2587 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6162 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4e50, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007890640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f1aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2497 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0089b46c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2706 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0089b4840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2707 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6148 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5690, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010d1cca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b46c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2589 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0077ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2590 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0077ce3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2591 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6436 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f53d0, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2709 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0089b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2710 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0089b4fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2711 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6500 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5bd0, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e1f90a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2593 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0077ce9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2722 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0077ceb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2723 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5177 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5910, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72616d6972702065?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2713 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0089b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2238 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea920) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2239 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea960) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4319 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf368, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015962fe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf340, 0xc0007add20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00642b8c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0026131f8?, 0x3b9aca00, 0x0, 0x0?, 0x23300213351e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efcbb0, 0xc002118600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78962 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f260c00, 0xc00a187300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98ce80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2738 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea9a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2739 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bea9e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2768 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0096be780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2796 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008be6b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2742 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaa20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2743 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f8fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaa60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2795 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008be6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5157 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a010f38?, {0x5d9c8c0, 0xc00a0e6060}, 0x1, 0xc00a0cd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a0e0240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2663 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaaa0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2664 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f90e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaae0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2746 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beab20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2747 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beab80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2607 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00771e780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2797 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2551 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f92c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beabc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2552 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beac20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2767 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0096be5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6371 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a6f90, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2554 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beac80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2555 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f94a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beacc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2765 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2764 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0096be3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2763 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0096be240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2751 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bead20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2752 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f95e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007bead60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2557 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0077cf140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4239 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0ef00, 0x525554366c455645?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77965 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25b0c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01c636bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25b0b0, {0xc00a740000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a740000?, 0x3?, 0x37e9d8600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afd900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afd900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afd900, {0x4f3b7c0, 0xc01db375c0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ddaf00, {0xc024088c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe79a0, 0x2?, {0x5dbd7f0, 0xc023c2dd80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e67a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2dcc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2667 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beadc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2668 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beae00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2558 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008a27c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2559 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3696 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc005931c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6530 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5e50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077cf140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3695 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00213c738?, {0x5d9c8c0, 0xc007e5d020}, 0x1, 0xc005244360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc005931c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2561 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f97c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beae60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2770 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaec0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77857 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f260948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01de37bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f260930, {0xc00e482000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e482000?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b4140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b4140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b4140, {0x4f3b7c0, 0xc023e5e030}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18150, {0xc0079b3000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c120a0, 0xc01d287b90?, {0x5dbd7f0, 0xc00ac4cbc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc00ac4cb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4826 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b2460, 0xc00792a060, 0xc009ca9740, 0x6f72702073692065?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2772 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaf00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2773 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f99a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beaf60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2755 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008b7c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3692 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d00ec0}, {0x7f7fb0611580, 0xc0091ce370}, {0x5e003f8?, 0x5732c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b2460, {0x0?, 0x0?}, 0xc00792a060, 0xc0020dfa60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b2460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edd5c0?, {0x5d9c8a0, 0xc0020ec7d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b2460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3691 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3690 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ec6e0, 0x61633a66222c7d7b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2776 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beafc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2777 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb000) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3698 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce4f8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01394e9e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce4d0, 0xc0021c7480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020db720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc007e5d0e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020db798?, 0x3b9aca00, 0x0, 0x0?, 0x2158228f10e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020db720, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce420, 0x2c7d7b3a22726f74?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2779 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb060) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2780 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb0a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4921 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00213cf38?, {0x5d9c8c0, 0xc00758e0c0}, 0x1, 0xc009d1e8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x64?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009fa9d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2756 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008b7c360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2757 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3687 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce398, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01063e340?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce370, 0xc0021c6f90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020db5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00746e720}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020db658?, 0x3b9aca00, 0x0, 0x0?, 0x1dd3eb078394?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020db5e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce2c0, 0x3541456941474244?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6546 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b50d10, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc021032280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2782 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb100) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2783 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb140) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3685 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0059314d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4922 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009fa9d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6677 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65250, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0143efbe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d293e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2786 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb1a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2787 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb1e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2759 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008b7c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3682 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0059313b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2802 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0057f9f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb240) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2803 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb280) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2760 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008b7c720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2761 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6445 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b51110, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f99a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3505 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001e5bf38?, {0x5d9c8c0, 0xc006eaf1a0}, 0x1, 0xc000a61d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0059313b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3502 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794900}, {0x7f7fb0611580, 0xc0091ce210}, {0x5e003f8?, 0x5730d00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b22a0, {0x0?, 0x0?}, 0xc00792a060, 0xc0020df6e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b22a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edd100?, {0x5d9c8a0, 0xc0020ec2d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b22a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2790 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008ac7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77803 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd8dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd8db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd8db0, {0xc0122b4200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b4200?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73d040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73d040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73d040, {0x4f3b7c0, 0xc023dc6798}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f35a8a0, {0xc023adb800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190720a0, 0x222c22315673646c?, {0x5dbd7f0, 0xc023cad300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cad2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2806 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb2e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2807 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb340) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2791 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008ac7f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2792 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3623 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4824 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b22a0, 0xc00792a060, 0xc009ca9380, 0xc009cc6240?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5071 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6550, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ba45ce0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3501 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2810 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb380) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2811 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb3e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6671 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65b10, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010e7fca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003019e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6206 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092838d0, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef3cea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b17c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2814 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb440) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2815 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb480) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2894 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2893 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0092945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2818 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb4e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2819 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb520) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2892 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc009294420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6334 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283410, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005cb5e80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2822 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb580) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2823 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb5c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2890 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2889 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0092941e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2826 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb620) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2827 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb660) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2888 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc009294060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6265 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282f50, 0x30) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001f7fb20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b05a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2830 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb6c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2831 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb700) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2896 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0092947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2833 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb760) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2834 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb7c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2885 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008bf9da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2884 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008bf9c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5829 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282a90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2c22656761737365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2837 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb800) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2838 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb860) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78320 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fbe48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fbe38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fbe30, {0xc0238fc400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fc400?, 0x3?, 0x37f097e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0000, {0x4f3b7c0, 0xc00b0814e8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e52c0, {0xc00ab58c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835cf50, 0x2?, {0x5dbd7f0, 0xc023b10380}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ffc40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2840 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb8c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2841 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb900) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2886 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2800 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008bf9980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2695 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb960) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2696 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beb9a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2799 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc008bf9800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2801 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3601 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6d90, 0x42) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f75f00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008be6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b01e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2845 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0058c8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007beba00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2606 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00771e600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2737 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00957c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2728 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0097dcbe0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2729 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2730 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16c640}, {0x7f7fb0611580, 0xc000abaa50}, {0x5e003f8?, 0x5758620}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e0540, {0x0?, 0x0?}, 0xc00792a060, 0xc0097ed900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e0540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097eefc0?, {0x5d9c8a0, 0xc0097dccd0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e0540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2930 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e0540, 0xc00792a060, 0xc0088d1da0, 0x6e69727473206120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78698 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632900, 0xc023f29d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f795f80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2733 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc0095429f0}, 0x1, 0xc0097cd980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0095405a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2734 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0095405a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3622 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004690f00, 0xc0097cd740?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2932 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0090fef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2907 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6376 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8710, 0x3f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbd8ee0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2699 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc009342180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2700 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6386 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0093028d0, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e0af6c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009342000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2702 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0093425a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2703 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc009342720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2704 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6381 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302a50, 0x42) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0085e62a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093425a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2914 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0093428a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2915 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc009342a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2916 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6391 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302bd0, 0x33) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dccb7c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093428a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2933 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6133 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7110, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bdbb4a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2935 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0090ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2936 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6396 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7250, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011a24380?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b03c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2938 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0090ff560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2939 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6185 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00956bd10, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00793c020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00957c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2918 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00771e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2919 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00771eae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2920 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6172 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001772410, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fa69cc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2941 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0069236e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2942 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc006923800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2943 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4752 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00872f690, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f32eb80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007679b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5944 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8950, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b43cfa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0069236e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6191 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684710, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e578d40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab0840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2947 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc006923c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2948 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc006923da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2949 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4775 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006ffff38?, {0x5d9c8c0, 0xc00730e5d0}, 0x1, 0xc007581800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc006ffffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009c9ab40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5471 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8a10, 0x62) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cf28320?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006923c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2922 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000472780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2923 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0004728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2924 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6461 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5550, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f924e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b12c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2926 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000472ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2927 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000473020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2928 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6419 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5750, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da55e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2952 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b61980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2953 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b61bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2954 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4756 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc002e65b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5987 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9b50, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0072834e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b61980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2957 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00acaa540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2958 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00acaa9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2959 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5339 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9ed0, 0x4d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00795c340?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaa540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2962 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000520d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2963 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000520f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2964 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4952 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08250, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010dfb2c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000520d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2961 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00acaac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2978 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00acaad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2979 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6347 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f641d0, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009bae640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f97c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2981 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00acaafc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2982 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00acab620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2967 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0005217a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2983 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6430 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64410, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007891140?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaafc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2968 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000521920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2969 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6474 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08a50, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0135f7e20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005217a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2971 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000521b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2972 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000521ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2973 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6424 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08bd0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00970d9e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000521b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2985 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00acabc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2986 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0072d6360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2987 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6416 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f646d0, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0065138c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acabc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2989 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0072d6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2990 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0072d6720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2991 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6410 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64bd0, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006e42fe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2993 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0072d7620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2994 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0072d7c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2995 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6317 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64d10, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02332c4a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d7620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2975 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0003181e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2997 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000d281e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2976 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0003187e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2998 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000d28480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2977 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2999 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6482 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64e10, 0xc6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0139c6de0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d281e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6456 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09390, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003181e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3011 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0003189c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3012 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000318b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3013 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6468 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09750, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cfbd8e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003189c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3001 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000d28de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3002 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000d28f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3003 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78607 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200780, 0xc023f29300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4574 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65090, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ffb5720?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d28de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3015 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000319260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3016 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000319440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3017 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6141 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09850, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00edfacc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000319260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3006 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000d293e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3007 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000d295c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3008 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2909 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df4e98, 0x5) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e0ae6e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df4e70, 0xc001d7f8f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00020ba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc000a71260}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00020bab8?, 0x3b9aca00, 0x0, 0x0?, 0x205251afeec7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00020ba40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0009580b0, 0xc007972000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6675 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65250, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f1da040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d293e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78673 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a7cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00763ebb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a7cb0, {0xc001408400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001408400?, 0x3?, 0xc009c37c00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2de00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2de00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2de00, {0x4f3b7c0, 0xc01d611fc8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafddd0, {0xc013566c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f552c0, 0x2?, {0x5dbd7f0, 0xc0234c75c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939e20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3026 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000d29d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3027 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0003001e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3028 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6789 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65590, 0x47) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002ebf800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d29d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3019 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088f06c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3020 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088f08a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3021 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6521 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08090, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0062451a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f06c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3030 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008a5cf38?, {0x5d9c8c0, 0xc00579a840}, 0x1, 0xc0075e37a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088c27e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3031 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088c27e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4116 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73c50, 0x35) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b5e3ea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000212600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3023 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088f1380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3024 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088f1500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3025 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6706 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b084d0, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ba0f00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3033 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000301500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3034 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000301740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3035 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5590 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00644bf38?, {0x5d9c8c0, 0xc00a7e4ab0}, 0x1, 0xc00a7f6480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7db830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5024 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65810, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0074b0880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000301500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3043 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3044 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0088f1920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3045 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6685 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08850, 0x44) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023ba5880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b14a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3038 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0003019e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3039 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000301b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3040 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6670 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65b10, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003019e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3047 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0088f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3048 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005e1df20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3049 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6680 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09490, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fbcf2a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3058 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097d8738?, {0x5d9c8c0, 0xc00579ba70}, 0x1, 0xc0075e3c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088c2870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3059 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088c2870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77961 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25ad80, 0xc01f744000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc00ee0f8c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3051 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc007e59ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3052 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc007e59e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3053 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3061 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc006e9ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6727 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09d50, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5da20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007e59ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3062 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc006e9f0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3063 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6732 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65d50, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d0c4e80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006e9ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3055 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0002a2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3056 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0002a2ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3057 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6712 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10190, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ab7ab40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3065 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00a57e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3066 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00a57eb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3067 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6722 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65f90, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002f0bae0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3075 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0002a3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3076 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc008b81c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3077 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6739 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b105d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3069 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00a57f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3070 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00a33cea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3071 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6692 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72290, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fbcef00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3079 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc007c8e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3080 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc007c8e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3081 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6744 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10b10, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007c8e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3073 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00a33dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3090 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00a33de00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3091 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6702 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72590, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbd94a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a33dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3083 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00097e300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3084 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00097e780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3085 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6697 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10ed0, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006d51e40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097e300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3093 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0001149c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3094 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000115500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3095 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6764 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c727d0, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0001149c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3087 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00097f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3088 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00097f9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3089 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3097 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000074e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4120 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69eac0}, {0x7f7fb0611580, 0xc0091cf080}, {0x5e003f8?, 0x5741000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b36c0, {0x0?, 0x0?}, 0xc00792a060, 0xc0045ed900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b36c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d158c0?, {0x5d9c8a0, 0xc002615810}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b36c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5242 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11290, 0x55) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef4e040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3098 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000075080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3099 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6760 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b114d0, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006cbd3e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3108 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00097fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3101 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0000756e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3109 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00044a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3110 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3102 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000075c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3103 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6759 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b114d0, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ec98600?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4115 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73c50, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0097edcc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000212600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5272 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72c50, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a369480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0000756e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3112 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00044b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3113 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00044b740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3114 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3122 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0005fa8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6754 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11710, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24eea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00044b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3123 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0005fae40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3124 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6749 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72e90, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed54800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fa8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3116 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3126 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008ad7f38?, {0x5d9c8c0, 0xc000b34db0}, 0x1, 0xc009364ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088c2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3127 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088c2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3117 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b72a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3118 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6823 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11b50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78624 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58ac00, 0xc0057de900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3129 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0005fb560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3130 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0005fb6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3131 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6828 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c730d0, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007209780?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fb560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3120 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008953f38?, {0x5d9c8c0, 0xc009189200}, 0x1, 0xc0001194a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0098861b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3121 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0098861b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4119 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3133 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0005fbce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3139 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b73200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3134 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0005fbec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3135 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3140 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b73380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3141 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6835 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73990, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01389eec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fbce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6833 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11d90, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0085e73e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3137 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000212600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3143 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b73da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3154 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000212780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3155 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3144 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0006b4180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3952 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73c50, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f750a00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000212600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3145 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4114 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73c50, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc016126860?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000212600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6182 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f110, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012383d00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4976 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11fd0, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932f80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4573 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685490, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed54fe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aebb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3158 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008938f38?, {0x5d9c8c0, 0xc0005e3aa0}, 0x1, 0xc009365920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088c2990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3159 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088c2990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3953 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73c50, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005f02460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000212600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3149 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0006b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3150 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0006b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3151 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3161 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc000213080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6797 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20810, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006c61140?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3162 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc000213200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3163 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4572 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685490, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ea4c00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aebb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5356 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73e90, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x116ab6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000213080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3153 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0006b5380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3170 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0006b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3171 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3166 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008939f38?, {0x5d9c8c0, 0xc000a77260}, 0x1, 0xc006d64480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088c2a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6840 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20a50, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011925820?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b19a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3167 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088c2a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5344 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b36c0, 0xc00792a060, 0xc00a435020, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3173 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0006b5980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3174 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0006b5b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3175 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6854 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20c90, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3177 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075d4738?, {0x5d9c8c0, 0xc000730930}, 0x1, 0xc000a4a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009886240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3178 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009886240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3179 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001dda2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3180 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001dda420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3181 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6158 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21050, 0x35) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f04d80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3183 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001dda960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3184 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ddaae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3185 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6859 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21410, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00df689e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3187 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ddaf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3188 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ddb0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3189 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4730 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685bd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x116ab6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5444 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21650, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0093128a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddaf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4747 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fe50, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01394ea00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2715 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690188, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005ab5720?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690160, 0xc005cc0410) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0099d2280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005560720}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0099d22f8?, 0x3b9aca00, 0x0, 0x0?, 0x23aea3ff2da4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0099d2280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0016900b0, 0x6f7270222c227463?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3202 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008938f38?, {0x5d9c8c0, 0xc000a77290}, 0x1, 0xc006d644e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088c30e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3203 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088c30e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6168 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005072e90, 0x75) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f4d19a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006146cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3204 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001fc6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3205 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001fc6300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3206 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6882 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000faccd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b10e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3194 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ddb800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3195 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ddb980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3196 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6887 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5050, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fbcf240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddb800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3198 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ddbe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3199 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ddbf80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3200 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3208 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001fc6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6898 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5290, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddbe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3209 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001fc6a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3210 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6868 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad250, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009897320?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3218 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ebc420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3219 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ebc5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3220 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3212 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001fc6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6075 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf54d0, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005ab5bc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebc420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3213 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001fc7080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3214 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6099 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad490, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c054560?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3216 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001fc7560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3222 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ebcb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3217 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001fc76e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3234 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3223 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ebccc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6080 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad6d0, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0096af6c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3224 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6053 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5b90, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ea0d540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebcb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3236 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001fc7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3226 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ebd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3237 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001fc7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3238 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3227 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ebd2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3228 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6091 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad910, 0x31) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0020dffa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b06e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6105 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4910, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fbcee20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f15c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5490 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5dd0, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b9327c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3231 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ebd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3232 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc001ebd980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6681 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09490, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a891b40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3233 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3241 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0092de140, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3242 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6092 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad910, 0x2f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002f0a060?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b06e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3243 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc00ac4cb40}, {0x7f7fb0611580, 0xc000df4e70}, {0x5e003f8?, 0x5730980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076002a0, {0x0?, 0x0?}, 0xc00792a060, 0xc000fd3da0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076002a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0092c0d40?, {0x5d9c8a0, 0xc000d0f0e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076002a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3251 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc001ebde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3252 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0058c4ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3253 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3938 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076002a0, 0xc00792a060, 0xc006234ae0, 0xc0027c9710?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6096 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39310, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3255 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0058c50e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3256 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0058c5320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3257 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6063 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39550, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbfe140?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c50e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b08c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3259 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0058c5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3260 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0058c5bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3261 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6109 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39e10, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0071c8cc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3263 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005944360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3264 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0059445a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3265 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6292 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc290, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0076031c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3267 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005944ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3268 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005944de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3269 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6224 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc4d0, 0x33) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e87f400?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3271 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0059454a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3272 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0059456e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3273 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6283 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efd490, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012057180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059454a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3275 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005945e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3276 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005945f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3277 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6219 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008eed0, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019609b40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005945e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da57c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3279 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0059945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3280 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0059947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3281 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6180 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f110, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0143ef8c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3283 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005994ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3284 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005995020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3285 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6127 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f350, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b00eb20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005994ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3287 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005995860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3288 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0059959e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3289 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4982 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009fc7738?, {0x5d9c8c0, 0xc00765cba0}, 0x1, 0xc009be4000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009be2000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5630 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f790, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0095701a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005995860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3292 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005a38060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3293 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005a382a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3294 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6153 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f9d0, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011a09d20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3296 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005a38960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3297 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005a38ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3298 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6122 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fc10, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b86f240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3300 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005a39620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3301 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005a39860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3302 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4745 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fe50, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0143ef3e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4951 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad7d0, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004c193c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3305 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005a39ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3306 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005ab0120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3307 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4445 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684090, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da54a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4447 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684090, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x1?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da54a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3310 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005ab0840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3311 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005ab09c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3312 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6190 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684710, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005743180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab0840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3314 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005ab10e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3315 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005ab1320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3316 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6200 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684950, 0x5a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01459d3a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab10e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3318 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005ab1980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3319 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005ab1bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3320 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5372 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684b90, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004eb3980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab1980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3322 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005aea1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3323 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005aea420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3324 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6195 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684dd0, 0x2d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c161560?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aea1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3326 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005aeaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3327 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005aeac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3328 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5377 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685010, 0x86) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c29d2a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3330 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005aeb320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3331 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005aeb4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3332 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6246 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685250, 0x497) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0132d0ac0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeb320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f90e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3334 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005aebb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3335 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005aebda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3336 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4569 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685490, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ee38240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aebb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4571 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685490, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e1f8ce0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aebb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3339 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b983c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3340 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b985a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3341 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6227 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685510, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0064a99e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b983c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f92c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3343 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b98ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3344 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b98de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3345 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6237 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685710, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00555dca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b98ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f94a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3347 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b99440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3348 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b99680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3349 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6177 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685990, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0093137c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3351 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005b99d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3352 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005b99ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3353 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4949 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad7d0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b0280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4728 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685bd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x116ab6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3356 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005bfc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3357 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005bfc840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3358 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6232 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e10, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001934f00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3360 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005bfcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3361 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005bfcfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3362 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6214 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e90, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01e82a280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3364 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005bfd620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3365 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005bfd860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3366 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6278 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a090, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfd620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3368 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005bfde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3369 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005cd20c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3370 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6257 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a2d0, 0x40) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c1aaa80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3372 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005cd2780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3373 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005cd2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3374 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6252 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a590, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ec3f940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3376 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005cd2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3377 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005cd3200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3378 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5999 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068ac10, 0x76) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0072d0f20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3380 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005cd3800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3381 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005cd3a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3382 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6324 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068af50, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ca60000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd3800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f95e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3384 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005f66120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3385 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005f662a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3386 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6329 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b2d0, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009ff5940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3388 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc005f66960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3389 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc005f66ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3390 [chan receive, 14 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6270 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b510, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f9c6a40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78882 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f051cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001712bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f051cb0, {0xc0004b0800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0004b0800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4a00, {0x4f3b7c0, 0xc00d127770}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc007a9ef90, {0xc014194400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb900, 0x5dd4e28?, {0x5dbd7f0, 0xc01f379b00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f379a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78210 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f261548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f261538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f261530, {0xc023e0ae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0ae00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe1540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe1540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe1540, {0x4f3b7c0, 0xc00d126d68}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafc9f0, {0xc007849400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072690, 0xc01d287b90?, {0x5dbd7f0, 0xc01df09280}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5435 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a46b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3472 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0012e2738?, {0x5d9c8c0, 0xc001395500}, 0x1, 0xc005a9b020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x63732064657a696e?, 0x3b9aca00, 0x0, 0x65?, 0xc0012e2788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008848360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2719 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0099d0280, 0x52223a226e6f6974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2720 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2721 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d00a40}, {0x7f7fb0611580, 0xc001690160}, {0x5e003f8?, 0x5744b80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0001841c0, {0x0?, 0x0?}, 0xc00792a060, 0xc007beaf40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0001841c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b8700?, {0x5d9c8a0, 0xc0099d03c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0001841c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4710 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0001841c0, 0xc00792a060, 0xc009ae49c0, 0xc009a2bf10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77738 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd8048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0000bfbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd8030, {0xc0122b4600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b4600?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf0280, {0x4f3b7c0, 0xc023dc6108}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3be510, {0xc000a73c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe60a0, 0xc02158c2a0?, {0x5dbd7f0, 0xc023b102c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8a220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4732 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685bd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3397 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0012e3f38?, {0x5d9c8c0, 0xc0050cb7a0}, 0x1, 0xc0087e6d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x736c6146203d3d20?, 0x3b9aca00, 0x0, 0x65?, 0x207365736163206c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009541ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3398 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009541ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4746 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fe50, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012d00640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4983 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009be2000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3401 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099d7f38?, {0x5d9c8c0, 0xc0050cb9b0}, 0x1, 0xc0087e6de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7620646574616365?, 0x3b9aca00, 0x0, 0x64?, 0x797469746e656449?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3402 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4731 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685bd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3404 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099d9738?, {0x5d9c8c0, 0xc0050cb9e0}, 0x1, 0xc0087e6e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x2c22676e69727473?, 0x3b9aca00, 0x0, 0x6d?, 0x6170222c333a2268?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3405 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4729 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685bd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3407 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099daf38?, {0x5d9c8c0, 0xc0050cba40}, 0x1, 0xc0087e6ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x20736920646e694b?, 0x3b9aca00, 0x0, 0x69?, 0x756f736572206568?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3408 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4958 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0071aa5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3410 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099d4738?, {0x5d9c8c0, 0xc0050cbaa0}, 0x1, 0xc0087e6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7470697263736564?, 0x3b9aca00, 0x0, 0x20?, 0x73726f4320666f20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede1b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3411 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede1b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4448 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684090, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da54a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3413 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099d5f38?, {0x5d9c8c0, 0xc0050cbad0}, 0x1, 0xc0087e6f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x656d616e20656874?, 0x3b9aca00, 0x0, 0x65?, 0x20676e6965622074?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3414 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4449 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684090, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da54a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3416 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a5f738?, {0x5d9c8c0, 0xc0050cbc20}, 0x1, 0xc0087e72c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x2264616574736e69?, 0x3b9aca00, 0x0, 0x2c?, 0x227b3a2273656974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3417 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4446 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684090, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da54a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3419 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a60f38?, {0x5d9c8c0, 0xc0050cbd10}, 0x1, 0xc0087e7380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x74222c2279746972?, 0x3b9aca00, 0x0, 0x73?, 0x75746174732e223a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3420 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78082 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7e00, 0xc005791100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cac200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3422 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a62738?, {0x5d9c8c0, 0xc0050cbd40}, 0x1, 0xc0087e73e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x3031323032697061?, 0x3b9aca00, 0x0, 0x69?, 0x616574736e69206e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3423 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4950 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad7d0, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef4e920?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3425 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a7ff38?, {0x5d9c8c0, 0xc0050cbd70}, 0x1, 0xc0087e77a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6564227b3a227075?, 0x3b9aca00, 0x0, 0x61?, 0x7620666f206e6f69?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3426 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4570 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685490, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b09c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aebb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3428 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a5d738?, {0x5d9c8c0, 0xc0050cbe60}, 0x1, 0xc0087e7860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7d7d7d7d7d7d2272?, 0x3b9aca00, 0x0, 0x73?, 0x726f7453223a226e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3429 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3431 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a5ef38?, {0x5d9c8c0, 0xc0050cbe90}, 0x1, 0xc0087e78c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x65706f7270222c5d?, 0x3b9aca00, 0x0, 0x65?, 0x6574616572476e6f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3432 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4776 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009c9ab40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3434 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a7c738?, {0x5d9c8c0, 0xc0050cbfb0}, 0x1, 0xc0087e7a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x65526275532e3130?, 0x3b9aca00, 0x0, 0x73?, 0x6f223a2265707974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3435 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4948 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad7d0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ba7aa00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3437 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a7df38?, {0x5d9c8c0, 0xc0013940c0}, 0x1, 0xc0087e7aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x65707974222c2264?, 0x3b9aca00, 0x0, 0x65?, 0x65706f727024227b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3438 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4753 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00872f690, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aebed40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007679b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3440 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001bb3738?, {0x5d9c8c0, 0xc0013941b0}, 0x1, 0xc0087e7b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001ccaa80?, 0x3b9aca00, 0x0, 0x24?, 0xc007e5c300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3441 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4575 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65090, 0x2b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ba45f20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d28de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3443 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a78f38?, {0x5d9c8c0, 0xc001394240}, 0x1, 0xc0087e7b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6e6f697470697263?, 0x3b9aca00, 0x0, 0x75?, 0x6f20646e696b2073?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3444 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4576 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65090, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b1240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d28de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3446 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a7a738?, {0x5d9c8c0, 0xc0013942d0}, 0x1, 0xc0087e7ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x20726f6620676e69?, 0x3b9aca00, 0x0, 0x75?, 0x737265766e6f6320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3447 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4751 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00872f690, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006b5f9e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007679b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3449 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001baff38?, {0x5d9c8c0, 0xc001394360}, 0x1, 0xc0087e7f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ede900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3450 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ede900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6196 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684dd0, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006319340?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aea1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3452 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0016902e8, 0x2f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0076bd3c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0016902c0, 0xc005cc1b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0099d2460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc001394480}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0099d24d8?, 0x3b9aca00, 0x0, 0x0?, 0x23d25d2fba02?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0099d2460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690210, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3784 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001bb1f38?, {0x5d9c8c0, 0xc00a8141b0}, 0x1, 0xc007f92f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006045ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4979 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bcff38?, {0x5d9c8c0, 0xc006a8ce40}, 0x1, 0xc008460300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009bb5ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3455 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001bb2f38?, {0x5d9c8c0, 0xc0013947b0}, 0x1, 0xc0063250e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00042fb00?, 0x3b9aca00, 0x0, 0xa8?, 0x11?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007edeab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3456 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007edeab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4755 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001dcbf38?, {0x5d9c8c0, 0xc00699ba40}, 0x1, 0xc0060d54a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc002e65b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3458 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001bac738?, {0x5d9c8c0, 0xc0013947e0}, 0x1, 0xc006325140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007edeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3459 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007edeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4734 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009a233b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3461 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001badf38?, {0x5d9c8c0, 0xc001394810}, 0x1, 0xc0063251a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6?, 0x3b9aca00, 0x0, 0xe6?, 0x5?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007edebd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3462 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007edebd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5373 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684b90, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5d060?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab1980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3490 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690448, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0043e7b20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690420, 0xc000d860d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0099d2500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc001395260}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0099d2578?, 0x3b9aca00, 0x0, 0x0?, 0x22a0e861f5be?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0099d2500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce0b0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3492 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc006146cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3467 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0099d1810, 0xc0087e78c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3468 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3469 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69fcc0}, {0x7f7fb0611580, 0xc0016902c0}, {0x5e003f8?, 0x575b8e0}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000184380, {0x0?, 0x0?}, 0xc00792a060, 0xc00610a380?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000184380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b89c0?, {0x5d9c8a0, 0xc0016ee1e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000184380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3247 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000184380, 0xc00792a060, 0xc006d65620, 0xc00079c710?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78235 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c3e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c3e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c3e30, {0xc00a3aac00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aac00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f556140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f556140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f556140, {0x4f3b7c0, 0xc01d6110e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023652450, {0xc01f819400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab68c0, 0x5dd4e28?, {0x5dbd7f0, 0xc01f98dd00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98dcc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3473 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008848360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4484 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007325b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6604 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886a490, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992bc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3508 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00081c0a0, 0xc0087e72c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3509 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3510 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c200}, {0x7f7fb0611580, 0xc001690420}, {0x5e003f8?, 0x574b100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000184540, {0x0?, 0x0?}, 0xc00792a060, 0xc00610abe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000184540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0075b8d00?, {0x5d9c8a0, 0xc0016ee460}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000184540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3810 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000184540, 0xc00792a060, 0xc0073cc900, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6683 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09490, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0035b5880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78203 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728600, 0xc023f29b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69fa80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3798 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc398, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc370, 0xc0041592f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edf4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00451b4d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edf518?, 0x3b9aca00, 0x0, 0x0?, 0x1f3317b6e101?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edf4a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc2c0, 0xc007703100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4483 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001387f38?, {0x5d9c8c0, 0xc006b71c20}, 0x1, 0xc007580a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x6e?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007325b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3814 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cede8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc016126b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cedc0, 0xc0005146f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002612820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00593db90}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002612898?, 0x3b9aca00, 0x0, 0x0?, 0x20ee58974861?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002612820, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ced10, 0xc0089cbe00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3914 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5d08, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009313840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5ce0, 0xc00ad9f8b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f31e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00531ae10}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f31e78?, 0x3b9aca00, 0x0, 0x0?, 0x217eec1cf4f6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f31e00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5c30, 0x636e646d514c4645?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6688 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08850, 0x47) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011277fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b14a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3616 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001c3d738?, {0x5d9c8c0, 0xc006fd7ad0}, 0x1, 0xc00707be60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc003d55b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6684 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09490, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b43cb00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2680 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322188, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e983c40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322160, 0xc009792ab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001258a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00211fef0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001258a78?, 0x3b9aca00, 0x0, 0x0?, 0x20c71f7d2b2f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001258a00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0013220b0, 0xc00993c000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79028 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632180, 0xc023941000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc011ff1b00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3575 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc000d0fb30, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3576 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3577 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09700}, {0x7f7fb0611580, 0xc000df4fd0}, {0x5e003f8?, 0x572df80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007600540, {0x0?, 0x0?}, 0xc00792a060, 0xc000f62c00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007600540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0087e8380?, {0x5d9c8a0, 0xc000d0fc20}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007600540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4761 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007600540, 0xc00792a060, 0xc007581200, 0xc004df0bd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78287 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd90c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd90b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd90b0, {0xc01f801400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f801400?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f557900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f557900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f557900, {0x4f3b7c0, 0xc023f46660}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4e780, {0xc00a48c400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7090, 0xc01d287b90?, {0x5dbd7f0, 0xc023d016c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80ce20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d01680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3580 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5158, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ec3f7a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5130, 0xc00b00a600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f30780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004435f50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f307f8?, 0x3b9aca00, 0x0, 0x0?, 0x224511c455b6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f30780, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5080, 0xc0006e4200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4768 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001380f38?, {0x5d9c8c0, 0xc00732a390}, 0x1, 0xc009ca8960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x64?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d8ba70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3583 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc000d0fe50, 0x7463656a6e692f6f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3584 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3585 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c880}, {0x7f7fb0611580, 0xc000df5130}, {0x5e003f8?, 0x5745600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076007e0, {0x0?, 0x0?}, 0xc00792a060, 0xc000f62f40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076007e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0087e8940?, {0x5d9c8a0, 0xc000d0ff40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076007e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4773 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076007e0, 0xc00792a060, 0xc009a27680, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78921 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012423680, 0xc023df2d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3604 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df52b8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0048de6a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5290, 0xc00b00a9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f308c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0053c1230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f30938?, 0x3b9aca00, 0x0, 0x0?, 0x1e0ccf937e7b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f308c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df51e0, 0xc0006e4300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4784 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001382738?, {0x5d9c8c0, 0xc0072814d0}, 0x1, 0xc0060d5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x65?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009cb8360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3617 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc003d55b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3607 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1e190, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3608 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3609 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69e9c0}, {0x7f7fb0611580, 0xc000df5290}, {0x5e003f8?, 0x5735d80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076009a0, {0x0?, 0x0?}, 0xc00792a060, 0xc000f63280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076009a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0087e8a00?, {0x5d9c8a0, 0xc001c1e280}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076009a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4778 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076009a0, 0xc00792a060, 0xc009ca80c0, 0xc009badf10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78071 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120faac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120faab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120faab0, {0xc009fd9400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x56f7120?}, {0xc009fd9400?, 0x7f7f9025a308?, 0x7f7fe04aa3c8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4c80, {0x4f3b7c0, 0xc0239477d0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f804150, {0xc011d59000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c820, 0xc011f700c0?, {0x5dbd7f0, 0xc01f69ebc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231febc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69eb80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4785 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009cb8360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 2912 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000959788, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000959760, 0xc005d04c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f7dd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0073d47b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f7ddd8?, 0x3b9aca00, 0x0, 0x0?, 0x1f1727675cff?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f7dd60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0009596b0, 0xc004f7c500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4955 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08250, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d0c4640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000520d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3393 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000e8a738?, {0x5d9c8c0, 0xc007051ce0}, 0x1, 0xc00707a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc000e8a788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009886e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3618 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009886e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4496 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d11320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3660 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000959ba8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000959b80, 0xc005d05ad0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201e1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0072ce540}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201e258?, 0x3b9aca00, 0x0, 0x0?, 0x23eeca84bea3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201e1e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000959ad0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3635 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001738460, 0xc003565e60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3636 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3637 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08740}, {0x7f7fb0611580, 0xc000959760}, {0x5e003f8?, 0x572ca80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed60e0, {0x0?, 0x0?}, 0xc00792a060, 0xc0018146a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed60e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006d03600?, {0x5d9c8a0, 0xc001738550}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed60e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4492 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed60e0, 0xc00792a060, 0xc0060d59e0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78152 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012870ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870ab0, {0xc00f5dce00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dce00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4280, {0x4f3b7c0, 0xc01d610168}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a6a80, {0xc000a73000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6280, 0xc000115ea0?, {0x5dbd7f0, 0xc01f98c240}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4495 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00079ff38?, {0x5d9c8c0, 0xc0072815c0}, 0x1, 0xc009d1e180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d11320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3641 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0009598e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0009598c0, 0xc005d04fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f7dea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0073d5b90}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f7df18?, 0x3b9aca00, 0x0, 0x0?, 0x211e48402943?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f7dea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000959810, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61866 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0151045a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015104580, 0xc00f4a2bb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00eaa5ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc010d2e780}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00eaa5f18?, 0x3b9aca00, 0x0, 0x0?, 0x22fda0addf97?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00eaa5ea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151042c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3644 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001738820, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3645 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3646 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa1540}, {0x7f7fb0611580, 0xc0009598c0}, {0x5e003f8?, 0x572c700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6460, {0x0?, 0x0?}, 0xc00792a060, 0xc001814a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006d03a40?, {0x5d9c8a0, 0xc001738910}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4803 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6460, 0xc00792a060, 0xc007581c20, 0x656220646c756f68?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77888 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b15248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b15238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b15230, {0xc0064dae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0064dae00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf0780, {0x4f3b7c0, 0xc023b8a6a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bca840, {0xc003392400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06f50, 0x5dd4e28?, {0x5dbd7f0, 0xc01e31a580}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ad6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3649 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000959a48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000959a20, 0xc005d05350) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201e000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0079c4d20}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201e078?, 0x3b9aca00, 0x0, 0x0?, 0x21d7eb1689c8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201e000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000959970, 0xc004f7c900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78319 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fbe00, 0xc00bdd2f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b10040?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3652 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001738b40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3653 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3654 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82ca40}, {0x7f7fb0611580, 0xc000959a20}, {0x5e003f8?, 0x572d180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed67e0, {0x0?, 0x0?}, 0xc00792a060, 0xc001814d40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed67e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006d03b80?, {0x5d9c8a0, 0xc001738c30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed67e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4788 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed67e0, 0xc00792a060, 0xc009b18ae0, 0x6e696b222c7d2267?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77637 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da6048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x4167e5?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da6030, {0xc0234fe314, 0x4, 0x4}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0xc0237da270?}, {0xc0234fe314?, 0xc009bad508?, 0x40dad6?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] io.ReadAtLeast({0x7f7fb0670ce8, 0xc010da6000}, {0xc0234fe314, 0x4, 0x4}, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*lengthDelimitedFrameReader).Read(0xc023abe0d8, {0xc011db6000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:76 +0x88 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec050, 0x5dd4e28?, {0x5dbd7f0, 0xc01dc6a200}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e21a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6a1c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3657 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008a5ef38?, {0x5d9c8c0, 0xc0079c5c20}, 0x1, 0xc007ecb7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc004be19e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3658 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc004be19e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6512 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9810, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f7b40e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b00a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5045 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d4f4d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77911 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f260900, 0xc0057fa300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df081c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4985 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008a5ef38?, {0x5d9c8c0, 0xc007a9f650}, 0x1, 0xc009d1fe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009be2090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3664 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001738f50, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3665 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3666 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4300}, {0x7f7fb0611580, 0xc000959b80}, {0x5e003f8?, 0x572ce00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6a80, {0x0?, 0x0?}, 0xc00792a060, 0xc001815320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000a8e0c0?, {0x5d9c8a0, 0xc0017391d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4834 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6a80, 0xc00792a060, 0xc009b19380, 0x746e69223a226570?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77695 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022201e00, 0xc0237f0e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09f80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3669 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000959d08, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5c700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000959ce0, 0xc005d05ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201e320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0072cfb90}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201e398?, 0x3b9aca00, 0x0, 0x0?, 0x220069a1739d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201e320, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000959c30, 0xc004f7cc00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78445 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c858780, 0xc023460200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3672 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001739400, 0x51514a6455314147?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3673 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3674 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4940}, {0x7f7fb0611580, 0xc000959ce0}, {0x5e003f8?, 0x5733700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6c40, {0x0?, 0x0?}, 0xc00792a060, 0xc001815660?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6c40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000a8e580?, {0x5d9c8a0, 0xc0017394f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6c40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4821 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6c40, 0xc00792a060, 0xc009ca8f60, 0xc00213d778?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78960 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fffc648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fffc638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fffc630, {0xc01ff88e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff88e00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05e00, {0x4f3b7c0, 0xc023b8b338}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf2690, {0xc009c26c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f546e0, 0x2?, {0x5dbd7f0, 0xc01f3f55c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4acf20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4954 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08250, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f640e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000520d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3733 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cea78, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01578b080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cea50, 0xc0005c4470) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020dbc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc008058c00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020dbc98?, 0x3b9aca00, 0x0, 0x0?, 0x1e1e90a8d441?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020dbc20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce9a0, 0x656469733a66222c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3701 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ecaf0, 0x6c65537463656a62?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3702 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3703 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51940}, {0x7f7fb0611580, 0xc0091ce4d0}, {0x5e003f8?, 0x5731780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b2620, {0x0?, 0x0?}, 0xc00792a060, 0xc0020dfdc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b2620, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007edd780?, {0x5d9c8a0, 0xc0020ecbe0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b2620, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4829 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b2620, 0xc00792a060, 0xc009ca9b60, 0xc009cc6a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79030 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632c00, 0xc023941200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f51700?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3706 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce658, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f74b60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce630, 0xc0021c7810) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020db860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0070def60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020db8d8?, 0x3b9aca00, 0x0, 0x0?, 0x1ed7e2342890?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020db860, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce580, 0xc0089cb000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4880 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009ccd170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3709 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ece10, 0x6f43746e65696c63?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3710 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3711 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc5f00}, {0x7f7fb0611580, 0xc0091ce630}, {0x5e003f8?, 0x5731400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b27e0, {0x0?, 0x0?}, 0xc00792a060, 0xc00247c100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b27e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007eddd40?, {0x5d9c8a0, 0xc0020ecf00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b27e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4843 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b27e0, 0xc00792a060, 0xc009b19ce0, 0x7320666f20746573?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78513 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f050dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f050db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f050db0, {0xc00ee75400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee75400?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430e500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430e500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430e500, {0x4f3b7c0, 0xc023fb43a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f90ab10, {0xc010b9bc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec2d0, 0xc01d4aeab0?, {0x5dbd7f0, 0xc0236b4600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e25e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b45c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3714 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce7b8, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0069cf860?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce790, 0xc0021c7bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020db9a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005e109f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020dba18?, 0x3b9aca00, 0x0, 0x0?, 0x1ff0925458bc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020db9a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce6e0, 0xc0089cb100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4889 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027cb738?, {0x5d9c8c0, 0xc00758e090}, 0x1, 0xc009d1e840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0027cb7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009b7e750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3717 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ed130, 0x753a66222c7d7b3a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3718 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3719 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10280}, {0x7f7fb0611580, 0xc0091ce790}, {0x5e003f8?, 0x5733380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b29a0, {0x0?, 0x0?}, 0xc00792a060, 0xc00247c440?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b29a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0042ac2c0?, {0x5d9c8a0, 0xc0020ed220}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b29a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4847 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b29a0, 0xc00792a060, 0xc009b4ea20, 0x63656a626f223a22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78797 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013745c80, 0xc0057b5100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3722 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce918, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015f6e600?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce8f0, 0xc0021c7fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020dbae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0088ece10}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020dbb58?, 0x3b9aca00, 0x0, 0x0?, 0x218bafc7194a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020dbae0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ce840, 0xc0089cb200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6123 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fc10, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009b62700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3725 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ed450, 0xc0012a2ee0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3726 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3727 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31b600}, {0x7f7fb0611580, 0xc0091ce8f0}, {0x5e003f8?, 0x572ff00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b2b60, {0x0?, 0x0?}, 0xc00792a060, 0xc00247c780?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b2b60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0042ac600?, {0x5d9c8a0, 0xc0020ed540}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b2b60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4886 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b2b60, 0xc00792a060, 0xc009b4f5c0, 0xc009b60140?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78577 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012871e00, 0xc023460900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82cf00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3730 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00249d738?, {0x5d9c8c0, 0xc008058b40}, 0x1, 0xc0057e8300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0059d1b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3731 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0059d1b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78465 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012422300, 0xc01f0d0c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc00fab7b00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3754 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3736 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020ed860, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3737 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3738 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11340}, {0x7f7fb0611580, 0xc0091cea50}, {0x5e003f8?, 0x5734180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b2d20, {0x0?, 0x0?}, 0xc00792a060, 0xc00247cae0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b2d20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0042ac780?, {0x5d9c8a0, 0xc0020ed950}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b2d20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4915 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b2d20, 0xc00792a060, 0xc009cfb4a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78803 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012980000, 0xc023460c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82ca40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3741 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cebd8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011bc5800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cebb0, 0xc0005c48f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0020dbd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0080ece70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0020dbdd8?, 0x3b9aca00, 0x0, 0x0?, 0x23aba0129752?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0020dbd60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091ceb00, 0xc0089cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77964 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25b080, 0xc01f744200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3744 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0020edb80, 0x4e493157646d5658?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3745 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3746 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16c700}, {0x7f7fb0611580, 0xc0091cebb0}, {0x5e003f8?, 0x5732200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b2ee0, {0x0?, 0x0?}, 0xc00792a060, 0xc00247ce20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b2ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0042acd80?, {0x5d9c8a0, 0xc0020edc70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b2ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4876 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b2ee0, 0xc00792a060, 0xc009cfac00, 0xc009cc7040?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78130 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fa4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fa4b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fa4b0, {0xc00a3aa600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aa600?, 0x3?, 0x37e9d8600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05540, {0x4f3b7c0, 0xc023abfb90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fd1a0, {0xc00b151800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfedae0, 0x2?, {0x5dbd7f0, 0xc023f50f00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da9980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3614 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc028, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d0c4b80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc000, 0xc004158940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edf0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00a33f860}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edf158?, 0x3b9aca00, 0x0, 0x0?, 0x1ffd66337a34?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edf0e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5340, 0xc0006e4500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3478 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4956 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08250, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b86ede0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000520d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3479 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3787c0}, {0x7f7fb0611580, 0xc001efc000}, {0x5e003f8?, 0x572e300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956460, {0x0?, 0x0?}, 0xc00792a060, 0xc001ee0f80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097ee740?, {0x5d9c8a0, 0xc001ef0640}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4899 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956460, 0xc00792a060, 0xc009d1e900, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3763 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df54c8, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010589580?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df54a0, 0xc00b00b0d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f30be0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00a76b980}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f30c58?, 0x3b9aca00, 0x0, 0x0?, 0x226a98f52842?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f30be0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df53f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78206 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c7287c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c7287b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c7287b0, {0xc009fd8600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd8600?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bd2c0, {0x4f3b7c0, 0xc023e5fad0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f273320, {0xc023e2ec00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12d20, 0xc01d0899b0?, {0x5dbd7f0, 0xc01f69ff40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacfaa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69ff00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3518 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0016905a8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012e17740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690580, 0xc000be4210) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00a641bc0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e364d8?, 0x3b9aca00, 0x0, 0x0?, 0x1de8654ac4e3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0016904d0, 0x5656646d43794947?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3766 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1e960, 0x3130343031323032?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3767 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3768 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2dcc0}, {0x7f7fb0611580, 0xc000df54a0}, {0x5e003f8?, 0x572ea00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007600b60, {0x0?, 0x0?}, 0xc00792a060, 0xc000f63c00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007600b60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0087e8ec0?, {0x5d9c8a0, 0xc001c1ea50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007600b60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4919 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007600b60, 0xc00792a060, 0xc009cfbc20, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3483 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cec88, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed3cde0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cec60, 0xc0005c5600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002612320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00a09c7e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002612398?, 0x3b9aca00, 0x0, 0x0?, 0x22cef302ec75?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002612320, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc0b0, 0xc00079c758?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3521 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001e31360, 0xc005a9b020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3778 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3779 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa1780}, {0x7f7fb0611580, 0xc001690580}, {0x5e003f8?, 0x5732580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0001848c0, {0x0?, 0x0?}, 0xc00792a060, 0xc001e2f7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0001848c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003e46e80?, {0x5d9c8a0, 0xc001e31450}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0001848c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4934 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0001848c0, 0xc00792a060, 0xc009f9a180, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4931 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0024f0f38?, {0x5d9c8c0, 0xc00733fd70}, 0x1, 0xc009db4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x30?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009b7ef30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78404 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf6638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6630, {0xc00ad5ca00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5ca00?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afca00, {0x4f3b7c0, 0xc023f47c20}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f376bd0, {0xc002a81c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca3c0, 0xc01d4aeab0?, {0x5dbd7f0, 0xc01e31b840}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4953 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08250, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c807040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000520d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3755 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09000}, {0x7f7fb0611580, 0xc0091cec60}, {0x5e003f8?, 0x573a380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b30a0, {0x0?, 0x0?}, 0xc00792a060, 0xc00247d360?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b30a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0042ace80?, {0x5d9c8a0, 0xc002614230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b30a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4814 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b30a0, 0xc00792a060, 0xc009db4e40, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3486 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc238, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006b5f040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc210, 0xc004158e90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edf360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0068f9e60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edf3d8?, 0x3b9aca00, 0x0, 0x0?, 0x20b951c08c7f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edf360, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc160, 0xc007702e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4909 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d4e120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3783 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006045e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3785 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006045ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78608 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0222007c8, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f795180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0222007b0, {0xc006dfe001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc006dfe001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab1e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab1e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab1e00, {0x4f3b7c0, 0xc01d610cc0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023aefcb0, {0xc007849c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073770, 0xc00691cc00?, {0x5dbd7f0, 0xc01f98c080}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f795200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4908 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001dc5f38?, {0x5d9c8c0, 0xc007e94660}, 0x1, 0xc006ae2ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d4e120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3489 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef0b40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3794 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3795 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b56c0}, {0x7f7fb0611580, 0xc001efc210}, {0x5e003f8?, 0x5740c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0079567e0, {0x0?, 0x0?}, 0xc00792a060, 0xc001ee1840?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0079567e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097ef300?, {0x5d9c8a0, 0xc001ef0c30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0079567e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4925 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0079567e0, 0xc00792a060, 0xc009fd2660, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77932 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee1cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee1cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee1cb0, {0xc01e26f600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26f600?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7400, {0x4f3b7c0, 0xc023cc9bc0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5d200, {0xc000721c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453950, 0xc01d287b90?, {0x5dbd7f0, 0xc023fa1cc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa1c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4957 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00079c738?, {0x5d9c8c0, 0xc007a9ea50}, 0x1, 0xc009d1f740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0071aa5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5030 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003987f38?, {0x5d9c8c0, 0xc007e94630}, 0x1, 0xc006ae2a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc003987fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006a95ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5044 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027ca738?, {0x5d9c8c0, 0xc007e95ce0}, 0x1, 0xc006ae38c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0027ca7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d4f4d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3858 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000959e68, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012437760?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000959e40, 0xc0007a52b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201e640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0025e3f80}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201e6b8?, 0x3b9aca00, 0x0, 0x0?, 0x20f726749d88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201e640, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000959d90, 0xc007346140?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3801 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef0e60, 0x4cf91e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3802 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3803 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f795200}, {0x7f7fb0611580, 0xc001efc370}, {0x5e003f8?, 0x572d500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007956b60, {0x0?, 0x0?}, 0xc00792a060, 0xc0035b40a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007956b60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097ef640?, {0x5d9c8a0, 0xc001ef0f50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007956b60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4904 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007956b60, 0xc00792a060, 0xc009d1f260, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78204 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x4167e5?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728630, {0xc023d3970c, 0x4, 0x4}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0xc01f272cf0?}, {0xc023d3970c?, 0xc00b52c508?, 0x40dad6?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] io.ReadAtLeast({0x7f7fb0670ce8, 0xc00c728600}, {0xc023d3970c, 0x4, 0x4}, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*lengthDelimitedFrameReader).Read(0xc023e5f9f8, {0xc0199f3400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:76 +0x88 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12c30, 0xc01d0899b0?, {0x5dbd7f0, 0xc01f69fd00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacf8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69fcc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3806 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc4f8, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fa68a00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc4d0, 0xc0041596b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edf5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004bdc6c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edf658?, 0x3b9aca00, 0x0, 0x0?, 0x20772591f0d8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edf5e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc420, 0xc007703400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5038 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a104ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3809 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef1180, 0x676e696e7261656c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3826 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3827 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09ac0}, {0x7f7fb0611580, 0xc001efc4d0}, {0x5e003f8?, 0x573e980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0079570a0, {0x0?, 0x0?}, 0xc00792a060, 0xc0035b43e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0079570a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097efac0?, {0x5d9c8a0, 0xc001ef1270}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0079570a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5011 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0079570a0, 0xc00792a060, 0xc008460720, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79059 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fffc948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fffc938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fffc930, {0xc01ff89000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff89000?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf03c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf03c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf03c0, {0x4f3b7c0, 0xc023b8b470}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf3320, {0xc009c27c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f548c0, 0x2?, {0x5dbd7f0, 0xc01f3f5c40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ad3a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3830 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc658, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f59a080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc630, 0xc0041599f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edf720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004bdd770}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edf798?, 0x3b9aca00, 0x0, 0x0?, 0x204bbf5c2cb4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edf720, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc580, 0xc007703500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3833 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef14a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3834 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3835 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50dc0}, {0x7f7fb0611580, 0xc001efc630}, {0x5e003f8?, 0x573b180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007957260, {0x0?, 0x0?}, 0xc00792a060, 0xc0035b4720?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007957260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097efb40?, {0x5d9c8a0, 0xc001ef1590}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007957260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5026 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007957260, 0xc00792a060, 0xc007869bc0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78941 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4d80, 0xc023f28300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63d40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3838 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc7b8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc014efcb00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc790, 0xc004159d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edf860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00434e840}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edf8d8?, 0x3b9aca00, 0x0, 0x0?, 0x21253f00d722?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edf860, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc6e0, 0xc007703600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79015 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012f2c480, 0xc01f9a0300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc02393a5a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3841 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef17c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3842 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3843 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc016e978c0}, {0x7f7fb0611580, 0xc001efc790}, {0x5e003f8?, 0x5734c00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007957420, {0x0?, 0x0?}, 0xc00792a060, 0xc0035b4a60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007957420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0097efc40?, {0x5d9c8a0, 0xc001ef18b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007957420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4971 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007957420, 0xc00792a060, 0xc009ddc720, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78906 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c729e00, 0xc0057fbb00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16d7c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3775 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5628, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011d10660?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5600, 0xc00ad9e010) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f317c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc003cf5500}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f31838?, 0x3b9aca00, 0x0, 0x0?, 0x1e03eb665930?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f317c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5550, 0xc0006e5a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3861 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0017399f0, 0xc0027c8fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3862 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3863 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09800}, {0x7f7fb0611580, 0xc000959e40}, {0x5e003f8?, 0x573e600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6e00, {0x0?, 0x0?}, 0xc00792a060, 0xc00207d560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6e00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004e5da80?, {0x5d9c8a0, 0xc001739ae0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6e00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5000 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6e00, 0xc00792a060, 0xc009ddd8c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78085 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c2048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c2038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c2030, {0xc00f5dc600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dc600?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bcb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bcb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bcb40, {0x4f3b7c0, 0xc0234cba40}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7191d0, {0xc00f9f1400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc00991ebe0, 0x2?, {0x5dbd7f0, 0xc01f98cb00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98cac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78183 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870a80, 0xc01f744e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e62bc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3874 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1f4f0, 0x722b77784e766344?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3875 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3876 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82c880}, {0x7f7fb0611580, 0xc000df5600}, {0x5e003f8?, 0x573d480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007600d20, {0x0?, 0x0?}, 0xc00792a060, 0xc003c902e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007600d20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006652840?, {0x5d9c8a0, 0xc001c1f590}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007600d20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5014 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007600d20, 0xc00792a060, 0xc0084619e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78562 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859c80, 0xc023461500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01dc6bfc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3879 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5788, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bfaf2a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5760, 0xc00ad9e3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f31900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0043e8720}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f31978?, 0x3b9aca00, 0x0, 0x0?, 0x21f6c0abed69?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f31900, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df56b0, 0xc0006e5d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5037 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003984738?, {0x5d9c8c0, 0xc007e95dd0}, 0x1, 0xc006ae3aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x6c?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a104ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3882 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1f7c0, 0x6e626c6477454b51?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3883 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3884 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4040}, {0x7f7fb0611580, 0xc000df5760}, {0x5e003f8?, 0x573fb00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007600ee0, {0x0?, 0x0?}, 0xc00792a060, 0xc003c90620?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007600ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0066528c0?, {0x5d9c8a0, 0xc001c1f900}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007600ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5017 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007600ee0, 0xc00792a060, 0xc00a0cc360, 0xc0071a7d40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79044 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744180, 0xc0058c6500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82d700?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3887 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df58e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df58c0, 0xc00ad9e880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f31a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0043e9980}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f31ab8?, 0x3b9aca00, 0x0, 0x0?, 0x219df21d4497?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f31a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5810, 0xc0006e5e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5065 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003985f38?, {0x5d9c8c0, 0xc00867ba10}, 0x1, 0xc009be5860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0xa?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a01da70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3890 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1fb30, 0x687370616e732e30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3891 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3892 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e622c0}, {0x7f7fb0611580, 0xc000df58c0}, {0x5e003f8?, 0x572d880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076010a0, {0x0?, 0x0?}, 0xc00792a060, 0xc003c90960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076010a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006652d00?, {0x5d9c8a0, 0xc001c1fc20}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076010a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4988 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076010a0, 0xc00792a060, 0xc009be41e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78095 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001e5fbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870030, {0xc01eaf2000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01eaf2000?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab03c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab03c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab03c0, {0x4f3b7c0, 0xc00e3800a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740450, {0xc008762c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f540f0, 0x6?, {0x5dbd7f0, 0xc023e62300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c502a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e622c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3895 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5a48, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02172e820?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5a20, 0xc00ad9ed60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f31b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004ce4a80}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f31bf8?, 0x3b9aca00, 0x0, 0x0?, 0x23fb1c1b4ddf?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f31b80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5970, 0xc0006e5f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6713 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10190, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00679cae0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3898 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001c1fe50, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3899 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3900 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82cfc0}, {0x7f7fb0611580, 0xc000df5a20}, {0x5e003f8?, 0x572dc00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007601260, {0x0?, 0x0?}, 0xc00792a060, 0xc003c90ca0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007601260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006652d80?, {0x5d9c8a0, 0xc001c1ff40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007601260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5007 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007601260, 0xc00792a060, 0xc00a0469c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3903 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5ba8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090daa20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5b80, 0xc00ad9f290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc000f31cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc004ce5cb0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc000f31d38?, 0x3b9aca00, 0x0, 0x0?, 0x20ddf7c4214f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc000f31cc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5ad0, 0xc000560000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5068 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003980f38?, {0x5d9c8c0, 0xc00867bd70}, 0x1, 0xc009be5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x32?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a01db00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3906 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00401c190, 0x514144306a7a495a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3907 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3908 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2d440}, {0x7f7fb0611580, 0xc000df5b80}, {0x5e003f8?, 0x5746080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007601420, {0x0?, 0x0?}, 0xc00792a060, 0xc003c90fe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007601420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00723a640?, {0x5d9c8a0, 0xc00401c280}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007601420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4991 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007601420, 0xc00792a060, 0xc009be46c0, 0xc009bc69c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78446 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f050348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f050338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f050330, {0xc00ee74c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74c00?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430f040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430f040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430f040, {0x4f3b7c0, 0xc023b8a708}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0236f2420, {0xc014195800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec730, 0xc011f700c0?, {0x5dbd7f0, 0xc023bc5f80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba5bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc5f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3911 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027c9f38?, {0x5d9c8c0, 0xc00531adb0}, 0x1, 0xc005fa36e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0072c2510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3912 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0072c2510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5097 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009cf4738?, {0x5d9c8c0, 0xc0087e4330}, 0x1, 0xc009be5e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009cf47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a19e7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5098 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a19e7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3926 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a849b0, 0x305a525230595246?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3917 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00401c5a0, 0x61222c5d22455441?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3918 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3919 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d00300}, {0x7f7fb0611580, 0xc000df5ce0}, {0x5e003f8?, 0x5733a80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076015e0, {0x0?, 0x0?}, 0xc00792a060, 0xc003c91340?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076015e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00723aa00?, {0x5d9c8a0, 0xc00401c690}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076015e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5034 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076015e0, 0xc00792a060, 0xc006ae31a0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78935 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9b00, 0xc00bdd3e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63240?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3817 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002614a00, 0x616574736e692053?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5342 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9ed0, 0x4b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010b66440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaa540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3818 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3819 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6a280}, {0x7f7fb0611580, 0xc0091cedc0}, {0x5e003f8?, 0x572c380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b3260, {0x0?, 0x0?}, 0xc00792a060, 0xc0045ec120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b3260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0042adfc0?, {0x5d9c8a0, 0xc002614af0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b3260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5040 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b3260, 0xc00792a060, 0xc006ae3bc0, 0xc006a8f900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78420 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad4648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad4638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad4630, {0xc01e0db800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e0db800?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e1cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e1cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e1cc0, {0x4f3b7c0, 0xc023c5ac78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023d501e0, {0xc003104c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d770, 0x5dd4e28?, {0x5dbd7f0, 0xc01dc6a2c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8b040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6a280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3940 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000959f18, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018f1d260?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000959ef0, 0xc0003db150) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201e8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005b04060}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201e938?, 0x3b9aca00, 0x0, 0x0?, 0x22a7d56feca5?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201e8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cee70, 0xc0005d8a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5086 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a23d170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3955 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007ccd320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3869 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0026150e0, 0x434d4d4e66705268?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3870 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3871 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08c80}, {0x7f7fb0611580, 0xc000959ef0}, {0x5e003f8?, 0x5738080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed6fc0, {0x0?, 0x0?}, 0xc00792a060, 0xc002ebf980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed6fc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0054c1c00?, {0x5d9c8a0, 0xc001739d60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed6fc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5056 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed6fc0, 0xc00792a060, 0xc009d5b0e0, 0xc004df0bd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79010 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6900, 0xc023f28d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc02393a5a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3942 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ceff8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dc609e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cefd0, 0xc0007ace90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002612d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005b38e70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002612d98?, 0x3b9aca00, 0x0, 0x0?, 0x22b0ce6a6cd7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002612d20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cef20, 0x4a5652444243524f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5158 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a0e0240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3954 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0040b1f38?, {0x5d9c8c0, 0xc005b05260}, 0x1, 0xc0026c5d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x455a4b6f584f4846?, 0x3b9aca00, 0x0, 0x46?, 0xc0040b1f88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007ccd320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3945 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0026152c0, 0x223a22656c646e75?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3946 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3947 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d01dc0}, {0x7f7fb0611580, 0xc0091cefd0}, {0x5e003f8?, 0x5742c00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b3500, {0x0?, 0x0?}, 0xc00792a060, 0xc0045ed620?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b3500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d15880?, {0x5d9c8a0, 0xc002615400}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b3500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5126 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b3500, 0xc00792a060, 0xc009d5be00, 0x65696c63222c226d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6686 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08850, 0x46) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013c61fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b14a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3958 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662188, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ee9fbe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662160, 0xc0003db6f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201eaa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005b9fce0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201eb18?, 0x3b9aca00, 0x0, 0x0?, 0x1e9ca4d034d5?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201eaa0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0046620b0, 0xc00434a500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78386 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee1848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002af0bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee1830, {0xc00aa36800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa36800?, 0x3?, 0x37e930400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddc000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddc000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddc000, {0x4f3b7c0, 0xc0237f9518}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c67050, {0xc003b61400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f559a0, 0x2?, {0x5dbd7f0, 0xc023fa10c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa1080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3950 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0040b0f38?, {0x5d9c8c0, 0xc005b39350}, 0x1, 0xc006235a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007a481b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3951 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007a481b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5085 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0045f8738?, {0x5d9c8c0, 0xc00a2849f0}, 0x1, 0xc00a12d320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x3a?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a23d170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4066 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663368, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663340, 0xc0008f4f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201fae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005f98f30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201fb58?, 0x3b9aca00, 0x0, 0x0?, 0x1ed480d5b092?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201fae0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663290, 0x656461726770552e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3961 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc4140, 0x6574736e69205355?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3962 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3963 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16cb00}, {0x7f7fb0611580, 0xc004662160}, {0x5e003f8?, 0x574e200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed7260, {0x0?, 0x0?}, 0xc00792a060, 0xc004c48260?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed7260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512000?, {0x5d9c8a0, 0xc004cc4230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed7260, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5129 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed7260, 0xc00792a060, 0xc00a234540, 0xc00a20ab00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78525 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c8593c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c8593b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c8593b0, {0xc00c5f5000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00c5f5000?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180780, {0x4f3b7c0, 0xc01d236948}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ddbad0, {0xc00a69a400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06320, 0x5dd4e28?, {0x5dbd7f0, 0xc01f16cb40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16cb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78439 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7980, 0xc0058be700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc5180?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3967 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0046622e8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6e0260?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0046622c0, 0xc0003dbb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201ebe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005bbf710}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201ec58?, 0x3b9aca00, 0x0, 0x0?, 0x1e405ac061c8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201ebe0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662210, 0x223a226570797422?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78721 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf76c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf76b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf76b0, {0xc01267d800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267d800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da68c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da68c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da68c0, {0x4f3b7c0, 0xc00b080d98}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bcacf0, {0xc00ccaa000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb7c0, 0xc02393e000?, {0x5dbd7f0, 0xc023d01200}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca32e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d011c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3970 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc4500, 0x762f2f3531383533?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3971 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3972 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4200}, {0x7f7fb0611580, 0xc0046622c0}, {0x5e003f8?, 0x573df00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed7420, {0x0?, 0x0?}, 0xc00792a060, 0xc004c485c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed7420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512180?, {0x5d9c8a0, 0xc004cc45f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed7420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5119 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed7420, 0xc00792a060, 0xc00a12cb40, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5140 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009beef38?, {0x5d9c8c0, 0xc00a3204e0}, 0x1, 0xc00a322480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x73223a2265707974?, 0x3b9aca00, 0x0, 0x43?, 0x7069726373656422?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a326120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3975 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662448, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00badcdc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662420, 0xc0003dbf30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201ed20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005bdb110}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201ed98?, 0x3b9aca00, 0x0, 0x0?, 0x22736aa091ac?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201ed20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662370, 0xc00434a900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78009 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728300, 0xc01f9a0800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xc012ec9c10?, 0xc01ee21fb8?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3978 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc4820, 0x412f524f77307472?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3979 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3980 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10340}, {0x7f7fb0611580, 0xc004662420}, {0x5e003f8?, 0x5749c00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed75e0, {0x0?, 0x0?}, 0xc00792a060, 0xc004c48900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed75e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512200?, {0x5d9c8a0, 0xc004cc4910}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed75e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5136 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed75e0, 0xc00792a060, 0xc00a235b60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5178 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5910, 0x7) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004eb3d00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3983 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0046625a8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbff280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662580, 0xc000a04620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201ee60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005bf6b10}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201eed8?, 0x3b9aca00, 0x0, 0x0?, 0x23312e82800b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201ee60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0046624d0, 0xc00434aa00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78534 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012422648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0015febb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012422630, {0xc0004b0000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0004b0000?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefc280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefc280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefc280, {0x4f3b7c0, 0xc023b8a030}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fc1e0, {0xc00e596800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca050, 0x5dd4e28?, {0x5dbd7f0, 0xc023cac180}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cac100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3986 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc4b40, 0x756f7365720e1a31?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3987 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3988 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d015c0}, {0x7f7fb0611580, 0xc004662580}, {0x5e003f8?, 0x5741e00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed77a0, {0x0?, 0x0?}, 0xc00792a060, 0xc004c48c40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed77a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0045122c0?, {0x5d9c8a0, 0xc004cc4c30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed77a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5079 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed77a0, 0xc00792a060, 0xc00a047260, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78950 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee0180, 0xc023941500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc00ed645a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3991 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662708, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ba7b100?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0046626e0, 0xc000a04b70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201efa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005c62510}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f018?, 0x3b9aca00, 0x0, 0x0?, 0x21f22f80e430?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201efa0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662630, 0xc00434ab00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5230 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004d63738?, {0x5d9c8c0, 0xc00a320510}, 0x1, 0xc00a3224e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a49c990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3994 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc4e60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3995 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3996 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc54c0}, {0x7f7fb0611580, 0xc0046626e0}, {0x5e003f8?, 0x5742880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed7960, {0x0?, 0x0?}, 0xc00792a060, 0xc004c48f80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed7960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512340?, {0x5d9c8a0, 0xc004cc4f50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed7960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5182 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed7960, 0xc00792a060, 0xc00a12d5c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79045 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0137441c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0137441b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0137441b0, {0xc00e6d1a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d1a00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181180, {0x4f3b7c0, 0xc023e5f908}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc003d749f0, {0xc0191e7c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d9f0, 0x2?, {0x5dbd7f0, 0xc01f82da00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32e060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3999 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662868, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00165f560?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662840, 0xc000a04fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005c63f50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f158?, 0x3b9aca00, 0x0, 0x0?, 0x1debb134ae6d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f0e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662790, 0xc00434ac00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5360 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73e90, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ced6800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000213080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4002 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc5180, 0x6e756f626e697372?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4003 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4004 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63240}, {0x7f7fb0611580, 0xc004662840}, {0x5e003f8?, 0x5746780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed7b20, {0x0?, 0x0?}, 0xc00792a060, 0xc004c492c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed7b20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512a80?, {0x5d9c8a0, 0xc004cc5270}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed7b20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5185 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed7b20, 0xc00792a060, 0xc00a3ac060, 0xc00a3a6140?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78880 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394f548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a872bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394f530, {0xc023cc2400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc2400?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefdb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefdb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefdb80, {0x4f3b7c0, 0xc01d237f08}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3be4e0, {0xc011ec7000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835da40, 0x5dd4e28?, {0x5dbd7f0, 0xc0236b5fc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4007 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0046629c8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c525700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0046629a0, 0xc000a05390) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005c718f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f298?, 0x3b9aca00, 0x0, 0x0?, 0x1e1067b3a8f2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f220, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0046628f0, 0xc00434ad00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78499 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f050180, 0xc02043c400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023c2d000?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4010 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc54a0, 0x6173463259767857?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4011 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4012 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5f80}, {0x7f7fb0611580, 0xc0046629a0}, {0x5e003f8?, 0x574a680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed7ce0, {0x0?, 0x0?}, 0xc00792a060, 0xc004c49600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed7ce0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512b40?, {0x5d9c8a0, 0xc004cc5590}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed7ce0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5160 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed7ce0, 0xc00792a060, 0xc00a0cd860, 0x726576696c654420?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78010 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018dd5bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728330, {0xc009fd8000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd8000?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e31680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e31680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e31680, {0x4f3b7c0, 0xc023946cf0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f0eeb70, {0xc00a348c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07ef0, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc5600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba5c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4015 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662b28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662b00, 0xc000a05760) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005c8b2f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f3d8?, 0x3b9aca00, 0x0, 0x0?, 0x22f78666c6a5?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f360, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662a50, 0xc00434ae00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5245 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11290, 0x57) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01bb54380?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4018 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc57c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4019 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4020 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc55c0}, {0x7f7fb0611580, 0xc004662b00}, {0x5e003f8?, 0x5748380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007ed7ea0, {0x0?, 0x0?}, 0xc00792a060, 0xc004c49940?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007ed7ea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004512bc0?, {0x5d9c8a0, 0xc004cc58b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007ed7ea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77926 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee1548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee1538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee1530, {0xc01e26f000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26f000?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6dc0, {0x4f3b7c0, 0xc023cc9710}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5c0c0, {0xc000721400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453680, 0x2?, {0x5dbd7f0, 0xc023fa1580}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa1540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78793 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744f48, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011e99bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744f30, {0xc0006f2001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006f2001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddd180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddd180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddd180, {0x4f3b7c0, 0xc023e5e270}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0237dbe00, {0xc01a17d000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c125a0, 0xc023da9c20?, {0x5dbd7f0, 0xc023f50700}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69ee00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4023 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662c88, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ff3ff80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662c60, 0xc000a05b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005d94cf0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f518?, 0x3b9aca00, 0x0, 0x0?, 0x22590928669b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f4a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662bb0, 0xc00434b000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5243 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11290, 0x56) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f157660?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4026 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc5ae0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4027 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4028 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b103c0}, {0x7f7fb0611580, 0xc004662c60}, {0x5e003f8?, 0x573c300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575180, {0x0?, 0x0?}, 0xc00792a060, 0xc004c49c80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c0480?, {0x5d9c8a0, 0xc004cc5bd0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5167 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575180, 0xc00792a060, 0xc00a0ec3c0, 0xc00a0d9180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77757 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b9b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b9b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b9b30, {0xc023e0bc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0bc00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0140, {0x4f3b7c0, 0xc01db37e78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3ae150, {0xc01f818000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad0fa0, 0x5dd4e28?, {0x5dbd7f0, 0xc01dc6bdc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6bd80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4031 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662de8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a945180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662dc0, 0xc000a05f90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005da26f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f658?, 0x3b9aca00, 0x0, 0x0?, 0x201e9784ea3a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f5e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662d10, 0xc00434b200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5244 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11290, 0x53) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a4acd20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4034 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004cc5e00, 0x20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4035 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4036 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08280}, {0x7f7fb0611580, 0xc004662dc0}, {0x5e003f8?, 0x5742f80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575340, {0x0?, 0x0?}, 0xc00792a060, 0xc004c49fc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575340, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c0fc0?, {0x5d9c8a0, 0xc004cc5ef0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575340, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5205 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575340, 0xc00792a060, 0xc00a3acb40, 0xc00a3a6500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5227 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bcaf38?, {0x5d9c8c0, 0xc00a489710}, 0x1, 0xc00a22f5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009bcafb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a49c900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4039 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004662f48, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00970d980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004662f20, 0xc0008f4330) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005f0c0f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f798?, 0x3b9aca00, 0x0, 0x0?, 0x23cbc87581a2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f720, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662e70, 0xc00434b400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5217 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a3e4ab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4042 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d56140, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4043 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4044 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69f5c0}, {0x7f7fb0611580, 0xc004662f20}, {0x5e003f8?, 0x573aa80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575500, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3a300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005cb03c0?, {0x5d9c8a0, 0xc004d56230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5219 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575500, 0xc00792a060, 0xc00a22e420, 0x2c2264616574736e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78811 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012980780, 0xc004d0b400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82d8c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4047 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0046630a8, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a7945a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663080, 0xc0008f4700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005f0dad0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201f8d8?, 0x3b9aca00, 0x0, 0x0?, 0x1e69a4145ade?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f860, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004662fd0, 0xc00434b600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5216 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004d5df38?, {0x5d9c8c0, 0xc00a3cca50}, 0x1, 0xc00a0ed860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a3e4ab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4050 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d56460, 0xc0045fa7d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4051 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4052 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32e2c0}, {0x7f7fb0611580, 0xc004663080}, {0x5e003f8?, 0x5746400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a5756c0, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3a640?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a5756c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005cb0e80?, {0x5d9c8a0, 0xc004d56550}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a5756c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5225 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a5756c0, 0xc00792a060, 0xc00a22f140, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78298 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf61c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf61b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf61b0, {0xc0207aba00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207aba00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf0640, {0x4f3b7c0, 0xc0239475a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c8c90, {0xc00a184400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13950, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32e300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236bf400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32e2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4055 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663208, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f1db9c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0046631e0, 0xc0008f4ad0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201f9a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005f694d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201fa18?, 0x3b9aca00, 0x0, 0x0?, 0x1fa735bae72a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201f9a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663130, 0xc00434b800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5260 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a608120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4058 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d56780, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4059 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4060 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d00180}, {0x7f7fb0611580, 0xc0046631e0}, {0x5e003f8?, 0x573ca00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575880, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3a980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005cb13c0?, {0x5d9c8a0, 0xc004d56870}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5266 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575880, 0xc00792a060, 0xc009fd3140, 0xc009fc48c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78239 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012f2c648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f2c638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012f2c630, {0xc00a3ab000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3ab000?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f556640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f556640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f556640, {0x4f3b7c0, 0xc01d611248}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023652c90, {0xc01f819c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6a00, 0x5dd4e28?, {0x5dbd7f0, 0xc023d001c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d00180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4063 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004d5ef38?, {0x5d9c8c0, 0xc005f98ed0}, 0x1, 0xc006b95920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc007df7050) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4064 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc007df7050) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6884 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000faccd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b10e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78802 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012871e48, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f82c9c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012871e30, {0xc00a6f9801, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a6f9801?, 0x0?, 0xc0146a3ce8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180b40, {0x4f3b7c0, 0xc01d610c18}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393ef00, {0xc01aa2c800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c062d0, 0xc00691cb80?, {0x5dbd7f0, 0xc01f98c000}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32f560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82ca40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4085 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663628, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009ff5140?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663600, 0xc0008f57b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201fd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005ff4390}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201fdd8?, 0x3b9aca00, 0x0, 0x0?, 0x216e9916afd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201fd60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663550, 0x6d6f72662d61?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4069 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d56b90, 0x20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4070 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4071 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6900}, {0x7f7fb0611580, 0xc004663340}, {0x5e003f8?, 0x5745d00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575a40, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3ace0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005cb1480?, {0x5d9c8a0, 0xc004d56c80}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5189 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575a40, 0xc00792a060, 0xc00a1b4420, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78862 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c858f00, 0xc02043ce00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4074 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0046634c8, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0097ec420?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0046634a0, 0xc0008f5320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005fa6990}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201fc98?, 0x3b9aca00, 0x0, 0x0?, 0x23d33f77b3fb?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201fc20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0046633f0, 0xc00434bc00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5248 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a0f4f38?, {0x5d9c8c0, 0xc00a3cce40}, 0x1, 0xc00a0edaa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x2273656974726570?, 0x3b9aca00, 0x0, 0x22?, 0x44223a226e6f6974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a0f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4077 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d56eb0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4078 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4079 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d011c0}, {0x7f7fb0611580, 0xc0046634a0}, {0x5e003f8?, 0x5749f80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575c00, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3b020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005cb1540?, {0x5d9c8a0, 0xc004d56fa0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5191 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575c00, 0xc00792a060, 0xc00a1b4b40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5294 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a57c750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4082 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0045f8f38?, {0x5d9c8c0, 0xc005ff4330}, 0x1, 0xc006dd8780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008594090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4083 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008594090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5249 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a0f1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5299 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004da6738?, {0x5d9c8c0, 0xc00a734900}, 0x1, 0xc00a493920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a57ce10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4088 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d572c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4089 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4090 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d01880}, {0x7f7fb0611580, 0xc004663600}, {0x5e003f8?, 0x5748700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00a575dc0, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3b380?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00a575dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005cb15c0?, {0x5d9c8a0, 0xc004d573b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00a575dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5283 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00a575dc0, 0xc00792a060, 0xc00a22fb00, 0x6f206e6f69737265?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78790 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744d80, 0xc0057b4700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4093 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663788, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009312460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663760, 0xc0008f5c40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00201fea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005ff5d70}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00201ff18?, 0x3b9aca00, 0x0, 0x0?, 0x227ef70eefa8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00201fea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0046636b0, 0xc005790000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5259 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004e1c738?, {0x5d9c8c0, 0xc00a3e1b90}, 0x1, 0xc00a3fcc00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a608120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4096 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d575e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4097 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4098 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98ce80}, {0x7f7fb0611580, 0xc004663760}, {0x5e003f8?, 0x5736480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5c700, {0x0?, 0x0?}, 0xc00792a060, 0xc004d3b6c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5c700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0048a2180?, {0x5d9c8a0, 0xc004d576d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5c700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5252 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5c700, 0xc00792a060, 0xc00a3fc2a0, 0xc00a3a6e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78938 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd9cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd9cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd9cb0, {0xc0207aae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207aae00?, 0x3?, 0x7f7fe04a9500?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f556000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f556000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f556000, {0x4f3b7c0, 0xc01d6103d8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4f470, {0xc0115b3400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7f40, 0xc01f3bfad0?, {0x5dbd7f0, 0xc023e637c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4103 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0046638e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0046638c0, 0xc000c7fad0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0060cc6f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f582f8?, 0x3b9aca00, 0x0, 0x0?, 0x1eebe62a3463?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663810, 0xc005790e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4162 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e028, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009571e80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e000, 0xc00108ecb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f588c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006108cc0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58938?, 0x3b9aca00, 0x0, 0x0?, 0x236cbf62c3bc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f588c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663ef0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4106 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d57a40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4107 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4108 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f795000}, {0x7f7fb0611580, 0xc0046638c0}, {0x5e003f8?, 0x574bb80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5c9a0, {0x0?, 0x0?}, 0xc00792a060, 0xc004eb3260?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5c9a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0043d3d80?, {0x5d9c8a0, 0xc004d57b30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5c9a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5286 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5c9a0, 0xc00792a060, 0xc00a4920c0, 0xc00a241ac0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78974 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012980a80, 0xc023460a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4111 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663a48, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001606e40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663a20, 0xc000c7fe20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f583c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0060dc0f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58438?, 0x3b9aca00, 0x0, 0x0?, 0x2123cfcd4d6c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f583c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663970, 0xc005791300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78500 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c858648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c858638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c858630, {0xc008139c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139c00?, 0x3?, 0x37ea98600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefca00, {0x4f3b7c0, 0xc023dc69f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7190e0, {0xc00b8c3c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cad20, 0x2?, {0x5dbd7f0, 0xc023c2d340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2d300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4130 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004d57d60, 0x63617073656d616e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4131 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4132 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16d7c0}, {0x7f7fb0611580, 0xc004663a20}, {0x5e003f8?, 0x5747900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5cb60, {0x0?, 0x0?}, 0xc00792a060, 0xc004eb35a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5cb60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa0300?, {0x5d9c8a0, 0xc004d57e50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5cb60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5288 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5cb60, 0xc00792a060, 0xc00a4927e0, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78904 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728180, 0xc02043de00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16d3c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4135 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663ba8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007282e20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663b80, 0xc00108e170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0060ddb30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58578?, 0x3b9aca00, 0x0, 0x0?, 0x20fa61341df7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663ad0, 0xc005791500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5302 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5dc00, 0xc00792a060, 0xc00a493980, 0xc004e18f78?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4138 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054aa0a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4139 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4140 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11fc0}, {0x7f7fb0611580, 0xc004663b80}, {0x5e003f8?, 0x5736f00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5cd20, {0x0?, 0x0?}, 0xc00792a060, 0xc004eb38e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5cd20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa0380?, {0x5d9c8a0, 0xc0054aa190}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5cd20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5331 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5cd20, 0xc00792a060, 0xc00a0edc20, 0x44223a226e6f6974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77945 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f632ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f632ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f632ab0, {0xc00aa36200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa36200?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf1b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf1b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf1b80, {0x4f3b7c0, 0xc023b8b578}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c676e0, {0xc00ae75400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07630, 0x5dd4e28?, {0x5dbd7f0, 0xc01e31b500}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba4300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31b4c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4143 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663d08, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013c511e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663ce0, 0xc00108e510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0060e77a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f586b8?, 0x3b9aca00, 0x0, 0x0?, 0x20276f0aef6c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58640, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663c30, 0xc005791700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79046 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744300, 0xc0058c6700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82d9c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4146 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054aa3c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4147 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4148 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e62640}, {0x7f7fb0611580, 0xc004663ce0}, {0x5e003f8?, 0x5731080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5cee0, {0x0?, 0x0?}, 0xc00792a060, 0xc004eb3c20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5cee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa0900?, {0x5d9c8a0, 0xc0054aa4b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5cee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5198 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5cee0, 0xc00792a060, 0xc00a1f0720, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78178 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012870338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870330, {0xc01eaf2200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01eaf2200?, 0x3?, 0x7f7fe04a9f18?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab0640, {0x4f3b7c0, 0xc00e380210}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740c00, {0xc008763400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54190, 0x6?, {0x5dbd7f0, 0xc023e62700}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e62640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4151 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004663e68, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bc18aa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc004663e40, 0xc00108e8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0060f9290}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f587f8?, 0x3b9aca00, 0x0, 0x0?, 0x220c45e1bf9d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58780, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc004663d90, 0xc005791900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6106 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4910, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f13aba0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f15c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4154 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054aa6e0, 0x222c7d7b3a222e22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4155 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4156 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31a0c0}, {0x7f7fb0611580, 0xc004663e40}, {0x5e003f8?, 0x574c280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5d0a0, {0x0?, 0x0?}, 0xc00792a060, 0xc004eb3f60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5d0a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa0a80?, {0x5d9c8a0, 0xc0054aa7d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5d0a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5146 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5d0a0, 0xc00792a060, 0xc00a322d80, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78792 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744f00, 0xc0057b4900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69eac0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4159 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004daa738?, {0x5d9c8c0, 0xc006108c60}, 0x1, 0xc0071a9440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00876b0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4160 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00876b0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5361 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005809f38?, {0x5d9c8c0, 0xc00a6634a0}, 0x1, 0xc00a670240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x7b?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a66ebd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5468 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aaff738?, {0x5d9c8c0, 0xc00aaef020}, 0x1, 0xc00aacd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aaf4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5395 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00580af38?, {0x5d9c8c0, 0xc0079e0fc0}, 0x1, 0xc009f9af60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x22?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d265a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4165 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054aaaf0, 0x6f7774656e110a39?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4166 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4167 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6ba00}, {0x7f7fb0611580, 0xc00560e000}, {0x5e003f8?, 0x573b880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5d340, {0x0?, 0x0?}, 0xc00792a060, 0xc00555c2c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5d340, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa0b00?, {0x5d9c8a0, 0xc0054aabe0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5d340, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5149 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5d340, 0xc00792a060, 0xc00a3232c0, 0xc00a364080?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78132 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fa900, 0xc004d0a800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4170 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e188, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f9d1240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e160, 0xc00108f080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0061427b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58a78?, 0x3b9aca00, 0x0, 0x0?, 0x22fa2a97a46c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58a00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e0b0, 0xc005791d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4944 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a81d738?, {0x5d9c8c0, 0xc0079e0f30}, 0x1, 0xc009f9ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d26510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4173 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054aae10, 0xc0071a9800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4174 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4175 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51300}, {0x7f7fb0611580, 0xc00560e160}, {0x5e003f8?, 0x573d100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5d500, {0x0?, 0x0?}, 0xc00792a060, 0xc00555c600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5d500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa0f40?, {0x5d9c8a0, 0xc0054aaf00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5d500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5263 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5d500, 0xc00792a060, 0xc00a3fd020, 0xc004da9f78?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4178 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e2e8, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00caf64c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e2c0, 0xc00108f450) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00615a180}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58bb8?, 0x3b9aca00, 0x0, 0x0?, 0x1f437c4e40ed?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58b40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e210, 0xc005791f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4945 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d26510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4181 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054ab130, 0x3a22656d616e3a66?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4182 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4183 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4980}, {0x7f7fb0611580, 0xc00560e2c0}, {0x5e003f8?, 0x574b800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5d6c0, {0x0?, 0x0?}, 0xc00792a060, 0xc00555c940?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5d6c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa1000?, {0x5d9c8a0, 0xc0054ab220}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5d6c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5265 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5d6c0, 0xc00792a060, 0xc00a3fd3e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78247 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c729848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c729838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c729830, {0xc009fd9e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd9e00?, 0x3?, 0x37e89e700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bde00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bde00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bde00, {0x4f3b7c0, 0xc0239462e8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00ae103c0, {0xc023e2f800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c130e0, 0x2?, {0x5dbd7f0, 0xc01f3f49c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236be1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4188 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e448, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e420, 0xc00108fb30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006232f90}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58e38?, 0x3b9aca00, 0x0, 0x0?, 0x2178588d8f11?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e370, 0xc0057ac700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4221 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005806f38?, {0x5d9c8c0, 0xc006265260}, 0x1, 0xc0073533e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7b3a2273646e6f63?, 0x3b9aca00, 0x0, 0x5c?, 0xc005806f88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008893200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4191 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054ab590, 0x44414a4e67414451?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4192 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4193 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82c280}, {0x7f7fb0611580, 0xc00560e420}, {0x5e003f8?, 0x5738e80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5d880, {0x0?, 0x0?}, 0xc00792a060, 0xc00555d460?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5d880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa18c0?, {0x5d9c8a0, 0xc0054ab680}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5d880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5362 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5d880, 0xc00792a060, 0xc00a323800, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5378 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a66ebd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4196 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e5a8, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ca2940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e580, 0xc00108fe90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f58f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006240840}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f58f78?, 0x3b9aca00, 0x0, 0x0?, 0x20ea1f866790?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f58f00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e4d0, 0xc0057acd00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77644 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da6a80, 0xc0058bef00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01dc6ad80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4199 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054ab8b0, 0xc007352600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4200 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4201 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4500}, {0x7f7fb0611580, 0xc00560e580}, {0x5e003f8?, 0x573bf80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5da40, {0x0?, 0x0?}, 0xc00792a060, 0xc00555d7a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5da40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000fa1fc0?, {0x5d9c8a0, 0xc0054ab9a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5da40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5336 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5da40, 0xc00792a060, 0xc00a4345a0, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78937 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9c80, 0xc00bdd3f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63540?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4204 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e708, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f1da1c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e6e0, 0xc0010783b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006256510}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f590b8?, 0x3b9aca00, 0x0, 0x0?, 0x21f1fb17fa38?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59040, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e630, 0xc0057acf00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78836 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58b0c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58b0b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58b0b0, {0xc00b0b8800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b8800?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afd2c0, {0x4f3b7c0, 0xc01d236888}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f804690, {0xc008d17c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c8c0, 0x2?, {0x5dbd7f0, 0xc023b11140}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80cd80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4207 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054abbd0, 0x776f464d316b544d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4208 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4209 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6b080}, {0x7f7fb0611580, 0xc00560e6e0}, {0x5e003f8?, 0x573cd80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5dc00, {0x0?, 0x0?}, 0xc00792a060, 0xc00555dae0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5dc00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000afe440?, {0x5d9c8a0, 0xc0054abcc0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5dc00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5357 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73e90, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00509b540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000213080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5358 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73e90, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x74222c222e737365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000213080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4212 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e868, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c26bc20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e840, 0xc001078750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006264060}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f591f8?, 0x3b9aca00, 0x0, 0x0?, 0x203ba5891bdf?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e790, 0xc0057ad100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4215 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0054abef0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4216 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4217 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31abc0}, {0x7f7fb0611580, 0xc00560e840}, {0x5e003f8?, 0x5737980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007f5dea0, {0x0?, 0x0?}, 0xc00792a060, 0xc00555de20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007f5dea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000afe4c0?, {0x5d9c8a0, 0xc005a84000}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007f5dea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5381 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007f5dea0, 0xc00792a060, 0xc00a670360, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78336 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad4348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001602bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad4330, {0xc01e0db000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e0db000?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e1400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e1400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e1400, {0x4f3b7c0, 0xc023c5aae0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf3770, {0xc003104400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d630, 0x5dd4e28?, {0x5dbd7f0, 0xc023b11d40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8ab40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11d00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4226 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc868, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01088c040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc840, 0xc000b18f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edfd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005a21b30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edfdd8?, 0x3b9aca00, 0x0, 0x0?, 0x1ebbc4e20c2f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edfd60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4000, 0xc0006e4e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4222 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008893200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4118 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a84780, 0xc0024edfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3850 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0e780, 0xc001dc4fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3851 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3852 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50900}, {0x7f7fb0611580, 0xc001efc840}, {0x5e003f8?, 0x573c680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0079576c0, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e6420?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0079576c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004c82480?, {0x5d9c8a0, 0xc001ef1cc0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0079576c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5310 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0079576c0, 0xc00792a060, 0xc00a770c60, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4224 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560e9c8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009571e60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560e9a0, 0xc001078c10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f592c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0062ced20}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f59338?, 0x3b9aca00, 0x0, 0x0?, 0x2101d84af9d8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f592c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560e8f0, 0x474f6c37486d7566?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78878 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394f3c8, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394f3b0, {0xc000531201, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000531201?, 0x0?, 0xc009abfce8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefd680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefd680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefd680, {0x4f3b7c0, 0xc023e5fe30}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f581a10, {0xc011ec6400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d950, 0xc0069a1c80?, {0x5dbd7f0, 0xc023d00000}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4229 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f0a8, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ed8900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f080, 0xc001079e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0064555c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f59978?, 0x3b9aca00, 0x0, 0x0?, 0x20bcfd2f8d77?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59900, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee40b0, 0x6f68747561736275?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4243 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a84370, 0x7602420a38656e6f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4244 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4245 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10680}, {0x7f7fb0611580, 0xc00560e9a0}, {0x5e003f8?, 0x574c600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6e0e0, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab41c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6e0e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000afe9c0?, {0x5d9c8a0, 0xc005a84460}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6e0e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5420 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6e0e0, 0xc00792a060, 0xc00a90ad80, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78261 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d844c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d844b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d844b0, {0xc00784b400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784b400?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04c80, {0x4f3b7c0, 0xc00e3814e8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f581c20, {0xc01f782400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54cd0, 0xc01d287b90?, {0x5dbd7f0, 0xc0234c64c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51a60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78784 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fffcf48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fffcf38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fffcf30, {0xc0043ce200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0043ce200?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf1900, {0x4f3b7c0, 0xc00b081200}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7a62d0, {0xc013567800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231caa00, 0x315673646c656946?, {0x5dbd7f0, 0xc023d01640}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3160) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d015c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4248 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005834738?, {0x5d9c8c0, 0xc005b396e0}, 0x1, 0xc006235c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0088938c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4249 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0088938c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78771 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013744ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744ab0, {0xc0006c0200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c0200?, 0x3?, 0x37e9d8100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7680, {0x4f3b7c0, 0xc00b081578}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bcbe00, {0xc00ccaa800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb9f0, 0x2?, {0x5dbd7f0, 0xc023d01940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d01880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4251 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf0a8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0076bc3c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf080, 0xc0007ad2f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002612e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc005b39740}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002612ed8?, 0x3b9aca00, 0x0, 0x0?, 0x1ebe383f6ee1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002612e60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560ea50, 0x68746c6165682f6c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5447 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21650, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b2953a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddaf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4253 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5db8, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00affe960?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5d90, 0xc000943040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0042e20a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00577d230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0042e2118?, 0x3b9aca00, 0x0, 0x0?, 0x22465e74b02b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0042e20a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560eb00, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5445 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21650, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0035b4ce0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddaf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3927 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3928 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7200}, {0x7f7fb0611580, 0xc000df5d90}, {0x5e003f8?, 0x5739c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076017a0, {0x0?, 0x0?}, 0xc00792a060, 0xc003c91ce0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076017a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007a28040?, {0x5d9c8a0, 0xc00401c8c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076017a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4255 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560ec88, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f865040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560ec60, 0xc001079170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0063433e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f595b8?, 0x3b9aca00, 0x0, 0x0?, 0x2041ae9392bf?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560ebb0, 0x6f72207974696c65?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5472 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8a10, 0x5f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0072d1680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006923c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5431 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076017a0, 0xc00792a060, 0xc00a470600, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4124 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560ee98, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560ee70, 0xc001079880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006383500}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f59798?, 0x3b9aca00, 0x0, 0x0?, 0x21bfd255b2f2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59720, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf130, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4258 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a84be0, 0x735d5b206e692030?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4259 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4260 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d01540}, {0x7f7fb0611580, 0xc00560ec60}, {0x5e003f8?, 0x5735680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6e380, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab4660?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6e380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000aff000?, {0x5d9c8a0, 0xc005a84cd0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6e380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5466 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6e380, 0xc00792a060, 0xc00aaccc00, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78979 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b15500, 0xc023f28a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4262 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d9bf38?, {0x5d9c8c0, 0xc005b39a40}, 0x1, 0xc00792a240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0085dc3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4263 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0085dc3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5473 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8a10, 0x60) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dc61620?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006923c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4265 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d97738?, {0x5d9c8c0, 0xc0063831a0}, 0x1, 0xc004bde300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0085dc480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4266 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0085dc480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78650 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b14a80, 0xc0237f1a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4268 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560ede8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00731dca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560edc0, 0xc0010795e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006383200}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f596f8?, 0x3b9aca00, 0x0, 0x0?, 0x232b3d094988?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59680, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560ed10, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5506 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8a10, 0x61) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010589f40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006923c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4298 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82dc80}, {0x7f7fb0611580, 0xc0091cf340}, {0x5e003f8?, 0x5730280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b3a40, {0x0?, 0x0?}, 0xc00792a060, 0xc006244560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b3a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0057a8380?, {0x5d9c8a0, 0xc002615ef0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b3a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4271 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a850e0, 0x4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4272 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4273 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11940}, {0x7f7fb0611580, 0xc00560edc0}, {0x5e003f8?, 0x5746e80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6e540, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab49e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6e540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000aff200?, {0x5d9c8a0, 0xc005a851d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6e540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5460 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6e540, 0xc00792a060, 0xc00a671ce0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78984 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a6048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a6038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a6030, {0xc0204caa00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204caa00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46d7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46d7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46d7c0, {0x4f3b7c0, 0xc01d610df8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f35b860, {0xc0137f8800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072500, 0x2?, {0x5dbd7f0, 0xc01df09440}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ffb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df093c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4277 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002615a40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4278 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4279 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cac700}, {0x7f7fb0611580, 0xc00560ee70}, {0x5e003f8?, 0x5730600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6e700, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab4c80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6e700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000aff280?, {0x5d9c8a0, 0xc005a852c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6e700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5508 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6e700, 0xc00792a060, 0xc00aacd200, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78524 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859380, 0xc023460e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cadd40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4126 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf2b8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006513700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf290, 0xc0007ad8d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00642a810}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0026130b8?, 0x3b9aca00, 0x0, 0x0?, 0x20c7c94f8c47?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613040, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf1e0, 0x68746c6165682f6c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79019 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fffc7c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00581bbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fffc7b0, {0xc00e483600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e483600?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7e00, {0x4f3b7c0, 0xc01d610d80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393f410, {0xc005173c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072c30, 0x2?, {0x5dbd7f0, 0xc01f98c1c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ffa80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3855 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efc9c8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0070b46a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efc9a0, 0xc000b19350) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001edff40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0063fbad0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001edffb8?, 0x3b9aca00, 0x0, 0x0?, 0x216dabbb1f1b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001edff40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efc8f0, 0x626f223a22657079?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4129 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002615c70, 0x63736564227b3a22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4290 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4291 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc00ac4d1c0}, {0x7f7fb0611580, 0xc0091cf290}, {0x5e003f8?, 0x5736100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b3880, {0x0?, 0x0?}, 0xc00792a060, 0xc006244280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b3880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0057a8280?, {0x5d9c8a0, 0xc002615d60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b3880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5501 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b3880, 0xc00792a060, 0xc00ab18660, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78182 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012870938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870930, {0xc01eaf2600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01eaf2600?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab0c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab0c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab0c80, {0x4f3b7c0, 0xc00e380390}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7415c0, {0xc011d95800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f542d0, 0x6?, {0x5dbd7f0, 0xc023e62c80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e62bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4306 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001ef1f40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4307 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4308 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63d40}, {0x7f7fb0611580, 0xc001efc9a0}, {0x5e003f8?, 0x5737280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007957880, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e6780?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007957880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004c828c0?, {0x5d9c8a0, 0xc004690050}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007957880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5481 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007957880, 0xc00792a060, 0xc00a9d0cc0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78939 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9e00, 0xc023f28000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4311 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efcb28, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a1c8f80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efcb00, 0xc000b19720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0046940a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006447500}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694118?, 0x3b9aca00, 0x0, 0x0?, 0x1ed7e7a72d22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0046940a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efca50, 0xc002118500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5597 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7db950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4297 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4314 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004690280, 0x6f464d316b544d78?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4315 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4316 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2d5c0}, {0x7f7fb0611580, 0xc001efcb00}, {0x5e003f8?, 0x574b480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007957a40, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e6ac0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007957a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004c82e00?, {0x5d9c8a0, 0xc004690370}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007957a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5520 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007957a40, 0xc00792a060, 0xc00ab89b60, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78879 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394f500, 0xc023940700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b5bc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4282 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560eff8, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0070b5640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560efd0, 0xc001079bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0064552f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f598d8?, 0x3b9aca00, 0x0, 0x0?, 0x20bb8c636035?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59860, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560ef20, 0xc0057add00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5622 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ad60cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4296 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0046905a0, 0xc00644efb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4285 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a854f0, 0xee126d6f632e6572?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4286 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4287 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c67c0}, {0x7f7fb0611580, 0xc00560efd0}, {0x5e003f8?, 0x5743a00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6e8c0, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab4fc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6e8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000aff600?, {0x5d9c8a0, 0xc005a855e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6e8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5516 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6e8c0, 0xc00792a060, 0xc00ab88de0, 0xc005d98f78?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77896 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f38648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f38638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f38630, {0xc023cc2c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc2c00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf1cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf1cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf1cc0, {0x4f3b7c0, 0xc023dc7cc8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9a1e0, {0xc0086a1400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe6b40, 0x222c22315673646c?, {0x5dbd7f0, 0xc023b11c80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8ae60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11c40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5668 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a87d7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4323 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0ea00, 0x414738424d424d77?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4324 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4325 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7580}, {0x7f7fb0611580, 0xc00560f080}, {0x5e003f8?, 0x574de80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6ea80, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab5260?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6ea80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000326c00?, {0x5d9c8a0, 0xc005a856d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6ea80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5329 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6ea80, 0xc00792a060, 0xc00a1f1c80, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77677 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022200dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022200db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022200db0, {0xc023f9ca00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023f9ca00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddca00, {0x4f3b7c0, 0xc01d588f78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ca4a80, {0xc01f782c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad0370, 0x222c22315673646c?, {0x5dbd7f0, 0xc016e96d80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc016e96d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5596 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006448f38?, {0x5d9c8c0, 0xc00a7e4b70}, 0x1, 0xc00a7f66c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7db950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5550 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b3a40, 0xc00792a060, 0xc00ab5aae0, 0xc00ab15000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4321 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efcd38, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018fca7e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efcd10, 0xc000b19c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00651aa50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0046942f8?, 0x3b9aca00, 0x0, 0x0?, 0x209204ade58c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efcc60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4328 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f208, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01df71720?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f1e0, 0xc001082250) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0065713b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f59b58?, 0x3b9aca00, 0x0, 0x0?, 0x226a6f22e7ee?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59ae0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560f130, 0x4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4340 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0046907d0, 0x1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4341 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4342 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31b800}, {0x7f7fb0611580, 0xc001efcd10}, {0x5e003f8?, 0x5738400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007957c00, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e7480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007957c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004c83580?, {0x5d9c8a0, 0xc0046908c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007957c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5572 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007957c00, 0xc00792a060, 0xc00a9fc3c0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78622 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58aa80, 0xc0057de700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b103c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78436 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a76c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a76b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a76b0, {0xc00ee74400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74400?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430e640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430e640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430e640, {0x4f3b7c0, 0xc0237f9f80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f13a3f0, {0xc00849bc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec0a0, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc4e40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba4d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3934 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00401caf0, 0xc0064497b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4346 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0ec80, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4347 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4348 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08240}, {0x7f7fb0611580, 0xc001efcdc0}, {0x5e003f8?, 0x573f400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007957dc0, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e7720?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007957dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004c836c0?, {0x5d9c8a0, 0xc0046909b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007957dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5634 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007957dc0, 0xc00792a060, 0xc00ab5ba40, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77972 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022201cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022201cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022201cb0, {0xc01e0da600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e0da600?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46ca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46ca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46ca00, {0x4f3b7c0, 0xc0234ca6a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f596ea0, {0xc00e0b1000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453d10, 0x5dd4e28?, {0x5dbd7f0, 0xc023cacd00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023caccc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4301 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf4c8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a945740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf4a0, 0xc0034cc260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0026132c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0066cf5c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613338?, 0x3b9aca00, 0x0, 0x0?, 0x1f090ececd3d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0026132c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf3f0, 0xc0057b4100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4331 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a85950, 0xa38656e6f4e0432?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4332 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4333 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63780}, {0x7f7fb0611580, 0xc00560f1e0}, {0x5e003f8?, 0x5738780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6ec40, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab55c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6ec40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000327680?, {0x5d9c8a0, 0xc005a85a40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6ec40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5579 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6ec40, 0xc00792a060, 0xc00a9fdce0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4351 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efcf48, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0091fdd00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efcf20, 0xc00339c3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006588ba0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0046944d8?, 0x3b9aca00, 0x0, 0x0?, 0x235890ac212d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694460, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efce70, 0xc002118a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5621 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00abdcf38?, {0x5d9c8c0, 0xc00a7e5ce0}, 0x1, 0xc00a7f7380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00abdcfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ad60cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5653 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004696f38?, {0x5d9c8c0, 0xc00ac29c20}, 0x1, 0xc00ad8b260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x72?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ae84000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5713 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b052cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4354 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004690be0, 0x2f412f524f773074?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4355 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4356 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5340}, {0x7f7fb0611580, 0xc001efcf20}, {0x5e003f8?, 0x573f080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007e5ee00, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e7a60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007e5ee00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004c83d40?, {0x5d9c8a0, 0xc004690cd0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007e5ee00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5603 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007e5ee00, 0xc00792a060, 0xc00a696ba0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77934 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6180, 0xc01f0d1b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4386 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f368, 0x5c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002f0ba60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f340, 0xc0010826f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004f59cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0066c2180}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004f59d38?, 0x3b9aca00, 0x0, 0x0?, 0x1dee9c2a96af?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004f59cc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560f290, 0x6f414d4d51514a64?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5663 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00abd8738?, {0x5d9c8c0, 0xc00b04e000}, 0x1, 0xc00b00d740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aeaa750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4359 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117af48, 0x97) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005ab5460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117af20, 0xc000ee4160) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001db6960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00a4d0600}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001db69d8?, 0x3b9aca00, 0x0, 0x0?, 0x22bcf233bf38?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001db6960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efcfd0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4389 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc005a85db0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4390 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5730 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ac58f38?, {0x5d9c8c0, 0xc00b04e090}, 0x1, 0xc00b00d860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00ac58fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00afa6ab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3787 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690708, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aae96a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0016906e0, 0xc000be5850) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0067050e0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e366b8?, 0x3b9aca00, 0x0, 0x0?, 0x23dfdf9f0624?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36640, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690630, 0xc002118600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4304 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d98140, 0xc005d99fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4305 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4402 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e62900}, {0x7f7fb0611580, 0xc0091cf4a0}, {0x5e003f8?, 0x5736800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b3c00, {0x0?, 0x0?}, 0xc00792a060, 0xc0062448a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b3c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0057a8b40?, {0x5d9c8a0, 0xc006d98230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b3c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4391 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d9c0}, {0x7f7fb0611580, 0xc00560f340}, {0x5e003f8?, 0x573f780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000a6ee00, {0x0?, 0x0?}, 0xc00792a060, 0xc005ab5960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000a6ee00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000327900?, {0x5d9c8a0, 0xc005a85ea0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000a6ee00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5613 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b3c00, 0xc00792a060, 0xc00a697f20, 0x657571655265626f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5683 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000a6ee00, 0xc00792a060, 0xc00a6b4780, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77696 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022201e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022201e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022201e30, {0xc023cc3800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc3800?, 0x3?, 0x5be79600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912280, {0x4f3b7c0, 0xc023c5a108}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ca5590, {0xc023dc4c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019452f00, 0x2?, {0x5dbd7f0, 0xc023bc4340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e7d60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6288 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:320 +0x73 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:318 +0x13d +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4395 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bacf38?, {0x5d9c8c0, 0xc006a8ce10}, 0x1, 0xc0084602a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009bacfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006a946c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3790 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001e31810, 0xc001dc77b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3791 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3792 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d01b00}, {0x7f7fb0611580, 0xc0016906e0}, {0x5e003f8?, 0x5744100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000184a80, {0x0?, 0x0?}, 0xc00792a060, 0xc001e2ffe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000184a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003e47f40?, {0x5d9c8a0, 0xc001e31900}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000184a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5698 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000184a80, 0xc00792a060, 0xc00ad8bda0, 0xc00ab15f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78220 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f261cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f261cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f261cb0, {0xc01e26e600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26e600?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6500, {0x4f3b7c0, 0xc00d127338}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5c750, {0xc009943c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072b40, 0xc01d4aeab0?, {0x5dbd7f0, 0xc016e96140}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc016e96100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78171 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394f0c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394f0b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394f0b0, {0xc00e482a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e482a00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b52c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b52c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b52c0, {0x4f3b7c0, 0xc023e5e7f8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b19d40, {0xc00aef7c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c124b0, 0x5dd4e28?, {0x5dbd7f0, 0xc00ac4dfc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eaceb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc00ac4df80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3624 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cac200}, {0x7f7fb0611580, 0xc00117af20}, {0x5e003f8?, 0x5740200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e02a0, {0x0?, 0x0?}, 0xc00792a060, 0xc001dc04c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e02a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003b64b00?, {0x5d9c8a0, 0xc001db3ef0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e02a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5565 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e02a0, 0xc00792a060, 0xc00abcf680, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78877 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394f380, 0xc023940600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b56c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5831 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282a90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3627 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd0a8, 0x1c8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f20f700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd080, 0xc00339c960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0046945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0067138f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694618?, 0x3b9aca00, 0x0, 0x0?, 0x1db427983d9f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0046945a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00117afd0, 0xc007973900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5707 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00469cf38?, {0x5d9c8c0, 0xc00b04e450}, 0x1, 0xc00b00da40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00469cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b052090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4405 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd578, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006afd960?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd550, 0xc00339da30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006a966c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694a78?, 0x3b9aca00, 0x0, 0x0?, 0x1ee860584d13?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694a00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf550, 0xc0005d9400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4363 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc007122140, 0x2d45544143494649?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4364 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4365 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50d00}, {0x7f7fb0611580, 0xc001efd080}, {0x5e003f8?, 0x574e900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7c000, {0x0?, 0x0?}, 0xc00792a060, 0xc0043e7de0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7c000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00013e200?, {0x5d9c8a0, 0xc004691040}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7c000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3629 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b158, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000f7e900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b130, 0xc000ee45d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001db6b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0067c03c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001db6bb8?, 0x3b9aca00, 0x0, 0x0?, 0x222ae068358a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001db6b40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00117b080, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5703 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7c000, 0xc00792a060, 0xc00b00d140, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5708 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b052090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4419 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690868, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a3c0da0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690840, 0xc000be5bf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006837080}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e367f8?, 0x3b9aca00, 0x0, 0x0?, 0x1fd6e52b87b3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36780, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690790, 0x3a6e6f6973736572?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3632 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc007122370, 0x736564227b3a2264?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3633 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4434 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7540}, {0x7f7fb0611580, 0xc00117b130}, {0x5e003f8?, 0x5743d80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e0700, {0x0?, 0x0?}, 0xc00792a060, 0xc001dc0f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e0700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003b65840?, {0x5d9c8a0, 0xc007122460}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e0700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5660 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e0700, 0xc00792a060, 0xc00ac4fc80, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78306 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fb3c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fb3b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fb3b0, {0xc0122b5400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b5400?, 0x3?, 0x37e89e700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2ca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2ca00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2ca00, {0x4f3b7c0, 0xc00b0809c0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023aef230, {0xc0191e7400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c7d0, 0x2?, {0x5dbd7f0, 0xc023f50d40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fef20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50d00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78807 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012980480, 0xc004d0ab00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82cfc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78402 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b15800, 0xc0237f0d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e31abc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4368 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd208, 0x5) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0072d0d60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd1e0, 0xc00339cd80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0046946e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0068af830}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694758?, 0x3b9aca00, 0x0, 0x0?, 0x23abd13919d7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0046946e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efd130, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4422 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001e31b30, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4423 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4424 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df093c0}, {0x7f7fb0611580, 0xc001690840}, {0x5e003f8?, 0x5744800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000184ee0, {0x0?, 0x0?}, 0xc00792a060, 0xc002e20320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000184ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000eff8c0?, {0x5d9c8a0, 0xc001e31c20}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000184ee0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78980 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b15548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b15538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b15530, {0xc0204ca600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204ca600?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46cc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46cc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46cc80, {0x4f3b7c0, 0xc01d610ca8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f35a780, {0xc00b471c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072230, 0x2?, {0x5dbd7f0, 0xc01df08e00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5744 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007005738?, {0x5d9c8c0, 0xc00afde4e0}, 0x1, 0xc00afa9c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00afd3b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4427 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0016909c8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bc19d60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0016909a0, 0xc000be5f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e368c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006902b40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e36938?, 0x3b9aca00, 0x0, 0x0?, 0x21cf84aac8ce?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e368c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0016908f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4451 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004691270, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4452 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4453 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16d640}, {0x7f7fb0611580, 0xc001efd1e0}, {0x5e003f8?, 0x5748a80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7c1c0, {0x0?, 0x0?}, 0xc00792a060, 0xc007208120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7c1c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b013040?, {0x5d9c8a0, 0xc004691360}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7c1c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5768 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7c1c0, 0xc00792a060, 0xc00aeaea80, 0xc00ac4d9c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5741 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a6def38?, {0x5d9c8c0, 0xc00afde450}, 0x1, 0xc00afa9aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a6defb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00afd3a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5779 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0012e8738?, {0x5d9c8c0, 0xc00afde5a0}, 0x1, 0xc00afa9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00afd3b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3931 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000df5f18, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c5880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000df5ef0, 0xc0009434c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0042e21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00699b470}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0042e2258?, 0x3b9aca00, 0x0, 0x0?, 0x2322c8ba8756?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0042e21e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc000df5e40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4430 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc001e31e50, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4431 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4432 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32ee40}, {0x7f7fb0611580, 0xc0016909a0}, {0x5e003f8?, 0x5741a80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0001850a0, {0x0?, 0x0?}, 0xc00792a060, 0xc002e20660?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0001850a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000effac0?, {0x5d9c8a0, 0xc001e31f40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0001850a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5765 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0001850a0, 0xc00792a060, 0xc00aeae660, 0xc00ac4d600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78540 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25b3c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25b3b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25b3b0, {0xc0004b1600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0004b1600?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefd180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefd180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefd180, {0x4f3b7c0, 0xc023b8a870}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fddd0, {0xc00e597800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca550, 0x2?, {0x5dbd7f0, 0xc023cad500}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4aca20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cad4c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4467 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690b28, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018cad8e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690b00, 0xc0035603c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00696aa80}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e36a78?, 0x3b9aca00, 0x0, 0x0?, 0x2028310d3775?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36a00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690a50, 0xc00045d100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5780 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00afd3b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4470 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002e40190, 0x7473696c3a66222c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4471 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4472 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cad4c0}, {0x7f7fb0611580, 0xc001690b00}, {0x5e003f8?, 0x5737d00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000185420, {0x0?, 0x0?}, 0xc00792a060, 0xc002e209a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000185420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000f821c0?, {0x5d9c8a0, 0xc002e40280}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000185420, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5747 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000185420, 0xc00792a060, 0xc00a6b5c20, 0x656c755279726576?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78845 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58b800, 0xc0057dfb00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc010337c20?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3935 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 3936 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08b00}, {0x7f7fb0611580, 0xc000df5ef0}, {0x5e003f8?, 0x573db80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc007601960, {0x0?, 0x0?}, 0xc00792a060, 0xc00456e020?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc007601960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007a28240?, {0x5d9c8a0, 0xc00401cbe0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc007601960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5774 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007601960, 0xc00792a060, 0xc00aeaf680, 0xc00a892e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4456 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd368, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed54d60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd340, 0xc00339d1d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006a0f680}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694898?, 0x3b9aca00, 0x0, 0x0?, 0x21884e75f2a9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694820, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efd290, 0xc002118f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5782 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006fff738?, {0x5d9c8c0, 0xc00b04e480}, 0x1, 0xc00b00daa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00afd3c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5123 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0024ee738?, {0x5d9c8c0, 0xc004f68030}, 0x1, 0xc00a0cc8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0024ee7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a210d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4459 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004691590, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4460 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4461 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f378fc0}, {0x7f7fb0611580, 0xc001efd340}, {0x5e003f8?, 0x5742180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7c380, {0x0?, 0x0?}, 0xc00792a060, 0xc007208460?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7c380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b013140?, {0x5d9c8a0, 0xc004691680}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7c380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5734 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7c380, 0xc00792a060, 0xc00afa8840, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78981 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b15680, 0xc023f28f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08dc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78593 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728f00, 0xc00a186600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c440?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4464 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd4c8, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0020de3c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd4a0, 0xc00339d5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006a7b320}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0046949d8?, 0x3b9aca00, 0x0, 0x0?, 0x23148560d16a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694960, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efd3f0, 0xc002119000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5832 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282a90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7453656c62617475?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4437 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b2b8, 0x5d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c3f3c20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b290, 0xc000ee4960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001db6c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006a8c270}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001db6cf8?, 0x3b9aca00, 0x0, 0x0?, 0x1e6e903cc825?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001db6c80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00117b1e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4499 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0046918b0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4500 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4501 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51e00}, {0x7f7fb0611580, 0xc001efd4a0}, {0x5e003f8?, 0x5744480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7c540, {0x0?, 0x0?}, 0xc00792a060, 0xc0072087a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7c540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b0131c0?, {0x5d9c8a0, 0xc0046919a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7c540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5794 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7c540, 0xc00792a060, 0xc00aeea1e0, 0xc00aed0140?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78315 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fbb00, 0xc00bdd2d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f51bc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4440 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc007122690, 0xc001168fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4441 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4442 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa1080}, {0x7f7fb0611580, 0xc00117b290}, {0x5e003f8?, 0x573ed00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0097e08c0, {0x0?, 0x0?}, 0xc00792a060, 0xc001dc1240?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0097e08c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc003b65980?, {0x5d9c8a0, 0xc007122780}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0097e08c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5759 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0097e08c0, 0xc00792a060, 0xc00aea9b00, 0x223a226570797422?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5712 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0045f5f38?, {0x5d9c8c0, 0xc00b1302d0}, 0x1, 0xc00aff7d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0045f5fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b052cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4595 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4506 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d98500, 0xc001dc87b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4507 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4508 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc5180}, {0x7f7fb0611580, 0xc001efd550}, {0x5e003f8?, 0x5744f00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7c700, {0x0?, 0x0?}, 0xc00792a060, 0xc007208a80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7c700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b013c00?, {0x5d9c8a0, 0xc004691ae0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7c700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5788 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7c700, 0xc00792a060, 0xc00aff6960, 0xc00af91580?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4407 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf6d8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0091a51c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf6b0, 0xc0034cc820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0026135e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006aef1d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613658?, 0x3b9aca00, 0x0, 0x0?, 0x21bafca444c1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0026135e0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf600, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5830 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282a90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4594 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc004691d10, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4410 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d98730, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4411 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4412 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d680}, {0x7f7fb0611580, 0xc0091cf6b0}, {0x5e003f8?, 0x5749500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0076b3dc0, {0x0?, 0x0?}, 0xc00792a060, 0xc006245300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0076b3dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0057a9dc0?, {0x5d9c8a0, 0xc006d98820}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0076b3dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5803 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0076b3dc0, 0xc00792a060, 0xc00aeeba40, 0x632e6572757a612e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78438 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a7848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a7838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a7830, {0xc00ee74600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74600?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430e8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430e8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430e8c0, {0x4f3b7c0, 0xc023b8a060}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f13a9c0, {0xc014194000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec190, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc51c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba4f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc5180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5793 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b0b3f38?, {0x5d9c8c0, 0xc00b04ea50}, 0x1, 0xc00b00de60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b0b3fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b11d170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4415 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf838, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0060cf020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf810, 0xc0034cccc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006aff1d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613798?, 0x3b9aca00, 0x0, 0x0?, 0x1db685a89422?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613720, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf760, 0xc0005d9800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5859 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007004f38?, {0x5d9c8c0, 0xc00b0a50e0}, 0x1, 0xc00b0a84e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b052d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4616 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efdaf8, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009787dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efdad0, 0xc00373aa00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006c95260}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694f78?, 0x3b9aca00, 0x0, 0x0?, 0x20442a86740b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694f00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efda20, 0x697061222c5d2245?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4514 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d98a50, 0x5554366c45564568?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4515 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4516 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d400}, {0x7f7fb0611580, 0xc0091cf810}, {0x5e003f8?, 0x5741700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747c000, {0x0?, 0x0?}, 0xc00792a060, 0xc006245640?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747c000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005704040?, {0x5d9c8a0, 0xc006d98b40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747c000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5800 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747c000, 0xc00792a060, 0xc00aeeb080, 0xc00aed0ac0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77807 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd9248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd9238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd9230, {0xc0122b4800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b4800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73d540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73d540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73d540, {0x4f3b7c0, 0xc023dc6b40}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f35bb60, {0xc023adbc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190722d0, 0x222c22315673646c?, {0x5dbd7f0, 0xc023cad780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cad700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4475 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cf8e8, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009571620?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cf8c0, 0xc0034cd060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0026137c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006aff4d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613838?, 0x3b9aca00, 0x0, 0x0?, 0x202d6d793ee7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0026137c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690bb0, 0xc00045d200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5889 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b2c4c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78945 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b14f00, 0xc023f28800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08240?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4520 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002e404b0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4521 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4522 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31b6c0}, {0x7f7fb0611580, 0xc0091cf8c0}, {0x5e003f8?, 0x5742500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747c1c0, {0x0?, 0x0?}, 0xc00792a060, 0xc0062458e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747c1c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005704080?, {0x5d9c8a0, 0xc006d98c30}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747c1c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5806 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747c1c0, 0xc00792a060, 0xc00aeebf20, 0xc00aed1580?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4477 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0072b5738?, {0x5d9c8c0, 0xc006a969c0}, 0x1, 0xc0085869c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc002e64510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4478 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc002e64510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78403 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b15848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b15838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b15830, {0xc00ad5c400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5c400?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afc500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afc500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afc500, {0x4f3b7c0, 0xc023f47b90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f376300, {0xc002a81000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca2d0, 0xc01d4aeab0?, {0x5dbd7f0, 0xc01e31b700}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31b6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6356 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283d90, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011e24ca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0092947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4480 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690d38, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0138dcb80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690d10, 0xc003560a10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36be0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b1e540}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e36c58?, 0x3b9aca00, 0x0, 0x0?, 0x1e21184a2227?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36be0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690c60, 0x4cf91e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5885 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b18b738?, {0x5d9c8c0, 0xc00b2c2990}, 0x1, 0xc00b2c6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b18b7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b2c4750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4511 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd6d8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f75860?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd6b0, 0xc00339de50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006bac630}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694bb8?, 0x3b9aca00, 0x0, 0x0?, 0x22daa4ad7a44?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694b40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efd600, 0x56564d4264454f43?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4531 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002e407d0, 0x7372655677656976?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4532 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4533 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794640}, {0x7f7fb0611580, 0xc001690d10}, {0x5e003f8?, 0x5734f80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000185880, {0x0?, 0x0?}, 0xc00792a060, 0xc002e20da0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000185880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000f82780?, {0x5d9c8a0, 0xc002e408c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000185880, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5815 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000185880, 0xc00792a060, 0xc00b0a8a80, 0xc00a892e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78895 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012f2cd80, 0xc0057e4900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4536 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690e98, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01010c7e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690e70, 0xc003560ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b32540}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e36d98?, 0x3b9aca00, 0x0, 0x0?, 0x1e0f0c8a638a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36d20, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690dc0, 0xc00045d300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60560 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc00ac4d900}, {0x7f7fb0611580, 0xc00117b600}, {0x5e003f8?, 0x572ed80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3a620, {0x0?, 0x0?}, 0xc00e227560, 0xc007282da0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3a620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00608c200?, {0x5d9c8a0, 0xc0004b3040}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3a620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4525 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cfa48, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00edfb960?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cfa20, 0xc0034cd550) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b41170}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613978?, 0x3b9aca00, 0x0, 0x0?, 0x1f1d63e68a1c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613900, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cf970, 0x6b42484d4d685862?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4539 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002e40af0, 0x656c75726c6c6177?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4540 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4541 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c140}, {0x7f7fb0611580, 0xc001690e70}, {0x5e003f8?, 0x5735300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000185a40, {0x0?, 0x0?}, 0xc00792a060, 0xc002e210e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000185a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000f828c0?, {0x5d9c8a0, 0xc002e40be0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000185a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5818 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000185a40, 0xc00792a060, 0xc00b0a91a0, 0xc00af99180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78434 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a7548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a7538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a7530, {0xc00ee74200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74200?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430e3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430e3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430e3c0, {0x4f3b7c0, 0xc0237f9ed8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3217a0, {0xc00849b800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55f90, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc4a40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba4b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5893 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0072bbf38?, {0x5d9c8c0, 0xc00b15c720}, 0x1, 0xc00b13da40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b15e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4544 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001690ff8, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011f3eb60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001690fd0, 0xc003561380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001e36e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b70300}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001e36ed8?, 0x3b9aca00, 0x0, 0x0?, 0x22c88eda38f8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001e36e60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001690f20, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4528 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d98e60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4529 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4546 [select, 10 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cad2c0}, {0x7f7fb0611580, 0xc0091cfa20}, {0x5e003f8?, 0x573ae00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747c380, {0x0?, 0x0?}, 0xc00792a060, 0xc006245c20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747c380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005704940?, {0x5d9c8a0, 0xc006d98f50}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747c380, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5835 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747c380, 0xc00792a060, 0xc00b13c180, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77962 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25adc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25adb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25adb0, {0xc0043cfe00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0043cfe00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afd400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afd400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afd400, {0x4f3b7c0, 0xc01db37278}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02326dc20, {0xc024088800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe7900, 0x2?, {0x5dbd7f0, 0xc023c2d600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8bf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2d5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5866 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8250, 0x32) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007a78fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4549 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081b3738?, {0x5d9c8c0, 0xc006b41710}, 0x1, 0xc0086cad20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7461646c71732e35?, 0x3b9aca00, 0x0, 0x6f?, 0xc0081b3788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0076c4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4563 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002e40e10, 0x4e70316d516e6448?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4564 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4565 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11c40}, {0x7f7fb0611580, 0xc001690fd0}, {0x5e003f8?, 0x573a700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc000185c00, {0x0?, 0x0?}, 0xc00792a060, 0xc002e21420?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc000185c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000f83440?, {0x5d9c8a0, 0xc002e40f00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc000185c00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4550 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0076c4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5874 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000185c00, 0xc00792a060, 0xc00b29aae0, 0x6f206574696e6966?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5911 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0090f8850, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a69f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4552 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081aff38?, {0x5d9c8c0, 0xc006b707e0}, 0x1, 0xc007580600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7572656e6961746e?, 0x3b9aca00, 0x0, 0x6f?, 0x612e6264746e656d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0076c41b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4553 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0076c41b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78196 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f2610c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f2610b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f2610b0, {0xc00e483a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e483a00?, 0x3?, 0x37e89ea00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bc280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bc280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bc280, {0x4f3b7c0, 0xc023e5f470}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f805c50, {0xc0199f2000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12960, 0x2?, {0x5dbd7f0, 0xc01f69f2c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacf200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69f240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79017 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012f2c900, 0xc01f9a0600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09ac0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4555 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cfba8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fd1d080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cfb80, 0xc0034cdbb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b7f200}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613ab8?, 0x3b9aca00, 0x0, 0x0?, 0x22a9992fecf8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613a40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cfad0, 0x7a634646305a5252?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5910 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0090f8850, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a69f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4754 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65090, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f59b020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d28de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4558 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d99360, 0x61726857636e646d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4559 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4560 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31a880}, {0x7f7fb0611580, 0xc0091cfb80}, {0x5e003f8?, 0x5735a00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747c540, {0x0?, 0x0?}, 0xc00792a060, 0xc006245fa0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747c540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005704dc0?, {0x5d9c8a0, 0xc006d99450}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747c540, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5850 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747c540, 0xc00792a060, 0xc00b193080, 0x6c225b3a22646572?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78986 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a6348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a6338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a6330, {0xc0204cac00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204cac00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46de00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46de00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46de00, {0x4f3b7c0, 0xc01d610eb8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c8180, {0xc0137f8c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190725a0, 0x2?, {0x5dbd7f0, 0xc01df09840}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ffdc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4579 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cfd08, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001815ac0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cfce0, 0xc003a92090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b8f200}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613bf8?, 0x3b9aca00, 0x0, 0x0?, 0x21521ebd1f5d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613b80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cfc30, 0xc0005d9c00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78444 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c858600, 0xc023460000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4582 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d99680, 0x7a612d7365636976?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4583 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4584 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2d000}, {0x7f7fb0611580, 0xc0091cfce0}, {0x5e003f8?, 0x5747200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747c700, {0x0?, 0x0?}, 0xc00792a060, 0xc00795c2e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747c700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005704f40?, {0x5d9c8a0, 0xc006d99770}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747c700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5853 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747c700, 0xc00792a060, 0xc00b193d40, 0xc00aed1c80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77802 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd8d80, 0xc023df3a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cad040?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4587 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee4398, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e592ac0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee4370, 0xc0077dd5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d560a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0066b2990}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d56118?, 0x3b9aca00, 0x0, 0x0?, 0x1f57fd06b1a7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d560a0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cfd90, 0xc0005d9d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5983 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b4b8cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4596 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2c680}, {0x7f7fb0611580, 0xc001efd6b0}, {0x5e003f8?, 0x5734500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7c8c0, {0x0?, 0x0?}, 0xc00792a060, 0xc007208dc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7c8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0002a7340?, {0x5d9c8a0, 0xc004691e00}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7c8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5824 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7c8c0, 0xc00792a060, 0xc00b0a9860, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5881 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aaf8738?, {0x5d9c8c0, 0xc00b2c26c0}, 0x1, 0xc00b2c6360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00aaf87b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b2c4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4599 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd838, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0060cec20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd810, 0xc00373a230) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006bb8630}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694cf8?, 0x3b9aca00, 0x0, 0x0?, 0x1db8547eb9b9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694c80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efd760, 0xc002119400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4602 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00726c050, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4603 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4604 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5e80}, {0x7f7fb0611580, 0xc001efd810}, {0x5e003f8?, 0x574ad80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7ca80, {0x0?, 0x0?}, 0xc00792a060, 0xc007209100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7ca80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0002a7d00?, {0x5d9c8a0, 0xc00726c140}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7ca80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5841 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7ca80, 0xc00792a060, 0xc00b13d260, 0xc00b126700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78069 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c7290c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c7290b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c7290b0, {0xc009fd9000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd9000?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4640, {0x4f3b7c0, 0xc023947638}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7bf500, {0xc011d58000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c3c0, 0x5dd4e28?, {0x5dbd7f0, 0xc01f69e880}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231feac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69e840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4607 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efd998, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00165fd20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efd970, 0xc00373a5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004694dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006bc60f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004694e38?, 0x3b9aca00, 0x0, 0x0?, 0x1de9c2fb95b1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004694dc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efd8c0, 0xc002119500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5945 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8950, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b6337e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0069236e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4610 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00726c370, 0x5a6e4e445a32625a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4611 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4612 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2d300}, {0x7f7fb0611580, 0xc001efd970}, {0x5e003f8?, 0x573e280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7cc40, {0x0?, 0x0?}, 0xc00792a060, 0xc007209440?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7cc40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc002f4a000?, {0x5d9c8a0, 0xc00726c460}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7cc40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5870 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7cc40, 0xc00792a060, 0xc00b066600, 0x63736564227b3a22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78492 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb90c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012eb90b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb90b0, {0xc001ccca00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccca00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3b040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3b040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3b040, {0x4f3b7c0, 0xc01d588558}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc009910390, {0xc00cb5c000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062cb180, 0x5dd4e28?, {0x5dbd7f0, 0xc01f82c780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da99e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82c740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4380 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081ad738?, {0x5d9c8c0, 0xc006cbb530}, 0x1, 0xc00796b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x69?, 0xc0081ad788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00697b290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5923 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922540, 0xc00792a060, 0xc00b2c69c0, 0xc00b18e030?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5942 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b3295f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4378 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091cfe68, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01208d7c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091cfe40, 0xc003a924e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613d60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006b9d2f0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613dd8?, 0x3b9aca00, 0x0, 0x0?, 0x1f104d2a44f3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613d60, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4420, 0xc000a33200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78651 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b14ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b14ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b14ab0, {0xc01e26f400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26f400?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0780, {0x4f3b7c0, 0xc00e380060}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9a9c0, {0xc010d84400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0194539f0, 0x5dd4e28?, {0x5dbd7f0, 0xc01f3f51c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4590 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0f310, 0x63314b4a6c445652?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4591 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4592 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98d540}, {0x7f7fb0611580, 0xc0091cfe40}, {0x5e003f8?, 0x5743300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747c8c0, {0x0?, 0x0?}, 0xc00792a060, 0xc00795c620?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747c8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005704fc0?, {0x5d9c8a0, 0xc006d99ae0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747c8c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5927 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747c8c0, 0xc00792a060, 0xc00b2c7260, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5960 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00818ff38?, {0x5d9c8c0, 0xc00b38eb10}, 0x1, 0xc00b0679e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00818ffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b385320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4627 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081c0738?, {0x5d9c8c0, 0xc006c95710}, 0x1, 0xc007259020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x3063444e30527646?, 0x3b9aca00, 0x0, 0x64?, 0xc0081c0788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0076c5560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78151 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012871c80, 0xc01f745600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e62680?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4619 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00726c6e0, 0x7374636566664565?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4620 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4621 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16dc40}, {0x7f7fb0611580, 0xc001efdad0}, {0x5e003f8?, 0x5748e00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7ce00, {0x0?, 0x0?}, 0xc00792a060, 0xc0072097c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7ce00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc002f4bcc0?, {0x5d9c8a0, 0xc00726c7d0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7ce00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5939 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7ce00, 0xc00792a060, 0xc00b31af00, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4628 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0076c5560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77914 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0128701c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0128701b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0128701b0, {0xc023e0a600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0a600?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0a00, {0x4f3b7c0, 0xc00d126510}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eaccff0, {0xc007848800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072320, 0xc01d287b90?, {0x5dbd7f0, 0xc01df08780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca27c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5982 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b4c7738?, {0x5d9c8c0, 0xc00b4ba660}, 0x1, 0xc00b4b0720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b4b8cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4630 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0086e8028, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f7e6000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0086e8000, 0xc003a92920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc002613ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006cbb200}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc002613f18?, 0x3b9aca00, 0x0, 0x0?, 0x1fc444261352?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc002613ea0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0091cfef0, 0x7573222c7d7d7d7d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6055 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5b90, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e135200?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebcb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6454 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081bc738?, {0x5d9c8c0, 0xc00b6d6930}, 0x1, 0xc00a79fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0081bc7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b6ab5f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4633 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc006d99e00, 0x4e4656554b525756?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4634 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4635 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc00ac4df80}, {0x7f7fb0611580, 0xc0086e8000}, {0x5e003f8?, 0x5739580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747ca80, {0x0?, 0x0?}, 0xc00792a060, 0xc00795c980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747ca80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005705600?, {0x5d9c8a0, 0xc006d99ef0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747ca80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5897 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747ca80, 0xc00792a060, 0xc00b13daa0, 0xc00b307f10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5956 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081b0f38?, {0x5d9c8c0, 0xc00b38e840}, 0x1, 0xc00b067800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0081b0fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b385050) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5992 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008193738?, {0x5d9c8c0, 0xc00b38fd40}, 0x1, 0xc00b3aa960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b42be60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78258 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84300, 0xc01f745900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63cc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4643 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00726ca50, 0x5853453930647252?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4644 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4645 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cad8c0}, {0x7f7fb0611580, 0xc001efdc30}, {0x5e003f8?, 0x572fb80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7cfc0, {0x0?, 0x0?}, 0xc00792a060, 0xc0098701c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7cfc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0003e6d80?, {0x5d9c8a0, 0xc00726cb40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7cfc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5904 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7cfc0, 0xc00792a060, 0xc00b17e540, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4381 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00697b290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5993 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b42be60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78159 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c2f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c2f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c2f30, {0xc00f5dd600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dd600?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f5040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f5040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f5040, {0x4f3b7c0, 0xc01d6103f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a7e90, {0xc01a7b8c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6500, 0x6?, {0x5dbd7f0, 0xc01f98ca00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4383 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee45a8, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000683b20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee4580, 0xc0077dda60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d56280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006dfc720}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d562f8?, 0x3b9aca00, 0x0, 0x0?, 0x1eedaba83c1a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d56280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee44d0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6326 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068af50, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002da33e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd3800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f95e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4577 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65090, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011fcaec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d28de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4658 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0f630, 0x90c5e2f6ba348730?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4659 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4660 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6180}, {0x7f7fb0611580, 0xc005ee4580}, {0x5e003f8?, 0x573fe80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922700, {0x0?, 0x0?}, 0xc00792a060, 0xc006d50de0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006e958c0?, {0x5d9c8a0, 0xc002f0f720}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922700, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5974 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922700, 0xc00792a060, 0xc00b17ede0, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77783 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f260048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f260038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f260030, {0xc01ff88800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff88800?, 0x3?, 0xdfbbccd00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46cb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46cb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46cb40, {0x4f3b7c0, 0xc023e5e1f8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f320c30, {0xc022ba6800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe70e0, 0x2?, {0x5dbd7f0, 0xc0234c6940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca26c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4663 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee4708, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018ac4120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee46e0, 0xc0077ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d563c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006e467b0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d56438?, 0x3b9aca00, 0x0, 0x0?, 0x2273c7beda49?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d563c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4630, 0xc000a33500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6040 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b4e8fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4666 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0f950, 0x62726576222c2265?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4667 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4668 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f379a80}, {0x7f7fb0611580, 0xc005ee46e0}, {0x5e003f8?, 0x5738b00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0099228c0, {0x0?, 0x0?}, 0xc00792a060, 0xc006d51120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0099228c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006e95e40?, {0x5d9c8a0, 0xc002f0fa40}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0099228c0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5980 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0099228c0, 0xc00792a060, 0xc00b4b0120, 0xc00a892e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4671 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee4868, 0xa6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121d6300?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee4840, 0xc003b76120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d56500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006e5a840}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d56578?, 0x3b9aca00, 0x0, 0x0?, 0x23a1cecd575a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d56500, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4790, 0xc000a33600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6039 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a1d0f38?, {0x5d9c8c0, 0xc00b4bbce0}, 0x1, 0xc00b4b1560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a1d0fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b4e8fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4638 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0086e8188, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009896860?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0086e8160, 0xc003a92d00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009ac4000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006e77230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009ac4078?, 0x3b9aca00, 0x0, 0x0?, 0x1eaf8cd071e2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009ac4000, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0086e80b0, 0x485399f2ab1e890a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4674 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0fc70, 0x6e6f697373696d64?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4675 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4676 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7480}, {0x7f7fb0611580, 0xc005ee4840}, {0x5e003f8?, 0x5740900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922a80, {0x0?, 0x0?}, 0xc00792a060, 0xc006d51460?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006e95f80?, {0x5d9c8a0, 0xc002f0fd60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922a80, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6018 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922a80, 0xc00792a060, 0xc00b31bec0, 0xc0072778f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78214 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd8f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd8f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd8f30, {0xc023e0b400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0b400?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe1cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe1cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe1cc0, {0x4f3b7c0, 0xc00d126f48}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafd410, {0xc009942c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190728c0, 0x5dd4e28?, {0x5dbd7f0, 0xc01df09740}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca34a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4641 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc009ac0140, 0xc0093f37b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4690 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4691 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5180}, {0x7f7fb0611580, 0xc0086e8160}, {0x5e003f8?, 0x574e580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747cc40, {0x0?, 0x0?}, 0xc00792a060, 0xc00795ccc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747cc40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0057057c0?, {0x5d9c8a0, 0xc009ac0230}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747cc40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6037 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747cc40, 0xc00792a060, 0xc00b4b1020, 0xc0093f2778?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4648 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efddb8, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efdd90, 0xc00373b110) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004695220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006f237a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004695298?, 0x3b9aca00, 0x0, 0x0?, 0x20f73716ffac?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004695220, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001efdce0, 0xc0057de100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78259 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d84338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84330, {0xc00784b200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784b200?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04780, {0x4f3b7c0, 0xc00e3813f8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f581410, {0xc0086a0000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54be0, 0xc01d287b90?, {0x5dbd7f0, 0xc023e63f80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63f40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4694 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0086e82e8, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f750120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0086e82c0, 0xc003a930a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009ac4140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc006f5b170}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009ac41b8?, 0x3b9aca00, 0x0, 0x0?, 0x20fba82e5b34?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009ac4140, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0086e8210, 0x7963696c6f506572?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4651 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00726cd70, 0x5645704157765a55?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4652 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4653 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5b80}, {0x7f7fb0611580, 0xc001efdd90}, {0x5e003f8?, 0x574aa00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc006a7d180, {0x0?, 0x0?}, 0xc00792a060, 0xc009870500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc006a7d180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0003e7800?, {0x5d9c8a0, 0xc00726ce60}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc006a7d180, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78666 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f38a80, 0xc004d0b200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63fc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5674 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc006a7d180, 0xc00792a060, 0xc00af02660, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78669 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f39cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009adcbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f39cb0, {0xc01e0dba00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e0dba00?, 0x3?, 0x3824e6d00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2d680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2d680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2d680, {0x4f3b7c0, 0xc01d611b60}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafced0, {0xc013566800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54ff0, 0x2?, {0x5dbd7f0, 0xc0234c6f00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939ac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4697 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc009ac0460, 0x74616d222c226c69?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4698 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4699 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63f40}, {0x7f7fb0611580, 0xc0086e82c0}, {0x5e003f8?, 0x572e680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747ce00, {0x0?, 0x0?}, 0xc00792a060, 0xc00795d000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747ce00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000548c00?, {0x5d9c8a0, 0xc009ac0550}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747ce00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6070 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747ce00, 0xc00792a060, 0xc00af038c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78357 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd99c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd99b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd99b0, {0xc01f801a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f801a00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912140, {0x4f3b7c0, 0xc023f468d0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4f830, {0xc00a48d800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7450, 0xc01d287b90?, {0x5dbd7f0, 0xc023d01e00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80d4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d01dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6088 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad5d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4702 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0086e8448, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c55c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0086e8420, 0xc003a93480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009ac4280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0071911a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009ac42f8?, 0x3b9aca00, 0x0, 0x0?, 0x1f0fcd8b859e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009ac4280, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0086e8370, 0xc0057e4300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6484 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64e10, 0xc3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013516d20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d281e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4679 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee49c8, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef3d440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee49a0, 0xc003b764f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d56640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0071a0780}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d566b8?, 0x3b9aca00, 0x0, 0x0?, 0x21be7a5803a1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d56640, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee48f0, 0x727b2f7d65707954?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4705 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc009ac0780, 0x6345465653443957?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4706 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4707 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98d2c0}, {0x7f7fb0611580, 0xc0086e8420}, {0x5e003f8?, 0x573d800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00747cfc0, {0x0?, 0x0?}, 0xc00792a060, 0xc00795d340?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00747cfc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0005493c0?, {0x5d9c8a0, 0xc009ac0870}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00747cfc0, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6084 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00747cfc0, 0xc00792a060, 0xc00b3cf8c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79035 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f633548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f633538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f633530, {0xc00e6d0800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d0800?, 0x3?, 0x37e7be700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2d2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2d2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2d2c0, {0x4f3b7c0, 0xc023e5ef48}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f596c00, {0xc011d59400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d130, 0x2?, {0x5dbd7f0, 0xc01f82c400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82c300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6475 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08a50, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01df711e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005217a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77806 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9200, 0xc023df3d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cad2c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4682 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc002f0ff90, 0xfe2c7262e7f1fa7f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4683 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4684 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df090c0}, {0x7f7fb0611580, 0xc005ee49a0}, {0x5e003f8?, 0x5748000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922c40, {0x0?, 0x0?}, 0xc00792a060, 0xc006d517a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922c40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0034f6000?, {0x5d9c8a0, 0xc009a340a0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922c40, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6048 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922c40, 0xc00792a060, 0xc00b4e2f00, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4687 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee4b28, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ea0ee40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee4b00, 0xc003b768c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc006d56780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0071ae840}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc006d567f8?, 0x3b9aca00, 0x0, 0x0?, 0x22b43e12acd8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc006d56780, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4a50, 0xc000a33800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6476 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08a50, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0108d9880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005217a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4722 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc009a342d0, 0x706f747365636170?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4723 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4724 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32f9c0}, {0x7f7fb0611580, 0xc005ee4b00}, {0x5e003f8?, 0x573bc00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc009922e00, {0x0?, 0x0?}, 0xc00792a060, 0xc006d51ae0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc009922e00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0034f6440?, {0x5d9c8a0, 0xc009a343c0}, 0x1, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc009922e00, 0xc00792a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6073 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc009922e00, 0xc00792a060, 0xc00af03ce0, 0xc00b586680?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78625 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58af00, 0xc0057deb00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78337 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4480, 0xc00bdd3c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b11d00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4657 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007548000, 0xc00792a060, 0xc0072599e0, 0xc0081b1710?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78954 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85b00, 0xc0237f0800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78971 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012871b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012871b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012871b30, {0xc00a741200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a741200?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0dc0, {0x4f3b7c0, 0xc023fb4510}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c66f90, {0xc00a348800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec4b0, 0x2?, {0x5dbd7f0, 0xc01f794940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e2440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4742 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009a2df38?, {0x5d9c8c0, 0xc00720e2d0}, 0x1, 0xc009ae5320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x455a4b6f584f4846?, 0x3b9aca00, 0x0, 0x46?, 0x5551424655514246?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009b16870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4743 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009b16870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6825 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11b50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4748 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fe50, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010d1c460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4749 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fe50, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d0c5fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a39620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4766 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d8b9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78086 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c2180, 0xc005791500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98cac0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4781 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009aec738?, {0x5d9c8c0, 0xc00730e780}, 0x1, 0xc007581860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6e69727564206465?, 0x3b9aca00, 0x0, 0x65?, 0x65756c617620746c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009cb82d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4782 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009cb82d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6420 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5750, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ff3f6e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da55e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6431 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64410, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006e42fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaafc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4786 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00872f690, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bca2b20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007679b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4769 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d8ba70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6501 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5bd0, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0045ec0c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77925 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1500, 0xc01f0d1400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc00fa5b320?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4806 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bab738?, {0x5d9c8c0, 0xc00733e5d0}, 0x1, 0xc009db41e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x10062754b206568?, 0x3b9aca00, 0x0, 0x4?, 0x8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d9b7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4807 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d9b7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68150 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d774460, 0xc00e227560, 0xc018b23c80, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78096 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870180, 0xc01f744500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e622c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78760 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da64c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010da64b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da64b0, {0xc008139400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139400?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf0640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf0640, {0x4f3b7c0, 0xc023f46180}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf3080, {0xc010d84800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab62d0, 0x315673646c656946?, {0x5dbd7f0, 0xc01e31a940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31a880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4792 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35710, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011f3fe20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f60c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4793 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35710, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f751fc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f60c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4794 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35710, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c29cb20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f60c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4795 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35710, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009313ec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f60c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4797 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad9d0, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b483ba0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4798 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad9d0, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00456f580?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4799 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad9d0, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed54980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4800 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad9d0, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0119767e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77919 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261380, 0xc0057faf00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08980?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78970 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012871b00, 0xc0057e5f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc00fa5a000?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77765 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f399c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008a3ebb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f399b0, {0xc01f2fe200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2fe200?, 0x3?, 0x5be79600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912b40, {0x4f3b7c0, 0xc023c5a318}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf2150, {0xc023dc5c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0194530e0, 0x2?, {0x5dbd7f0, 0xc023bc4980}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4836 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009aedf38?, {0x5d9c8c0, 0xc00732a6f0}, 0x1, 0xc009ca8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009aedfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009b3ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4837 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009b3ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6648 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9e50, 0x35) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e7dc240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aae600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77712 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f39980, 0xc023940e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023c2dd00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4839 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009b35f38?, {0x5d9c8c0, 0xc0073606c0}, 0x1, 0xc009b19a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x692070756f724722?, 0x3b9aca00, 0x0, 0x20?, 0x6572206568742066?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009b3ae10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4840 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009b3ae10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6609 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35d10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78953 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d84638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84630, {0xc01ff88200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff88200?, 0x3?, 0x7f7fe04a9100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04280, {0x4f3b7c0, 0xc023b8a8a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02326d410, {0xc014577800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f541e0, 0xc02106cff0?, {0x5dbd7f0, 0xc01f3f4540}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77737 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd8000, 0xc023df2000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78502 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f050300, 0xc02043c500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023c2d440?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4832 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009cf7f38?, {0x5d9c8c0, 0xc007555a40}, 0x1, 0xc009cfa660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6572656665526563?, 0x3b9aca00, 0x0, 0x6f?, 0x666552656372756f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009ce17a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4833 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009ce17a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6632 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adbd0, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da59a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4852 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886af50, 0x2e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b48d4c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00890af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4853 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886af50, 0x2f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b48c580?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00890af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4854 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886af50, 0x31) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00207dd40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00890af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4855 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886af50, 0x30) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ca60d40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00890af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4857 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d8b10, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0159636c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4858 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d8b10, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00650f1c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4859 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d8b10, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004fca9e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4860 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d8b10, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005f03560?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4861 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009cf2738?, {0x5d9c8c0, 0xc007555a70}, 0x1, 0xc009cfa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6568736174732066?, 0x3b9aca00, 0x0, 0x61?, 0x706f727020726f66?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009ce1830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4862 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009ce1830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6658 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088add90, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f750840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088afc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4865 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088acf10, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011f3e2a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ae480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4866 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088acf10, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005fd5c40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ae480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4867 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088acf10, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bdba760?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ae480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4868 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088acf10, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ae015e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ae480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4869 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009c3a738?, {0x5d9c8c0, 0xc007555aa0}, 0x1, 0xc009cfa720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009ce18c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4870 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009ce18c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6663 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d93d0, 0x33) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010aa0a20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4872 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009cb3f38?, {0x5d9c8c0, 0xc007555ad0}, 0x1, 0xc009cfa780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009ce1950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4873 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009ce1950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6672 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65b10, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003019e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4849 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009cf5738?, {0x5d9c8c0, 0xc007281bc0}, 0x1, 0xc009d1e420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6e6f73616552223a?, 0x3b9aca00, 0x0, 0x22?, 0x732e223a22687461?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009b51170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4882 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009b51170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6633 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adbd0, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ea4e60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da59a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78100 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25bc80, 0xc01f744700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16c4c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4879 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0024f3f38?, {0x5d9c8c0, 0xc0075774d0}, 0x1, 0xc009cfb380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0024f3fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009ccd170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78909 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25a648, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25a630, {0xc0006f3201, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006f3201?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3cc0, {0x4f3b7c0, 0xc023e5eea0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a73b0, {0xc00da9b000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07d60, 0xc0150df180?, {0x5dbd7f0, 0xc023f51f80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16df40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4890 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009b7e750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6639 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008a2c110, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0103423a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da52c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4893 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00895e450, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0141c0080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00895a7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4894 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00895e450, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015985100?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00895a7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4895 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00895e450, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00faba6a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00895a7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4896 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00895e450, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0087eeaa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00895a7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4932 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009b7ef30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6824 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11b50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78390 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1b00, 0xc004d0bd00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023fa1400?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4939 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d263f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77614 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf7800, 0xc023f28600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4973 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bcbf38?, {0x5d9c8c0, 0xc007d78870}, 0x1, 0xc009ddcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009fde900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4396 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006a946c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60553 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4974 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009fde900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78672 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7c80, 0xc004d0b700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6880?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4398 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bcf738?, {0x5d9c8c0, 0xc007d788a0}, 0x1, 0xc009ddce40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009bcf7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006a94750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4399 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006a94750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6869 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad250, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b00e360?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4977 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11fd0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0087ef820?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4994 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11fd0, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001607ca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4995 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11fd0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e87f640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4996 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11fd0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009dcde00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4960 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0072baf38?, {0x5d9c8c0, 0xc006a8d080}, 0x1, 0xc0084606c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00730f560?, 0x3b9aca00, 0x0, 0x23?, 0xb?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0071aa630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4961 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0071aa630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6169 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005072e90, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24ef60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006146cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78128 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a6948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a6938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a6930, {0xc023cc3000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc3000?, 0x3?, 0x7f7fe04a9100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912f00, {0x4f3b7c0, 0xc023e5e720}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9b650, {0xc0137f9400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835ca50, 0xc02106cff0?, {0x5dbd7f0, 0xc023f508c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab806c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78563 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00032b848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00032b838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00032b830, {0xc00c5f5e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00c5f5e00?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180dc0, {0x4f3b7c0, 0xc01d2373b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f805050, {0xc00ae74000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06690, 0x5dd4e28?, {0x5dbd7f0, 0xc01f16d540}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfefe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16d500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78639 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fb9c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fb9b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fb9b0, {0xc00784b600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784b600?, 0x3?, 0x3824e6d00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bc780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bc780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bc780, {0x4f3b7c0, 0xc023e5f650}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc007a9e2d0, {0xc000720800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453270, 0x2?, {0x5dbd7f0, 0xc01f3f4080}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacf820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5025 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65810, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000301500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5031 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006a95ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6110 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39e10, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00069d4e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78804 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012980048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00260ebb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012980030, {0xc0006c0000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c0000?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180f00, {0x4f3b7c0, 0xc01d588600}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393f470, {0xc01aa2d400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06410, 0x2?, {0x5dbd7f0, 0xc01f82d000}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32f780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78775 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fffc348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01d573bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fffc330, {0xc001408c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001408c00?, 0x3?, 0x37e9c5c00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf0500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf0500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf0500, {0x4f3b7c0, 0xc00b0801e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c66750, {0xc013566400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca0a0, 0x2?, {0x5dbd7f0, 0xc023d00340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca24a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d00300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78094 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870000, 0xc01f744400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc016e97cc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5062 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a00a738?, {0x5d9c8c0, 0xc00867b8c0}, 0x1, 0xc009be5680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a01d9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78419 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4600, 0xc00bdd3d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b11f40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5063 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a01d9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6676 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65250, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c5620?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d293e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6899 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5290, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0096af5a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddbe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5066 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a01da70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6547 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b50d10, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01cfd56e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5069 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a01db00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60548 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc016e976c0}, {0x7f7fb0611580, 0xc00117b4a0}, {0x5e003f8?, 0x5746b00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3a2a0, {0x0?, 0x0?}, 0xc00e227560, 0xc007282480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3a2a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00608c100?, {0x5d9c8a0, 0xc0004b2370}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3a2a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5072 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6550, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001ee0a80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5073 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6550, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5090 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6550, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b3acd80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5091 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008bd6550, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005c6a480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac7e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5170 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0040b6f38?, {0x5d9c8c0, 0xc004f68e10}, 0x1, 0xc00a0cd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0040b6fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a280750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6723 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65f90, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00caf65c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78356 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9980, 0xc0237f0000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d01b00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5124 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a210d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77910 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f2607c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0013ebbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f2607b0, {0xc023e0a000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0a000?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0280, {0x4f3b7c0, 0xc00d126090}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacc390, {0xc02391d400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072050, 0xc011f700c0?, {0x5dbd7f0, 0xc01df08200}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca2260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df081c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79016 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012f2c4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f2c4b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012f2c4b0, {0xc0204cbc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204cbc00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da77c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da77c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da77c0, {0x4f3b7c0, 0xc01d610b28}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393e5a0, {0xc009bc1800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072a50, 0x2?, {0x5dbd7f0, 0xc01df09c00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09ac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78764 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb8348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019809bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb8330, {0xc0122b5200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b5200?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf1400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf1400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf1400, {0x4f3b7c0, 0xc023f46fa8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f90b5f0, {0xc0115b2000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6c30, 0x2?, {0x5dbd7f0, 0xc01e31b680}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31b600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78987 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7b00, 0xc023f29800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09800?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5141 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a326120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5154 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65810, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0035b58a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000301500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5155 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65810, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090dbd00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000301500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5156 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65810, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aebe620?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000301500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5171 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a280750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6715 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10190, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009dcdaa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5174 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bee738?, {0x5d9c8c0, 0xc00a23ed80}, 0x1, 0xc00a047b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009bee7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a280a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5175 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a280a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6694 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72290, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000a09460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5179 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5910, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x1?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5180 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5910, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e0ae700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5181 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5910, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001c0da80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5105 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0040b7738?, {0x5d9c8c0, 0xc0087e56e0}, 0x1, 0xc00a1b43c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0040b77b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a19f440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5186 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a19f440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6695 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72290, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011bc5040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78180 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0128707c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0128707b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0128707b0, {0xc01eaf2400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01eaf2400?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab08c0, {0x4f3b7c0, 0xc00e3802b8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740ff0, {0xc011d94400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54230, 0x6?, {0x5dbd7f0, 0xc023e62940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e62900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78934 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd96c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01aa77bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd96b0, {0xc0207aa800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207aa800?, 0x3?, 0x7f7fe04a9500?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bd180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bd180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bd180, {0x4f3b7c0, 0xc01d610240}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4e750, {0xc0115b2c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7ae0, 0xc01f3bfad0?, {0x5dbd7f0, 0xc023e63280}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5164 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc007ed7ea0, 0xc00792a060, 0xc00a0cdec0, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78731 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744948, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01df09b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744930, {0xc00658ac01, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00658ac01?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddc500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddc500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddc500, {0x4f3b7c0, 0xc023b8a8e8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02326cb10, {0xc008d16000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c123c0, 0xc0174eef30?, {0x5dbd7f0, 0xc01f3f4180}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77782 [select, 10 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f260000, 0xc023941100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6640?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5228 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a49c900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5210 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a258f38?, {0x5d9c8c0, 0xc00a3e0a50}, 0x1, 0xc00a3ad8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x57bcab?, 0x3b9aca00, 0x0, 0x1?, 0x4f1ad80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a3e4990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78197 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394fc80, 0xc023f29700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69f240?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6803 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0075a9fd0, 0x2d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d9d03e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007881da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78238 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012f2c600, 0xc00a186f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98df00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6693 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72290, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01063ea80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5231 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a49c990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6714 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10190, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c524680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5236 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a255738?, {0x5d9c8c0, 0xc00a3e0ab0}, 0x1, 0xc00a3ad9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a0f1b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5237 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a0f1b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5211 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a3e4990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6740 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b105d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6750 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72e90, 0x40) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01576e240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fa8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5239 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a256f38?, {0x5d9c8c0, 0xc00a3cca20}, 0x1, 0xc00a0ed800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a0f1b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5213 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a25a738?, {0x5d9c8c0, 0xc00a3e0a80}, 0x1, 0xc00a3ad980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x198?, 0x3b9aca00, 0x0, 0x20?, 0xb?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a3e4a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5214 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a3e4a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5240 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a0f1b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6741 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b105d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6751 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72e90, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0123821c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fa8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6742 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b105d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77920 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f2613c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f2613b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f2613b0, {0xc023e0ac00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0ac00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe12c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe12c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe12c0, {0x4f3b7c0, 0xc00d126c90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafc600, {0xc007849000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190725f0, 0xc01d287b90?, {0x5dbd7f0, 0xc01df09040}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5201 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7b3680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5256 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a415738?, {0x5d9c8c0, 0xc00a3e1aa0}, 0x1, 0xc00a3fc960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a608090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5293 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a0faf38?, {0x5d9c8c0, 0xc00a3e1ad0}, 0x1, 0xc00a3fc9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a0fafb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a57c750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78097 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870300, 0xc01f744900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e622c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5200 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009cad738?, {0x5d9c8c0, 0xc00a3ccb70}, 0x1, 0xc00a0ed8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009cad7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7b3680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6776 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abe3d0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02172e2e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aaeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5257 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a608090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6755 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11710, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0062443e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00044b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5296 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a1d2738?, {0x5d9c8c0, 0xc00a3e1b00}, 0x1, 0xc00a3fca20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a57c7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5297 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a57c7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6775 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abe3d0, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f7b4680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aaeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6761 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b114d0, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc003e04a40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5246 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11290, 0x54) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019a6d920?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097f860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6769 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72a10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000074e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5273 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72c50, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0091fdf60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0000756e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5274 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72c50, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00509a800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0000756e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5275 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72c50, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005f03b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0000756e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5276 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72c50, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24f220?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0000756e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5315 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a410f38?, {0x5d9c8c0, 0xc00a362240}, 0x1, 0xc00a323140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7b3710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5316 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7b3710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6837 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73990, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01017ba40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fbce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5318 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a412738?, {0x5d9c8c0, 0xc00a7b7170}, 0x1, 0xc00a1f0ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7b37a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5319 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7b37a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6836 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73990, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b04e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fbce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5321 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a68df38?, {0x5d9c8c0, 0xc00a3cce70}, 0x1, 0xc00a0edb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6f70207369202764?, 0x3b9aca00, 0x0, 0x22?, 0x7265706f7270222c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7b3830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5322 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7b3830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6841 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20a50, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e981bc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b19a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78246 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c729800, 0xc01f9a0400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc01293de60?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5343 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9ed0, 0x4e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010463f60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaa540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5341 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9ed0, 0x4c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b86f7c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaa540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6883 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000faccd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b10e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79033 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f632f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f632f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f632f30, {0xc00e6d0600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d0600?, 0x3?, 0x37e7be700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2cdc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2cdc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2cdc0, {0x4f3b7c0, 0xc023e5ee40}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f5966c0, {0xc005715400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835cff0, 0x2?, {0x5dbd7f0, 0xc023f51f40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab810c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78079 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fb200, 0xc00bdd2500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5359 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73e90, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0055d4d20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000213080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6128 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f350, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f59a320?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005994ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4938 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a1ce738?, {0x5d9c8c0, 0xc0079e0c90}, 0x1, 0xc009f9ab40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a1ce7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d263f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5587 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a68a738?, {0x5d9c8c0, 0xc00a7e49c0}, 0x1, 0xc00a7f6120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a68a7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7db7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5374 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684b90, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bdbabe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab1980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5300 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a57ce10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6855 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20c90, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbd8f60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78003 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f633848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f633838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f633830, {0xc00aa36e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa36e00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e30a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e30a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e30a00, {0x4f3b7c0, 0xc0239461e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023d50d20, {0xc00a348000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07a40, 0x0?, {0x5dbd7f0, 0xc023bc4a00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba5260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc49c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60751 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4941 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009fcbf38?, {0x5d9c8c0, 0xc0079e0ea0}, 0x1, 0xc009f9aba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009d26480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 4942 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d26480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6900 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5290, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddbe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6888 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5050, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fa69660?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddb800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5304 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a1d4f38?, {0x5d9c8c0, 0xc00a734c30}, 0x1, 0xc00a493ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a57d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5305 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a57d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78157 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c2c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c2c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c2c30, {0xc00f5dd200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dd200?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4b40, {0x4f3b7c0, 0xc01d610348}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a7aa0, {0xc01a7b8400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6460, 0x6?, {0x5dbd7f0, 0xc01f98c700}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5396 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009d265a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59239 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0157e5db0, 0xc00aafdfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78364 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b14900, 0xc0237f0500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5340 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9ed0, 0x4a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010c5c660?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaa540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5434 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a816738?, {0x5d9c8c0, 0xc00a98a750}, 0x1, 0xc00a471560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a46b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5411 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00580a738?, {0x5d9c8c0, 0xc00a8926f0}, 0x1, 0xc00a771920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00580a7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a77d7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5412 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a77d7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77880 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b147c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b147b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b147b0, {0xc0238fd800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fd800?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e17c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e17c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e17c0, {0x4f3b7c0, 0xc01d237b90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c8a50, {0xc0191e6800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06910, 0x5dd4e28?, {0x5dbd7f0, 0xc01e32fa00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4acfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32f9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5404 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005839738?, {0x5d9c8c0, 0xc00a827170}, 0x1, 0xc00a8347e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x4e?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a8365a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5405 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a8365a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6114 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad6d0, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007beb1a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66731 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf9d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063c20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5446 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21650, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddaf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5438 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a817f38?, {0x5d9c8c0, 0xc00a98a780}, 0x1, 0xc00a471620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a46bc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5439 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a46bc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6087 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad5d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78024 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da7548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010da7538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da7530, {0xc01267d400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267d400?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf048c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf048c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf048c0, {0x4f3b7c0, 0xc023abf0b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0236f3410, {0xc005715c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec8c0, 0x5dd4e28?, {0x5dbd7f0, 0xc023f50100}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f500c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5491 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5dd0, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0070b4520?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5492 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5dd0, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0097ed900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78380 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f633200, 0xc023941a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08500?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5448 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21650, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b1760?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddaf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5449 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a45e738?, {0x5d9c8c0, 0xc00a98b830}, 0x1, 0xc00a9a87e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9a3290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5450 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9a3290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6081 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad6d0, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00badc440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5469 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aaf4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6058 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad385d0, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006c602c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5493 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5dd0, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007890180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5494 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5dd0, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005ab4d40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5495 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a81cf38?, {0x5d9c8c0, 0xc00aaef050}, 0x1, 0xc00aacd1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aa0da70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5496 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aa0da70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6064 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39550, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0137bf840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c50e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b08c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5507 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8a10, 0x5e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cf285c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006923c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78162 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394e300, 0xc023f28100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc00ac4cb40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78894 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0222016c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0222016b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0222016b0, {0xc01e26f800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26f800?, 0x3?, 0x7f7fe04a9500?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab1900, {0x4f3b7c0, 0xc023fb5470}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5daa0, {0xc014577000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfece10, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f794280}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e35c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5581 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a460f38?, {0x5d9c8c0, 0xc00ac28ba0}, 0x1, 0xc00ad8a300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ac41320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5531 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a634f38?, {0x5d9c8c0, 0xc00ab1bda0}, 0x1, 0xc00ab19a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a634fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a857710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5505 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aafcf38?, {0x5d9c8c0, 0xc00ab1b350}, 0x1, 0xc00ab19140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ab17ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5538 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ab17ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6118 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5150, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f4d1400?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5540 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aafe738?, {0x5d9c8c0, 0xc00ab1b380}, 0x1, 0xc00ab191a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ab34000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5541 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ab34000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6163 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4e50, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b483a40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f1aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5582 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ac41320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5532 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a857710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6164 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4e50, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00731cd80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f1aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6077 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf54d0, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b86e0e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebc420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78952 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84600, 0xc0237f0700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5693 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ac59738?, {0x5d9c8c0, 0xc00b04e030}, 0x1, 0xc00b00d7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ae15c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5588 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7db7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6333 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b2d0, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001ee0e60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5591 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7db830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6831 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c730d0, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932be0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fb560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5593 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a690f38?, {0x5d9c8c0, 0xc00a7e4ae0}, 0x1, 0xc00a7f64e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6f7270222c227463?, 0x3b9aca00, 0x0, 0x6e?, 0x697263736564227b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a7db8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5594 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a7db8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6332 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b2d0, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbd8d80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6289 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:320 +0x73 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:318 +0x13d +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78303 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6600, 0xc01f9a1b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32e8c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5888 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b18cf38?, {0x5d9c8c0, 0xc00b2c2cc0}, 0x1, 0xc00b2c6960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x7b3a226761427974?, 0x3b9aca00, 0x0, 0x72?, 0x223a226570797422?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b2c4c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78967 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d85cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d85cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d85cb0, {0xc01ff88400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff88400?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04f00, {0x4f3b7c0, 0xc0234ca648}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd6e70, {0xc00da9bc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54730, 0xc01d4aeab0?, {0x5dbd7f0, 0xc01f98da80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacf440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98d9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6186 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00956bd10, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ae015c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00957c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6181 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f110, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c5b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5638 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a45ff38?, {0x5d9c8c0, 0xc00ac28c30}, 0x1, 0xc00ad8a4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a45ffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ac2ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5639 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ac2ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6173 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001772410, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e729d20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5654 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ae84000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6076 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf54d0, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0045ec260?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebc420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6215 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e90, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010638f40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5667 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d99738?, {0x5d9c8c0, 0xc00ac6ce70}, 0x1, 0xc00ac4eea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc005d997b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a87d7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5631 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f790, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009baf8a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005995860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5632 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f790, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005995860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5633 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f790, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f864f00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005995860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5682 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f790, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001dc0120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005995860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78081 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fb380, 0xc00bdd2600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f50900?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6826 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11b50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5694 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ae15c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78179 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870780, 0xc01f744a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e62640?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5647 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a1d0738?, {0x5d9c8c0, 0xc00a6d4cf0}, 0x1, 0xc00a6e22a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a1d07b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ade8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5560 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a6e1f38?, {0x5d9c8c0, 0xc00a6d4cc0}, 0x1, 0xc00a6e2240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a6e1fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00af82510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5561 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00af82510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5648 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ade8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6210 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685010, 0x89) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01e82ab00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6207 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092838d0, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011f3ed20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b17c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78354 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9800, 0xc00a187f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d018c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5731 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00afa6ab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5860 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b052d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5664 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aeaa750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6216 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e90, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010e7e6c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6201 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684950, 0x5b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0109a2a20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab10e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5696 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ac5af38?, {0x5d9c8c0, 0xc00b04e060}, 0x1, 0xc00b00d800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ae15cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5697 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ae15cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6228 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685510, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c26b940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b983c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f92c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6238 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685710, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00773c4e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b98ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f94a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5762 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc000184ee0, 0xc00792a060, 0xc00aeae240, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78985 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6300, 0xc023f29600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df093c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78896 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012f2cdc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f2cdb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012f2cdb0, {0xc00e6d0200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d0200?, 0x3?, 0x37e86e700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe08c0, {0x4f3b7c0, 0xc023fb57d0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f377050, {0xc014577400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfed9a0, 0x2?, {0x5dbd7f0, 0xc01f7946c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78305 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf67c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf67b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf67b0, {0xc01267dc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267dc00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf0dc0, {0x4f3b7c0, 0xc023947e90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f6aad80, {0xc00a185400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13bd0, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32ee80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236bfec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32ee40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78304 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6780, 0xc01f9a1c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32e8c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78112 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870d80, 0xc01f744f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc4bc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6229 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685510, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0072d0b60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b983c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f92c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5742 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00afd3a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5756 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a6df738?, {0x5d9c8c0, 0xc00afde510}, 0x1, 0xc00afa9ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x24227b3a22736569?, 0x3b9aca00, 0x0, 0x65?, 0x6f7250223a226e6f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00af9a1b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5745 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00afd3b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5757 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00af9a1b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6220 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008eed0, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009897480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005945e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da57c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6724 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65f90, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006adf2c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6285 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efd490, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015193be0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059454a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5783 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00afd3c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6284 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efd490, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011e09980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059454a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78316 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fbb48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0014f7bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fbb30, {0xc0238fc000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fc000?, 0x3?, 0x37f097e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2da40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2da40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2da40, {0x4f3b7c0, 0xc00b081398}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e4a50, {0xc00ab58400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835ce10, 0x2?, {0x5dbd7f0, 0xc023f51e40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5826 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b11d170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78572 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0128716c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0128716b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0128716b0, {0xc00e483800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e483800?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181a40, {0x4f3b7c0, 0xc01d2377e8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740b70, {0xc011d94800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06b90, 0x5dd4e28?, {0x5dbd7f0, 0xc01f69e1c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cffb80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69e140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78353 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1800, 0xc004d0bb00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023fa0e40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78817 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012980f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012980f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012980f30, {0xc0006c1000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c1000?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0dc0, {0x4f3b7c0, 0xc01d589530}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ddb050, {0xc0101d5c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06e10, 0x5dd4e28?, {0x5dbd7f0, 0xc0234c6a40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e746c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c67c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78983 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6000, 0xc023f29200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df090c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78808 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0129804c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0129804b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0129804b0, {0xc0006c0400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c0400?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181540, {0x4f3b7c0, 0xc01d588b88}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78a990, {0xc023dc5000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c065a0, 0x2?, {0x5dbd7f0, 0xc01f82d6c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32fbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6286 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efd490, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059454a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5809 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a6daf38?, {0x5d9c8c0, 0xc00b130060}, 0x1, 0xc00aff7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x4420535554415453?, 0x3b9aca00, 0x0, 0x6e?, 0x6c75527972657669?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b187290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5842 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b187290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6293 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc290, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007a791e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5844 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc002e5f738?, {0x5d9c8c0, 0xc00b184f60}, 0x1, 0xc00b192900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc002e5f7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b187320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5845 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b187320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6336 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283410, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed3d880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5847 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b18f738?, {0x5d9c8c0, 0xc00b04ed80}, 0x1, 0xc00b0662a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x70?, 0x3b9aca00, 0x0, 0x1?, 0x1186ee0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b1873b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5848 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b1873b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6335 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283410, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bfaee00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6383 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302a50, 0x45) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011fcad20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093425a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5833 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282a90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e61727420656874?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78982 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b156c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b156b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b156b0, {0xc0204ca800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204ca800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46d400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46d400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46d400, {0x4f3b7c0, 0xc01d610d50}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f35acc0, {0xc0137f8400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072410, 0x2?, {0x5dbd7f0, 0xc01df09100}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df090c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78484 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0124227c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0124227b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0124227b0, {0xc00c5f4a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00c5f4a00?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180a00, {0x4f3b7c0, 0xc023cc9560}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3e3020, {0xc0101d5800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c065f0, 0x2?, {0x5dbd7f0, 0xc01f378d80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab805c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f378d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6330 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b2d0, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ae01dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78442 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c858000, 0xc0058bf700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc54c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77895 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f38600, 0xc023df2e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b11a00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5882 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b2c4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5907 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b284d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5906 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00818f738?, {0x5d9c8c0, 0xc00b15c690}, 0x1, 0xc00b13d860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00818f7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b284d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78498 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c858048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c858038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c858030, {0xc008139a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139a00?, 0x3?, 0x37ea98600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefc780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefc780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefc780, {0x4f3b7c0, 0xc023dc6900}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f718b40, {0xc00b8c3800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cac30, 0x2?, {0x5dbd7f0, 0xc023c2d040}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2d000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77901 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25a000, 0xc023df3b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5720 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d9cf38?, {0x5d9c8c0, 0xc00a6fa3f0}, 0x1, 0xc00a6e3ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc005d9cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a6f0e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5862 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aaf9738?, {0x5d9c8c0, 0xc00a6fa420}, 0x1, 0xc00a6e3d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b052e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5863 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b052e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5721 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a6f0e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6372 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a6f90, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cb1f440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6523 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08090, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004c19520?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f06c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5894 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b15e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5867 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8250, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00795caa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5868 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8250, 0x33) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007fe8ce0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5869 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8250, 0x35) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004d3ad80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6382 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302a50, 0x46) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004d3a960?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093425a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5912 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0090f8850, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6978656c662f4c51?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a69f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5913 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0090f8850, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20666f2065746174?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a69f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5886 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b2c4750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6403 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007ee5150, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f1db2e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5914 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aec6738?, {0x5d9c8c0, 0xc00b0d3b00}, 0x1, 0xc00b0a9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x6e6f697470697263?, 0x3b9aca00, 0x0, 0x6e?, 0x69666e6f43203a74?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b284e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5915 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b284e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6392 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302bd0, 0x35) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b482b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093428a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6404 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007ee5150, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00df69820?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78056 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb8c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012eb8c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb8c30, {0xc008139600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139600?, 0x3?, 0x37e73a000?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2c000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2c000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2c000, {0x4f3b7c0, 0xc023fb56c8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3e2c00, {0xc007db0c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad15e0, 0x2?, {0x5dbd7f0, 0xc0236b4c40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32f520) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78068 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c729080, 0xc01f9a0e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69e600?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78161 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c30c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c30b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c30b0, {0xc00f5dda00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dda00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f52c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f52c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f52c0, {0x4f3b7c0, 0xc01d610498}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00ae9ef60, {0xc01a7b9000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab65a0, 0x6?, {0x5dbd7f0, 0xc01f98cd00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98ccc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5941 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b305738?, {0x5d9c8c0, 0xc00b38e540}, 0x1, 0xc00b067260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x10065727b2f7370?, 0x3b9aca00, 0x0, 0x4?, 0x8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b3295f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6393 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302bd0, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c67d120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093428a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78170 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394f080, 0xc023f28e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc00ac4dd00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5990 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9b50, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009b63260?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b61980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5946 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8950, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c525d80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0069236e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5901 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b308738?, {0x5d9c8c0, 0xc00b17c270}, 0x1, 0xc00b17e4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b178b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5902 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b178b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6830 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c730d0, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000fd3780?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fb560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5957 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b385050) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6433 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64410, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009896760?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaafc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5947 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8950, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0069236e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5948 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed8950, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b5e20e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0069236e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5949 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b316f38?, {0x5d9c8c0, 0xc00b3239b0}, 0x1, 0xc00b31b620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b329680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5950 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b329680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5961 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b385320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6483 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64e10, 0xc7) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0134c4bc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d281e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6139 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b189738?, {0x5d9c8c0, 0xc00b590a20}, 0x1, 0xc00b81a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b1897b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b5943f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5988 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9b50, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e1f9fe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b61980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5989 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9b50, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007bea520?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b61980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5991 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004ed9b50, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bc18460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b61980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78269 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85200, 0xc004d0a100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6e40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78815 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58ac48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58ac38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58ac30, {0xc0006c0e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c0e00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e08c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e08c0, {0x4f3b7c0, 0xc01d589410}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023dda9f0, {0xc02391d800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06d70, 0x5dd4e28?, {0x5dbd7f0, 0xc0234c63c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e743c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5968 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b189f38?, {0x5d9c8c0, 0xc00b423c80}, 0x1, 0xc00b4219e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x756f7365727b2f7d?, 0x3b9aca00, 0x0, 0x63?, 0x65722f2065685420?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b3b0990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5969 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b3b0990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6432 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64410, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01088c000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaafc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6448 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b51110, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c1ab460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f99a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78899 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c859548, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01d453bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c859530, {0xc000995801, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000995801?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a2c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a2c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a2c80, {0x4f3b7c0, 0xc023b8a780}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0084a82a0, {0xc00c189400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07900, 0xc014821e00?, {0x5dbd7f0, 0xc01f3f4300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16ce00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5680 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b447738?, {0x5d9c8c0, 0xc00af6ce70}, 0x1, 0xc00af03860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b4477b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00af70cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61954 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5985 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b444f38?, {0x5d9c8c0, 0xc00b4ba690}, 0x1, 0xc00b4b0780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b4b8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6034 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b4b8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78270 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d85248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d85238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d85230, {0xc00784bc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784bc00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05a40, {0x4f3b7c0, 0xc00e381d10}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9a060, {0xc024088400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55040, 0x6564227b3a22676f?, {0x5dbd7f0, 0xc0234c74c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e74600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78292 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b9380, 0xc01f9a1400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f5880?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6089 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad5d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5681 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00af70cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6054 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5b90, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e1f86c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebcb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6090 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088ad5d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088aec00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6522 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08090, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bf7ea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f06c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77879 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b14780, 0xc02043cd00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32f780?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6078 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf54d0, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004d3b2c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebc420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6079 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf54d0, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01077e000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebc420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6100 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad490, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001b650c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6101 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad490, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009ff5160?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6102 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad490, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6103 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad490, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b933ee0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6115 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad6d0, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbd8120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6116 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad6d0, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fbcf880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6056 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5b90, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011276cc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebcb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6057 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5b90, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012382940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebcb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6059 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad385d0, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24f3e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6060 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad385d0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009dcd580?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6061 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad385d0, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc003c90880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6062 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad385d0, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c29dc00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9c20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6093 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad910, 0x33) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01383a460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b06e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6094 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad910, 0x30) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00731d980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b06e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6095 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad910, 0x32) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d9f1e20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc7ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b06e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6107 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4910, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004c19640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f15c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6108 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4910, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c67c5e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f15c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8280, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6111 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39e10, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00610a2a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6112 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39e10, 0x1f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0055e7d60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6113 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39e10, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d3ca020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c5a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6097 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39310, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6130 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39310, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6131 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39310, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6132 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39310, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ebde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6065 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39550, 0x3f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0055d4a00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c50e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b08c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6146 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39550, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f74340?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c50e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b08c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6147 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ad39550, 0x40) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121d7d20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0058c50e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b08c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6119 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5150, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011f3edc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6120 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5150, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0100f4400?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6121 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5150, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000a098c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1860, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6165 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4e50, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0141cad60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f1aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6166 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f4e50, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01017b480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0097f1aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6149 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5690, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002ebe7a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b46c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6150 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5690, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01389fa60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b46c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6151 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5690, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0093126c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b46c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6152 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5690, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0074b1900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b46c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6124 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fc10, 0x2b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001230800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6125 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fc10, 0x2c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00069c320?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6126 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008fc10, 0x2d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b86f4c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f83c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6170 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005072e90, 0x73) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007231e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006146cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6171 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005072e90, 0x71) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aae83e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006146cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6129 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f350, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010c5db40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005994ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6178 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f350, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e5f2c60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005994ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6179 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f350, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b2959a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005994ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6154 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f9d0, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018fca8e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6155 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f9d0, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01efe3c00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6156 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f9d0, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013517380?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6157 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f9d0, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01394f8e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005a38060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6174 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001772410, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011d60c80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6175 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001772410, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e592240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6176 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001772410, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005cb5a60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6183 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f110, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010a37420?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6184 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008f110, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0132c5f80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059945a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6159 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21050, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0048de800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6160 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21050, 0x33) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002e20b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6161 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21050, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006c61e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6194 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21050, 0x32) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0087ef3a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0460, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6187 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00956bd10, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0071c9c20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00957c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6188 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00956bd10, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00957c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6189 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00956bd10, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007964e60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00957c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6197 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684dd0, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6f8c20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aea1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6198 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684dd0, 0x2b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b0520?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aea1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6199 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684dd0, 0x2c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00758dfe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aea1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9360, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5375 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684b90, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ea0d380?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab1980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 5376 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684b90, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f75200?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab1980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6202 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684950, 0x5d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120575a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab10e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6203 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684950, 0x59) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932460?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab10e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6204 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684950, 0x5c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b9339e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab10e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8500, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6211 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685010, 0x87) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f13af00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6212 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685010, 0x88) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dc61dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6213 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685010, 0x85) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a465480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6192 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684710, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c26a3c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab0840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6193 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684710, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009787f00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab0840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6226 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000684710, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc004fcb880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005ab0840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6217 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e90, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ee4ad40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6218 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e90, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e729500?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfcde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6242 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685990, 0x7) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6243 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685990, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6244 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685990, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6245 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685990, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24e4e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b99440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6247 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685250, 0x495) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0143eec20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeb320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f90e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6248 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685250, 0x498) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0147524a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeb320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f90e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6249 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685250, 0x499) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f20e3e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeb320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f90e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6250 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685250, 0x496) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc014b1d4e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005aeb320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f90e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6230 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685510, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006859fc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b983c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f92c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6231 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685510, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e5931c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b983c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f92c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6233 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e10, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed545e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6234 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e10, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011f3f120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6235 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e10, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f0744e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6236 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685e10, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dccbe00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfc600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6239 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685710, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090dab20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b98ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f94a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6240 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685710, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000fa7260?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b98ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f94a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6241 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000685710, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009c479c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b98ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f94a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6328 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068af50, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c29db60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd3800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f95e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6325 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068af50, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ba44aa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd3800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f95e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6327 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068af50, 0x27) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bb1dde0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd3800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f95e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6253 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a590, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00650e400?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6254 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a590, 0x2c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0070b5360?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6255 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a590, 0x2b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000f7ed60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6256 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a590, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e7b8500?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9400, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6274 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a2d0, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090db180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6275 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a2d0, 0x41) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbfed60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6276 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a2d0, 0x42) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00247dec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6277 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a2d0, 0x3f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00813f9a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6279 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a090, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104eede0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfd620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6280 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a090, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfd620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6281 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a090, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cf29e60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfd620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6282 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068a090, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e7286e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005bfd620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6000 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068ac10, 0x79) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019609c00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6001 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068ac10, 0x77) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0198c9d60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6290 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068ac10, 0x78) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00af58dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6291 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068ac10, 0x75) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0045ec240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005cd2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6221 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008eed0, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a15d380?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005945e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da57c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6222 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008eed0, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e983fe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005945e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da57c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6223 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00008eed0, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0109a2dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005945e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da57c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6287 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efd490, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed3d420?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0059454a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6294 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc290, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002e21120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6295 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc290, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006afc840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6296 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc290, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090db3e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6225 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc4d0, 0x32) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e6f85c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6306 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc4d0, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006030080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6307 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc4d0, 0x31) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0060cefc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6308 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000efc4d0, 0x30) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b16a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005944ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78093 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012871cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012871cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012871cb0, {0xc00f5dd400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dd400?, 0x3?, 0x5be79600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bd680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bd680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bd680, {0x4f3b7c0, 0xc00e380780}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740690, {0xc008762400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6410, 0x2?, {0x5dbd7f0, 0xc01f98d580}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938a60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98d540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66508 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aafa738?, {0x5d9c8c0, 0xc01d4ae6f0}, 0x1, 0xc013e8cba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00aafa7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0113a2cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6647 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9e50, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010aa0940?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aae600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6511 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9810, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cd999c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b00a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6829 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c730d0, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a3e2fe0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fb560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6266 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282f50, 0x2e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a1c90a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b05a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6267 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282f50, 0x32) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aae84c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b05a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6268 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282f50, 0x31) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012e6dd80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b05a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6269 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009282f50, 0x2f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001dc0d40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008bf9c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b05a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6271 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b510, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010f28880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6272 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b510, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e9802a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6273 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b510, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ca2740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6338 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00068b510, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e7b8de0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005f66960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6208 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092838d0, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b17c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6209 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092838d0, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24e080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b17c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6354 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092838d0, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010d1cb00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b17c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6337 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283410, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ea0dd00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6370 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283410, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ed8ce0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6357 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283d90, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ea4020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0092947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6358 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283d90, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e592620?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0092947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6359 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009283d90, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6e1680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0092947e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1680, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6373 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a6f90, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6374 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a6f90, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef3d060?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6375 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a6f90, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a891020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6377 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8710, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ed54cc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6378 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8710, 0x3e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0119d3220?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6379 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8710, 0x40) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136e3c80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6380 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0092c8710, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012056ce0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009294fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6349 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f641d0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e728b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f97c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6384 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302a50, 0x43) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0076bfc60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093425a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6385 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302a50, 0x44) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006e42440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093425a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6387 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0093028d0, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005fd5480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009342000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6388 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0093028d0, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00caf7a40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009342000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6389 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0093028d0, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a242840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009342000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6390 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0093028d0, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a1f8f40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc009342000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6394 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302bd0, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006b5f600?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093428a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6395 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc009302bd0, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cbeb060?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0093428a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6397 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7250, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00813fe40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b03c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6398 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7250, 0x28) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bdcba0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b03c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6399 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7250, 0x29) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5c000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b03c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6400 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7250, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ffb4220?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b03c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6348 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f641d0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00aae90a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f97c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6405 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007ee5150, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f8fbb60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6406 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007ee5150, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0035b4600?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00771e600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6315 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b63a738?, {0x5d9c8c0, 0xc00b6914d0}, 0x1, 0xc00a79fa40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b63a7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b6aa1b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66871 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b82ff38?, {0x5d9c8c0, 0xc01d8d98f0}, 0x1, 0xc014137a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b82ffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01417d710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6366 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0089de010, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a5e7e20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da50e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6367 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0089de010, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ad84020?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da50e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6368 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0089de010, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02193c180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da50e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6369 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0089de010, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019e5b1a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b5500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da50e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6421 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5750, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e1f9a60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da55e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6422 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5750, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f0edec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da55e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6423 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5750, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01df71fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da55e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6425 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08bd0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001ee0b40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000521b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6426 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08bd0, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef3d540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000521b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6427 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08bd0, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a1c9760?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000521b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6428 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08bd0, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006593280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000521b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c81e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6827 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11b50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8aa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6350 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f641d0, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001ee0c40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f97c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6351 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f641d0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e593b20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f97c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6434 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64410, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010f28060?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acaafc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8640, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6411 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64bd0, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b0bec80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6412 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64bd0, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002e203a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6413 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64bd0, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002e20040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6414 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64bd0, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009baf680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d6540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8780, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6316 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b6aa1b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6318 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64d10, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f8c7740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d7620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6319 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64d10, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc021640800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d7620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6320 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64d10, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007ed8180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d7620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6321 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64d10, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fbce060?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0072d7620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5220, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6134 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7110, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc015192400?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6135 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7110, 0x25) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0221c6780?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6136 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7110, 0x26) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01208c7a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6137 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0096a7110, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a242100?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0096be5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6140 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b5943f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6142 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09850, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6f88e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000319260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6143 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09850, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000319260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6144 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09850, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24f900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000319260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6145 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09850, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011bc5dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000319260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6466 [chan receive, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b6bef38?, {0x5d9c8c0, 0xc00b590a50}, 0x1, 0xc00b81a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b594480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6467 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b594480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6469 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09750, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005cb4440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003189c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6470 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09750, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5d000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003189c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6471 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09750, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000a09de0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003189c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6472 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09750, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006cbde00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003189c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6455 [select, 14 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b6ab5f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6457 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09390, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011d11840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003181e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6458 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09390, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003181e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6459 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09390, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e5f3c80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003181e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6460 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f09390, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e9824c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003181e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6462 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5550, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f80cc20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b12c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6463 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5550, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007208340?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b12c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6464 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5550, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbd9640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b12c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6465 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0051a5550, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e980120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000472780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b12c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6485 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64e10, 0xc4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013516320?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d281e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6486 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f64e10, 0xc5) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019e5bd80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d281e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6477 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08a50, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bf72e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005217a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6478 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002f08a50, 0x1e) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0138dd7c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005217a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6502 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5bd0, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bc187e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6417 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f646d0, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c524d40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acabc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6514 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f646d0, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acabc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6515 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f646d0, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00df68ee0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acabc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6516 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f646d0, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bd531a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00acabc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8f00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6437 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f53d0, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00437b440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6438 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f53d0, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6439 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f53d0, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f075000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6440 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f53d0, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010d1cd20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ea0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6503 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5bd0, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c807040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6504 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d5bd0, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5d540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0089b4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6524 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08090, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013c61ea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f06c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6525 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b08090, 0x39) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0106397e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f06c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0820, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6531 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5e50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077cf140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6532 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5e50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077cf140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6533 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5e50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077cf140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6534 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0097f5e50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0077cf140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6449 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b51110, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e281260?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f99a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6548 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b50d10, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cb1f900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6549 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b50d10, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bf67a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6550 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008b50d10, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013c9c440?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008b7c1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5040, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6725 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65f90, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b932c60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6556 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008697e90, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02367c960?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6557 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008697e90, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc021aea4c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6558 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008697e90, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bf7360?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6559 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008697e90, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b5e2980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61252 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f282a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6594 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d45d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6595 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d45d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6596 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d45d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6597 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0076d45d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000df2720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6599 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9610, 0x3b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010aa1b80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dd5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6600 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9610, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c40c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dd5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6601 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9610, 0x3c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007a4ff80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dd5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6602 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9610, 0x3f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f9d0360?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dd5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0140, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6605 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886a490, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992bc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6606 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886a490, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992bc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6607 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00886a490, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00992bc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6610 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35d10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6611 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35d10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6612 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc007e35d10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0085f6a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da4c80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6646 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9e50, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc014752120?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aae600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0320, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6584 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9890, 0x31) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0140ed5c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6513 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9810, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00783f1c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b00a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6626 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9810, 0x3a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c20c780?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b00a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6629 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adf50, 0x68) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0198c9840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6630 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adf50, 0x67) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ae7a000?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6631 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adf50, 0x69) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ab5c6c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6634 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adbd0, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da59a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6635 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adbd0, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011d3e3c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da59a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6636 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088adbd0, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6f9dc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088af3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da59a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6585 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9890, 0x2f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011924fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6586 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9890, 0x30) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010204ea0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6587 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9890, 0x32) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012382b80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088ddda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5f40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6589 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9010, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012383a40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6590 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9010, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0070b5be0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6591 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9010, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a3c0ae0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6592 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d9010, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01017a900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6659 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088add90, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001e2e140?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088afc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6660 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088add90, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0098718c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088afc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6661 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088add90, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001606b60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088afc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6664 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d93d0, 0x36) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fabb540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6665 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d93d0, 0x35) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ec661a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6666 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0088d93d0, 0x34) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ef4fdc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088dcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6673 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65b10, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0107397a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003019e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6690 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65b10, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6e0700?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0003019e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6708 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b084d0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f7b43e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6709 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b084d0, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c524fa0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6710 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b084d0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00bdba7c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0088f1380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8e60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6726 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65f90, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001ee0160?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c86e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6728 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09d50, 0x24) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e87e280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007e59ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6729 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09d50, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e0ae160?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007e59ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6730 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09d50, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008b31840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007e59ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6731 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002b09d50, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090db540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007e59ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6733 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65d50, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ba45180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006e9ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6734 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65d50, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c1ab540?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006e9ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6735 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65d50, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ca611a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006e9ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6736 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65d50, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a204180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc006e9ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8dc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6716 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10190, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0020de880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a2900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6696 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72290, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6e1ec0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a57f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1b80, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6698 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10ed0, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008d19c00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097e300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6699 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10ed0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00509a840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097e300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6700 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10ed0, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000fa6100?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097e300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6701 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10ed0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc008f5cc00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097e300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6703 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72590, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104eefc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a33dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6704 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72590, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b1100?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a33dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6705 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72590, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f864720?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a33dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6738 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72590, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010e7e040?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00a33dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1720, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6743 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b105d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0002a3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8000, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6745 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10b10, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b43cf00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007c8e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6746 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10b10, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007c8e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6747 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10b10, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d8b0880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007c8e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6748 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b10b10, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0062443e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007c8e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f8fa0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6752 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72e90, 0x3d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010e7e520?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fa8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6753 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72e90, 0x3f) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00437a8e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fa8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0960, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6756 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11710, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00044b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6757 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11710, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001934400?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00044b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6758 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11710, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000682a20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00044b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c80a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6762 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b114d0, 0x37) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d9f1280?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6763 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b114d0, 0x38) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c524d60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00097fec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c85a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6765 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c727d0, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0096ae2e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0001149c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6766 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c727d0, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0001149c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6767 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c727d0, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0104c5980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0001149c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6768 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c727d0, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f8c71c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0001149c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1cc0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6770 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72a10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000074e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6771 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72a10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000074e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6772 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72a10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000074e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6773 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c72a10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000074e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9900, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6777 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abe3d0, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0029edac0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aaeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6778 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abe3d0, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f59b880?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008aaeb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5180, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6779 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abfa50, 0xa) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac6c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b15e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6780 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abfa50, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010f29c80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac6c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b15e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6781 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abfa50, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac6c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b15e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6782 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abfa50, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e5f2a40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac6c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b15e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6783 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008abfa50, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f751d80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008ac6c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b15e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6640 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008a2c110, 0x1b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00cf28780?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da52c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6641 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008a2c110, 0x1d) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022606160?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da52c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6786 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc008a2c110, 0x1c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ed11860?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc008a26de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da52c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6804 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0075a9fd0, 0x2c) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012ebc240?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007881da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6805 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0075a9fd0, 0x2b) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0070b4a80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007881da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6806 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0075a9fd0, 0x2a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01063e640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc007881da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6838 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73990, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010ea4860?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fbce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6790 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65590, 0x45) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a1c9d20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d29d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6791 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65590, 0x43) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005c6a360?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d29d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6792 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65590, 0x44) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005ab5c20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d29d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6793 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001f65590, 0x46) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc002f0bfc0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc000d29d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9540, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6832 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c730d0, 0x1a) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00edfa680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fb560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f9e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6798 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20810, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dbff7c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6850 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11d90, 0x13) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006e8de60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6851 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11d90, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24e5c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6852 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11d90, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d9f02c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6853 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001b11d90, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00dcca3a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc005b73200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0b40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6839 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003c73990, 0xf) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00375da20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0005fbce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc002da5a40, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6799 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20810, 0x19) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24e180?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6800 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20810, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc005f037e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6801 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20810, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a369900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8be0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6842 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20a50, 0xc) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b19a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6843 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20a50, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6f9be0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b19a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6844 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20a50, 0xd) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c1aaf80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b19a0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6847 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0078d2510, 0x22) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0090da840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0078dc540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6856 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20c90, 0x8) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6857 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20c90, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ec679a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6858 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c20c90, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010bf6600?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0006b5980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1e00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6860 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21410, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007208580?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6861 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21410, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00793d720?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6862 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21410, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00a2429a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6863 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc004c21410, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001815080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001dda960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0058c8a00, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6848 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0078d2510, 0x23) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010aa18c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0078dc540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6849 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0078d2510, 0x20) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009787c80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0078dc540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6866 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0078d2510, 0x21) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00d0c5a60?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0078dc540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057f88c0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6885 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000faccd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b10e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6886 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000faccd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b10e0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6889 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5050, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00375ce00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddb800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6890 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5050, 0xe) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc011bc4de0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddb800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6891 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5050, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6e0980?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddb800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1ae0, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6901 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5290, 0xb) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01088d2c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddbe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6902 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005bf5290, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0103b61a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001ddbe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b1d60, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6870 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad250, 0x11) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e1f87c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6871 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad250, 0x10) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e24f0e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 6872 [sync.Cond.Wait, 14 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000fad250, 0x12) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001b65480?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc001fc6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0057b0d20, {0x5dd1c70, 0xc000ab1040}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77615 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf7848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf7838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf7830, {0xc01f800e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f800e00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddcf00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddcf00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddcf00, {0x4f3b7c0, 0xc01d611aa0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9bf50, {0xc02391d000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54820, 0x6?, {0x5dbd7f0, 0xc016e97900}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc016e978c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62667 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62483 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794440}, {0x7f7fb0611580, 0xc001691ef0}, {0x5e003f8?, 0x5739c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27180, {0x0?, 0x0?}, 0xc00e227560, 0xc01383b0c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c8900?, {0x5d9c8a0, 0xc01cf6e190}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78640 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84d80, 0xc00a187800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f4040?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62491 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78025 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da7680, 0xc004d0a000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f500c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64045 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00d685260, 0xc00e227560, 0xc011e6b680, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78729 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744780, 0xc0057e5900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc023fe6c60?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60746 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc008446990) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78428 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25a300, 0xc023df2500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69433 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01c9d5738?, {0x5d9c8c0, 0xc01cb87b30}, 0x1, 0xc01cbbaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01c9d57b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01cbb8c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68474 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b02a0, 0xc00e227560, 0xc0194728a0, 0xc00451b0b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78955 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d85b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d85b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d85b30, {0xc01ff88a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff88a00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04640, {0x4f3b7c0, 0xc023b8abe8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02326dd10, {0xc005c67000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54460, 0xc011f700c0?, {0x5dbd7f0, 0xc01f3f4a40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78325 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f39248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f39238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f39230, {0xc0238fcc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fcc00?, 0x3?, 0x37f097e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0500, {0x4f3b7c0, 0xc023c5a078}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393f0b0, {0xc00ab59000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d1d0, 0x2?, {0x5dbd7f0, 0xc023b10bc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8a2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60727 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3ac40, 0xc00e227560, 0xc009916420, 0xc006809bc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60678 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3a8c0, 0xc00e227560, 0xc00c0ff320, 0xc009cb3fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60482 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117baf8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0213bdb30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117bad0, 0xc00cf13a30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f1980}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e618?, 0x3b9aca00, 0x0, 0x0?, 0x22be42effd55?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e5a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8e70, 0xc01e574800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78732 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744a80, 0xc0057e5d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09b80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60468 [IO wait, 8 minutes]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb84e87b0, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc00cac2980?, 0x4?, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Accept(0xc00cac2980) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:614 +0x2bd +[controller:test-integration-envtest] net.(*netFD).accept(0xc00cac2980) +[controller:test-integration-envtest] /usr/local/go/src/net/fd_unix.go:172 +0x35 +[controller:test-integration-envtest] net.(*TCPListener).accept(0xc00aed6e28) +[controller:test-integration-envtest] /usr/local/go/src/net/tcpsock_posix.go:148 +0x25 +[controller:test-integration-envtest] net.(*TCPListener).Accept(0xc00aed6e28) +[controller:test-integration-envtest] /usr/local/go/src/net/tcpsock.go:297 +0x3d +[controller:test-integration-envtest] crypto/tls.(*listener).Accept(0xc00aed6e40) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/tls.go:66 +0x2d +[controller:test-integration-envtest] net/http.(*Server).Serve(0xc011d661e0, {0x5dc0860, 0xc00aed6e40}) +[controller:test-integration-envtest] /usr/local/go/src/net/http/server.go:3059 +0x385 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/webhook.(*DefaultServer).Start(0xc00b7e8420, {0x5dd1c70?, 0xc0157e53b0}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/webhook/server.go:294 +0x9a5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29940) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61259 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59297 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00d684e00, 0xc00e227560, 0xc0026c4780, 0xc00b7e9810?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60689 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001691e68, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001691e40, 0xc00fc58730) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a69cd20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc012c57200}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a69cd98?, 0x3b9aca00, 0x0, 0x0?, 0x2062a2df81e4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a69cd20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001691d90, 0xc01af53600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70917 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d775180, 0xc00e227560, 0xc022c905a0, 0xc0225c4540?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78835 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58b080, 0xc0057ded00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b10dc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60540 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58606 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82c740}, {0x7f7fb0611580, 0xc00117b3f0}, {0x5e003f8?, 0x5749180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3a000, {0x0?, 0x0?}, 0xc00e227560, 0xc007282040?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3a000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00608c0c0?, {0x5d9c8a0, 0xc0004b2000}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3a000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61834 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6ce448, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6ce420, 0xc00ed8c8e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011bc8460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc016835770}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011bc84d8?, 0x3b9aca00, 0x0, 0x0?, 0x209970d5fbd4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011bc8460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce370, 0xc0005d9600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61255 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33a9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62969 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b47b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4790, 0xc010faafb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316af00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec570e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316af78?, 0x3b9aca00, 0x0, 0x0?, 0x237deae90b2b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316af00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b46e0, 0xc01dbe2f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78873 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394e900, 0xc023940300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc01293d680?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61264 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60762 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28220) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78138 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b84c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b84b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b84b0, {0xc01f2ffc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2ffc00?, 0x3?, 0x37effa600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4dc0, {0x4f3b7c0, 0xc01d6101b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0075541e0, {0xc023e2f400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54280, 0x2?, {0x5dbd7f0, 0xc023e62740}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0239384c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e625c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78430 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25a4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25a4b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25a4b0, {0xc00a741400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a741400?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3adc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3adc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3adc0, {0x4f3b7c0, 0xc023c5b890}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f2e06f0, {0xc00b0c5400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835dcc0, 0xc011f700c0?, {0x5dbd7f0, 0xc01dc6b4c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8bb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6b440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63773 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50380, 0xc00e227560, 0xc00b81b1a0, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69896 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01ec59170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60576 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582c6e0, 0xc009bf5fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68469 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc019431050) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62634 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62456 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d8ff310, 0xc009db4900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60501 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f418, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f3f0, 0xc00d605140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9ea00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c00d80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9ea78?, 0x3b9aca00, 0x0, 0x0?, 0x2019dd846c09?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9ea00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001691810, 0xc00c631e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62660 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e318140, 0xc00b691c01?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61873 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10040}, {0x7f7fb0611580, 0xc015104580}, {0x5e003f8?, 0x572c700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50380, {0x0?, 0x0?}, 0xc00e227560, 0xc00ed54200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50380, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008f844c0?, {0x5d9c8a0, 0xc00d9e63c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50380, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60524 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61251 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28260) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78497 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394e7c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394e7b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394e7b0, {0xc001ccd000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccd000?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b43c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b43c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b43c0, {0x4f3b7c0, 0xc01d588768}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eaccf60, {0xc00e0b1800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062cbe00, 0x2?, {0x5dbd7f0, 0xc01f82cf40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82cf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62808 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51f00}, {0x7f7fb0611580, 0xc001322b00}, {0x5e003f8?, 0x5742180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f76c0, {0x0?, 0x0?}, 0xc00e227560, 0xc0143eed00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f76c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6c240?, {0x5d9c8a0, 0xc01d451810}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f76c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61266 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60528 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00d684a80, 0xc00e227560, 0xc00c0fe480, 0xc00b6cef20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61132 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b4c1738?, {0x5d9c8c0, 0xc0113242a0}, 0x1, 0xc008460e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b4c17b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62369 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d8ff630, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69895 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01c9d6f38?, {0x5d9c8c0, 0xc01ec53110}, 0x1, 0xc01ec62f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x14?, 0x3b9aca00, 0x0, 0x69?, 0x21?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01ec59170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60470 [IO wait, 13 minutes]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb84e8210, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc0100163c0?, 0xc01af9bed0?, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Read(0xc0100163c0, {0xc01af9bed0, 0x10000, 0x10000}) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:167 +0x299 +[controller:test-integration-envtest] os.(*File).read(...) +[controller:test-integration-envtest] /usr/local/go/src/os/file_posix.go:31 +[controller:test-integration-envtest] os.(*File).Read(0xc0102b6080, {0xc01af9bed0?, 0x6e65646920666f20?, 0x6573752079746974?}) +[controller:test-integration-envtest] /usr/local/go/src/os/file.go:118 +0x5e +[controller:test-integration-envtest] github.com/fsnotify/fsnotify.(*Watcher).readEvents(0xc010c2e0f0) +[controller:test-integration-envtest] /go/pkg/mod/github.com/fsnotify/fsnotify@v1.6.0/backend_inotify.go:356 +0xdf +[controller:test-integration-envtest] created by github.com/fsnotify/fsnotify.NewWatcher +[controller:test-integration-envtest] /go/pkg/mod/github.com/fsnotify/fsnotify@v1.6.0/backend_inotify.go:150 +0x1b0 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78660 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f38480, 0xc004d0af00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60680 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00d684c40, 0xc00e227560, 0xc00c0ff7a0, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60755 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3a000, 0xc00e227560, 0xc0026c4a80, 0xc00f70e960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78907 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c729e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c729e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c729e30, {0xc009c29800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c29800?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3a40, {0x4f3b7c0, 0xc023dc71d0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a69c0, {0xc00da9ac00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07cc0, 0x6f3a66222c7d7b3a?, {0x5dbd7f0, 0xc01f16dc80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16dc40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60477 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4188, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4160, 0xc010308460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f7420a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00d4c9380}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f742118?, 0x3b9aca00, 0x0, 0x0?, 0x22f1240d2b22?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f7420a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8580, 0xc00a620f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61859 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b18f738?, {0x5d9c8c0, 0xc011483a10}, 0x1, 0xc00a434300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aea6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58605 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78683 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1080, 0xc01f9a1600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60713 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00d684fc0, 0xc00e227560, 0xc00bcc7920, 0xc0068b7c00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62633 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4af180, 0xc01d2567b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59240 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78848 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58bb00, 0xc0057dfd00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b4200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62492 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5ac0}, {0x7f7fb0611580, 0xc000958000}, {0x5e003f8?, 0x573a380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27340, {0x0?, 0x0?}, 0xc00e227560, 0xc01383b540?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c8b40?, {0x5d9c8a0, 0xc01cf6e5a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63975 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50540, 0xc00e227560, 0xc00faa29c0, 0x222c7d2272656765?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62967 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9acbd8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9acbb0, 0xc010cce560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c7735e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5f7680}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773658?, 0x3b9aca00, 0x0, 0x0?, 0x1fc2e34b6fcc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c7735e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b4630, 0xc01e1c0d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60523 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc013e64820, 0xc001a60fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62414 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09240}, {0x7f7fb0611580, 0xc0053e94a0}, {0x5e003f8?, 0x5738b00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb895e0, {0x0?, 0x0?}, 0xc00e227560, 0xc0136dce00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb895e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b570980?, {0x5d9c8a0, 0xc01d4fa820}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb895e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60750 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00c0fd080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62919 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50000, 0xc00e227560, 0xc00bb9e780, 0xc0025e26f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60481 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117ba48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117ba20, 0xc00cf137a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f16b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e578?, 0x3b9aca00, 0x0, 0x0?, 0x1f7c68ab44c7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8c60, 0xc004957900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68631 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc019bfe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77645 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da6ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010da6ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da6ab0, {0xc01267c800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267c800?, 0x3?, 0x7f7fe04aad00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b913400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b913400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b913400, {0x4f3b7c0, 0xc023abe870}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f320ea0, {0xc00a0fd400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec410, 0xc0237da900?, {0x5dbd7f0, 0xc01dc6b0c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61860 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aea6900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58225 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aea6870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72037 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc013034cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68333 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b00e0, 0xc00e227560, 0xc0193943c0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60778 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00c0fd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60500 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f578, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f550, 0xc00d6058c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9eb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c01590}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9ebb8?, 0x3b9aca00, 0x0, 0x0?, 0x20ddcc6a744a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9eb40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001691600, 0xc020cf2d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60486 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117bdb8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117bd90, 0xc00d6046b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c00510}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e898?, 0x3b9aca00, 0x0, 0x0?, 0x212aeaeb1251?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e820, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001691970, 0xc00bdd2500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60492 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001691c58, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001691c30, 0xc0101f67d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a69c320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0136533b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a69c398?, 0x3b9aca00, 0x0, 0x0?, 0x1e14f3abc763?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a69c320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0016918c0, 0xc00b32b100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58221 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63c00}, {0x7f7fb0611580, 0xc0151040b0}, {0x5e003f8?, 0x5735d80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50000, {0x0?, 0x0?}, 0xc00e227560, 0xc003e04180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008f84080?, {0x5d9c8a0, 0xc00cb0e5a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60507 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70146 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d774e00, 0xc00e227560, 0xc02046a8a0, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78379 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f633080, 0xc023941900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08500?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60706 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c614000, 0xc00e227560, 0xc00bcc6d20, 0xc01207a120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61862 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b7f2738?, {0x5d9c8c0, 0xc00d76e840}, 0x1, 0xc00a4344e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b7f27b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aea6990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62661 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78026 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da76c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010da76b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da76b0, {0xc01267d600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267d600?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04b40, {0x4f3b7c0, 0xc023abf158}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0236f3800, {0xc00b150000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfeca00, 0x5dd4e28?, {0x5dbd7f0, 0xc023f50340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61824 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aec4738?, {0x5d9c8c0, 0xc011620900}, 0x1, 0xc009b183c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00aec47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006267a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60503 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f6d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f6b0, 0xc00d605fe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9ec80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c01b30}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9ecf8?, 0x3b9aca00, 0x0, 0x0?, 0x1e1785fcd49d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9ec80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8420, 0xc01cb28100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60760 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59241 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50300}, {0x7f7fb0611580, 0xc0058b4000}, {0x5e003f8?, 0x572f480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00d684a80, {0x0?, 0x0?}, 0xc00e227560, 0xc00165f1c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00d684a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001d734c0?, {0x5d9c8a0, 0xc015433720}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00d684a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60761 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f281e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60502 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f628, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f600, 0xc00d605c50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9ebe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c01860}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9ec58?, 0x3b9aca00, 0x0, 0x0?, 0x20676844f37a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9ebe0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8bb0, 0xc00bc55b00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72222 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf2d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102818c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62640 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78599 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394fb48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0213a8bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394fb30, {0xc00f5dc000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dc000?, 0x3?, 0x7f7fe04a9100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab0dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab0dc0, {0x4f3b7c0, 0xc0234ca558}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a7e30, {0xc0110c7400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190730e0, 0xc011f700c0?, {0x5dbd7f0, 0xc01f794780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58224 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b683f38?, {0x5d9c8c0, 0xc0114839b0}, 0x1, 0xc00a4341e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aea6870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78133 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fa948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fa938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fa930, {0xc00a3aa800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aa800?, 0x3?, 0x7f7fe04a9500?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf057c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf057c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf057c0, {0x4f3b7c0, 0xc023abfdb8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fdc80, {0xc00a69a000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfedbd0, 0x2?, {0x5dbd7f0, 0xc023f51340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80c2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60759 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33a4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69090 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f76c0, 0xc00e227560, 0xc01a937da0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60676 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3a620, 0xc00e227560, 0xc00c0fec00, 0xc0068f9920?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61926 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00d9e60f0, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67609 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27180, 0xc00e227560, 0xc0170a3500, 0xc0025e27b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62451 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f301208, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f3011e0, 0xc0102bcb10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00bcd2820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01dc68ab0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00bcd2898?, 0x3b9aca00, 0x0, 0x0?, 0x1da19e060e01?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00bcd2820, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f300d10, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60474 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).Start(0xc0207a1600, {0x5dd1c70, 0xc0157e5400}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:214 +0x45 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cluster.(*cluster).Start(0x3?, {0x5dd1c70?, 0xc0157e5400?}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cluster/internal.go:104 +0x82 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc007a4e260) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60764 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60577 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60513 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50ec0}, {0x7f7fb0611580, 0xc001691ad0}, {0x5e003f8?, 0x5731b00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001c1d5e0, {0x0?, 0x0?}, 0xc00e227560, 0xc0064a80a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001c1d5e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0086b3900?, {0x5d9c8a0, 0xc010c2e320}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001c1d5e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60504 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001691a48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001691a20, 0xc00dcebe90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a69c0a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013652b40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a69c118?, 0x3b9aca00, 0x0, 0x0?, 0x231c73347683?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a69c0a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e84d0, 0xc00d8f5a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62383 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32f080}, {0x7f7fb0611580, 0xc001322000}, {0x5e003f8?, 0x573ca00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f6700, {0x0?, 0x0?}, 0xc00e227560, 0xc0135f7060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f6700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027a5380?, {0x5d9c8a0, 0xc01d450780}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f6700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78302 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf64c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf64b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf64b0, {0xc0207abe00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207abe00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf0b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf0b40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf0b40, {0x4f3b7c0, 0xc023947770}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c9800, {0xc00a185000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13a90, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32e900}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236bf8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32e8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61871 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00e64bef0, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58308 [IO wait]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb8774858, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc00de12b00?, 0xc01cc6c000?, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Read(0xc00de12b00, {0xc01cc6c000, 0xa000, 0xa000}) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:167 +0x299 +[controller:test-integration-envtest] net.(*netFD).Read(0xc00de12b00, {0xc01cc6c000?, 0xc01cc6c005?, 0xa9f?}) +[controller:test-integration-envtest] /usr/local/go/src/net/fd_posix.go:55 +0x29 +[controller:test-integration-envtest] net.(*conn).Read(0xc00aae4960, {0xc01cc6c000?, 0xc002bc3828?, 0xc01cc501b0?}) +[controller:test-integration-envtest] /usr/local/go/src/net/net.go:183 +0x45 +[controller:test-integration-envtest] crypto/tls.(*atLeastReader).Read(0xc01d6115a8, {0xc01cc6c000?, 0xc01d6115a8?, 0x0?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:788 +0x3d +[controller:test-integration-envtest] bytes.(*Buffer).ReadFrom(0xc01cc50290, {0x5d97be0, 0xc01d6115a8}) +[controller:test-integration-envtest] /usr/local/go/src/bytes/buffer.go:202 +0x98 +[controller:test-integration-envtest] crypto/tls.(*Conn).readFromUntil(0xc01cc50000, {0x5d9cd20?, 0xc00aae4960}, 0xa000?) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:810 +0xe5 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecordOrCCS(0xc01cc50000, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:617 +0x116 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecord(...) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:583 +[controller:test-integration-envtest] crypto/tls.(*Conn).Read(0xc01cc50000, {0xc00bc1e000, 0x1000, 0x0?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:1316 +0x16f +[controller:test-integration-envtest] bufio.(*Reader).Read(0xc004030960, {0xc00d6842e0, 0x9, 0xc012f2d108?}) +[controller:test-integration-envtest] /usr/local/go/src/bufio/bufio.go:237 +0x1bb +[controller:test-integration-envtest] io.ReadAtLeast({0x5d979e0, 0xc004030960}, {0xc00d6842e0, 0x9, 0x9}, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] io.ReadFull(...) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:351 +[controller:test-integration-envtest] golang.org/x/net/http2.readFrameHeader({0xc00d6842e0?, 0x9?, 0xc000000000?}, {0x5d979e0?, 0xc004030960?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/frame.go:237 +0x6e +[controller:test-integration-envtest] golang.org/x/net/http2.(*Framer).ReadFrame(0xc00d6842a0) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/frame.go:498 +0x95 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientConnReadLoop).run(0xc002bc3f98) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2254 +0x12e +[controller:test-integration-envtest] golang.org/x/net/http2.(*ClientConn).readLoop(0xc009bd1800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2149 +0x6f +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*Transport).newClientConn +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:821 +0xc1f +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61872 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60564 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0153d5db0, 0x5d8d980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60512 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62662 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82cc80}, {0x7f7fb0611580, 0xc0058b4420}, {0x5e003f8?, 0x573d800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b00e0, {0x0?, 0x0?}, 0xc00e227560, 0xc0136e2460?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b00e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d276580?, {0x5d9c8a0, 0xc01d2814f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b00e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61270 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68083 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00d685ce0, 0xc00e227560, 0xc01896e600, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60539 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc013ba7ef0, 0xc002e5dfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61811 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61810 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00aef4190, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78263 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d847c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x4167e5?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d847b0, {0xc023db5564, 0x4, 0x4}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0xc013e781e0?}, {0xc023db5564?, 0xc0023c1d08?, 0x40dad6?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] io.ReadAtLeast({0x7f7fb0670ce8, 0xc013d84780}, {0xc023db5564, 0x4, 0x4}, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*lengthDelimitedFrameReader).Read(0xc00e3817e8, {0xc01f783800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:76 +0x88 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54e10, 0x6564227b3a22676f?, {0x5dbd7f0, 0xc0234c69c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51ca0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61256 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60742 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001c1d960, 0xc00e227560, 0xc008a4e7e0, 0xc004f67dc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59244 [select, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/certwatcher.(*CertWatcher).Watch(0xc010c2e000) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/certwatcher/certwatcher.go:126 +0xb8 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/certwatcher.(*CertWatcher).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/certwatcher/certwatcher.go:113 +0x25f +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 54468 [syscall, 13 minutes]: +[controller:test-integration-envtest] syscall.Syscall6(0x1?, 0x0?, 0x0?, 0x0?, 0x40caed?, 0x0?, 0xc000680d50?) +[controller:test-integration-envtest] /usr/local/go/src/syscall/syscall_linux.go:91 +0x36 +[controller:test-integration-envtest] os.(*Process).blockUntilWaitable(0xc01470bc50) +[controller:test-integration-envtest] /usr/local/go/src/os/wait_waitid.go:32 +0x87 +[controller:test-integration-envtest] os.(*Process).wait(0xc01470bc50) +[controller:test-integration-envtest] /usr/local/go/src/os/exec_unix.go:22 +0x28 +[controller:test-integration-envtest] os.(*Process).Wait(...) +[controller:test-integration-envtest] /usr/local/go/src/os/exec.go:132 +[controller:test-integration-envtest] os/exec.(*Cmd).Wait(0xc01561c9a0) +[controller:test-integration-envtest] /usr/local/go/src/os/exec/exec.go:890 +0x45 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:174 +0x65 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:172 +0x33c +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60766 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78140 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84f48, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023e62800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84f30, {0xc009036001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009036001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f5400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f5400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f5400, {0x4f3b7c0, 0xc023fb5818}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00786cd20, {0xc00a0fc000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54410, 0xc005b88d80?, {0x5dbd7f0, 0xc01f7947c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e628c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78324 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f39200, 0xc00bdd3500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b10340?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62922 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b385dd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60747 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e981480) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61260 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61955 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32e8c0}, {0x7f7fb0611580, 0xc0058b42c0}, {0x5e003f8?, 0x572ca80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00d685260, {0x0?, 0x0?}, 0xc00e227560, 0xc00ef4e620?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00d685260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ab2ed80?, {0x5d9c8a0, 0xc0109ebef0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00d685260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60478 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4238, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4210, 0xc0103087c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f742140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00d4c9920}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f7421b8?, 0x3b9aca00, 0x0, 0x0?, 0x227a3b5c30f3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f742140, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0016914a0, 0xc00b32aa00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78547 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c8599c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c8599b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c8599b0, {0xc00ee75c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee75c00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430ec80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430ec80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430ec80, {0x4f3b7c0, 0xc023fb4750}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f90b140, {0xc022ba6000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfecaa0, 0x100000000408938?, {0x5dbd7f0, 0xc0236b4d00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e2680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61812 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31a540}, {0x7f7fb0611580, 0xc00b6ce210}, {0x5e003f8?, 0x572c380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc20000, {0x0?, 0x0?}, 0xc00e227560, 0xc0012306e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc20000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006b1a280?, {0x5d9c8a0, 0xc00aef4280}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc20000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64388 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01df7d738?, {0x5d9c8c0, 0xc00eead1d0}, 0x1, 0xc00f8ee480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01df7d7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00f12d560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59290 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001c1d5e0, 0xc00e227560, 0xc00e413260, 0xc00f70e960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61272 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197da40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f283a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61821 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b6c0f38?, {0x5d9c8c0, 0xc011620870}, 0x1, 0xc009b18060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b6c0fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0062679e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62100 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001c1db20, 0xc00e227560, 0xc00a470c60, 0xc0045f4710?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78129 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee0f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee0f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee0f30, {0xc023cc3400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc3400?, 0x3?, 0x7f7fe04a9100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b913180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b913180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b913180, {0x4f3b7c0, 0xc023e5e768}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9b800, {0xc0137f9800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835caf0, 0xc02106cff0?, {0x5dbd7f0, 0xc023f50f40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab806e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60708 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001c1d7a0, 0xc00e227560, 0xc00bcc70e0, 0xc00a892e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78137 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b8480, 0xc0057fab00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e62340?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60473 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc008446900) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78661 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f384c8, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xd?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f384b0, {0xc000994601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000994601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2c640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2c640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2c640, {0x4f3b7c0, 0xc023b8b0f8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3be630, {0xc00a184c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54aa0, 0xc0028ecc80?, {0x5dbd7f0, 0xc01f3f4dc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78662 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f38780, 0xc004d0b000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63940?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62446 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61126 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09ec0}, {0x7f7fb0611580, 0xc001691e40}, {0x5e003f8?, 0x572bc80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001c1db20, {0x0?, 0x0?}, 0xc00e227560, 0xc006b5f520?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001c1db20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007a911c0?, {0x5d9c8a0, 0xc010c2f4a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001c1db20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78033 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fa480, 0xc004d0a500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58220 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78528 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859980, 0xc023461100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01dc6bfc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60710 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001c1d420, 0xc00e227560, 0xc00bcc74a0, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78260 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84480, 0xc01f745a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63f40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60769 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33a840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72501 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca290, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030303030303030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd900, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62807 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78116 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb9980, 0xc00bdd2300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b5a40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62381 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4506e0, 0x6f223a2265707974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78477 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012423080, 0xc01f0d0f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f379440?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61816 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0062678c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60534 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61258 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65288 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040be2d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6f697469646e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61269 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33afc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60467 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile(0xc0084467e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:179 +0x46 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).Start.func1 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:132 +0xda +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60566 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10b80}, {0x7f7fb0611580, 0xc00117b6b0}, {0x5e003f8?, 0x574d780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3a8c0, {0x0?, 0x0?}, 0xc00e227560, 0xc007283280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3a8c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00608d880?, {0x5d9c8a0, 0xc0004b3450}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3a8c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60535 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98d0c0}, {0x7f7fb0611580, 0xc0058b4160}, {0x5e003f8?, 0x574db00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00d684e00, {0x0?, 0x0?}, 0xc00e227560, 0xc00165fca0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00d684e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ab2e640?, {0x5d9c8a0, 0xc015433ae0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00d684e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59248 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61268 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33aea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60552 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582cff0, 0xc00b691c01?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60644 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50c00}, {0x7f7fb0611580, 0xc00560f4a0}, {0x5e003f8?, 0x5733000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c614000, {0x0?, 0x0?}, 0xc00e227560, 0xc00c26bd00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c614000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951ccc0?, {0x5d9c8a0, 0xc0003d9ea0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c614000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61261 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f282e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60765 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33a660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78083 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a7e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a7e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a7e30, {0xc00f5dc400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dc400?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bc8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bc8c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bc8c0, {0x4f3b7c0, 0xc0234cb998}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f718d20, {0xc00f9f1000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0005b3a40, 0x2?, {0x5dbd7f0, 0xc01f98c8c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60519 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6480}, {0x7f7fb0611580, 0xc001691b80}, {0x5e003f8?, 0x5737600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001c1d7a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0064a84c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001c1d7a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004df2340?, {0x5d9c8a0, 0xc010c2e410}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001c1d7a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60506 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc014abe8c0, 0xc0068f9931?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60774 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00c0fd260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60496 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b6d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b6b0, 0xc00cf12d10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f0b70}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e2f8?, 0x3b9aca00, 0x0, 0x0?, 0x22486c81097b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e280, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8160, 0xc00ca84f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60749 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00c0fcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60479 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b838, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b810, 0xc00cf13250) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f1110}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e438?, 0x3b9aca00, 0x0, 0x0?, 0x1ed139a11751?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e3c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8a50, 0xc00b5aef00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60488 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117bf18, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117bef0, 0xc00d604db0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c00ab0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e9d8?, 0x3b9aca00, 0x0, 0x0?, 0x2175c3d5c63d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8580, 0xc00bdf4f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61130 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60489 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4000, 0xc0094ad800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ed47f40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00d4c8870}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ed47fb8?, 0x3b9aca00, 0x0, 0x0?, 0x21dfdae56957?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ed47f40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8790, 0xc00b815200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61854 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560fa48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560fa20, 0xc00c873f30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010e7dcc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ad95a10}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010e7dd38?, 0x3b9aca00, 0x0, 0x0?, 0x1f293ee1215a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010e7dcc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560f8c0, 0xc001380fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61868 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015104708, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0151046e0, 0xc00f4a32c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001db6000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc010d2f4d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001db6078?, 0x3b9aca00, 0x0, 0x0?, 0x20cc3be4bd07?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001db6000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151044d0, 0xc0068f2400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60494 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b578, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b550, 0xc00cf12730) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f05d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e1b8?, 0x3b9aca00, 0x0, 0x0?, 0x1eba1c935176?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e140, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8dc0, 0xc00ed42e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60483 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117bba8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117bb80, 0xc00cf13ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f1c50}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e6b8?, 0x3b9aca00, 0x0, 0x0?, 0x1d8bd62a1773?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e640, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e86e0, 0xc00fe53f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67900 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b445f38?, {0x5d9c8c0, 0xc018496810}, 0x1, 0xc01848ed80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b445fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0184a0360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78017 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728d80, 0xc01f9a0d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78089 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c2d80, 0xc005791b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023fa1c80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78738 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58a4c8, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234c7680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58a4b0, {0xc00658a601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00658a601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0280, {0x4f3b7c0, 0xc01d610540}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafdf80, {0xc013567000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55360, 0xc023d90ea0?, {0x5dbd7f0, 0xc023e63dc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60476 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b40d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b40b0, 0xc010308150) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f742000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc00d4c8ed0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f742078?, 0x3b9aca00, 0x0, 0x0?, 0x1db3ea5a9573?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f742000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8370, 0xc00f9d2100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60547 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61819 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006267950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61815 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bcdf38?, {0x5d9c8c0, 0xc0116208a0}, 0x1, 0xc009b180c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0062678c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68211 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f6700, 0xc00e227560, 0xc018b7e600, 0xc00451b0b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63035 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00dabe750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78440 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a79c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a79b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a79b0, {0xc00ee74800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74800?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430eb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430eb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430eb40, {0x4f3b7c0, 0xc023b8a150}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f13af30, {0xc014195000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfec460, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc5500}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba5280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc54c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61262 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28320) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60497 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b788, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b760, 0xc00cf12fb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f0e40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e398?, 0x3b9aca00, 0x0, 0x0?, 0x1dba94adc04c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e89a0, 0xc011557400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72200 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca010, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60495 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b628, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b600, 0xc00cf12a50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f08a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e258?, 0x3b9aca00, 0x0, 0x0?, 0x1eb1568b4338?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e1e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8630, 0xc01ce40100?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62668 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32fa40}, {0x7f7fb0611580, 0xc0058b44d0}, {0x5e003f8?, 0x573db80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b02a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0136e2700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b02a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d2765c0?, {0x5d9c8a0, 0xc01d2815e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b02a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60480 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b998, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b970, 0xc00cf134e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f13e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e4d8?, 0x3b9aca00, 0x0, 0x0?, 0x2306d0fe7bc2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8fd0, 0xc0110c3400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60768 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58604 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582d310, 0x5d8d980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62635 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98ccc0}, {0x7f7fb0611580, 0xc001322630}, {0x5e003f8?, 0x5748e00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f6b60, {0x0?, 0x0?}, 0xc00e227560, 0xc0135f79a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f6b60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027a5b40?, {0x5d9c8a0, 0xc01d450c80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f6b60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78452 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6a80, 0xc01f9a1f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32f080?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58216 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0151040d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0151040b0, 0xc00f4a2170) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0120cc140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc011482120}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0120cc1b8?, 0x3b9aca00, 0x0, 0x0?, 0x231926053ea1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0120cc140, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104000, 0xc0058cc300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61818 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0007a0f38?, {0x5d9c8c0, 0xc0116208d0}, 0x1, 0xc009b18360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0007a0fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006267950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60780 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60779 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00c0fd560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59288 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3a460, 0xc00e227560, 0xc00e412e40, 0xc007564a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60518 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58214 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009fcbf38?, {0x5d9c8c0, 0xc011620960}, 0x1, 0xc009b18540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aea6000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60565 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60716 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3a2a0, 0xc00e227560, 0xc00bcc7ec0, 0xc005516280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59247 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc014abe460, 0xc0024ed7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77918 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261080, 0xc0057fad00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08980?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78031 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fa180, 0xc004d0a400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f509c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60554 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023caccc0}, {0x7f7fb0611580, 0xc00117b550}, {0x5e003f8?, 0x5747580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3a460, {0x0?, 0x0?}, 0xc00e227560, 0xc007282880?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3a460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00608c1c0?, {0x5d9c8a0, 0xc0004b25a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3a460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58215 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aea6000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61751 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8868, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e8840, 0xc00d664930) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00d9508c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cb32150}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00d950938?, 0x3b9aca00, 0x0, 0x0?, 0x22831c824ee2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00d9508c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e86e0, 0xc01acf6300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78859 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012981e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01ec92bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012981e30, {0xc009fd9c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd9c00?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3b2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3b2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3b2c0, {0x4f3b7c0, 0xc023dc6330}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacc840, {0xc000721800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07400, 0x5dd4e28?, {0x5dbd7f0, 0xc0234c7f00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60578 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51d00}, {0x7f7fb0611580, 0xc00117b810}, {0x5e003f8?, 0x5736b80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3ac40, {0x0?, 0x0?}, 0xc00e227560, 0xc0095704a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3ac40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007870d40?, {0x5d9c8a0, 0xc0004b3bd0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3ac40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78543 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd8480, 0xc023df2a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cadbc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60770 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e981500) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78597 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c3800, 0xc023f28200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77988 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022201c80, 0xc023460b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc016e979c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 53414 [syscall, 13 minutes]: +[controller:test-integration-envtest] syscall.Syscall6(0x1?, 0x0?, 0x0?, 0x0?, 0x40caed?, 0x0?, 0xc000680d50?) +[controller:test-integration-envtest] /usr/local/go/src/syscall/syscall_linux.go:91 +0x36 +[controller:test-integration-envtest] os.(*Process).blockUntilWaitable(0xc00f13faa0) +[controller:test-integration-envtest] /usr/local/go/src/os/wait_waitid.go:32 +0x87 +[controller:test-integration-envtest] os.(*Process).wait(0xc00f13faa0) +[controller:test-integration-envtest] /usr/local/go/src/os/exec_unix.go:22 +0x28 +[controller:test-integration-envtest] os.(*Process).Wait(...) +[controller:test-integration-envtest] /usr/local/go/src/os/exec.go:132 +[controller:test-integration-envtest] os/exec.(*Cmd).Wait(0xc01083b600) +[controller:test-integration-envtest] /usr/local/go/src/os/exec/exec.go:890 +0x45 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:174 +0x65 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/testing/process.(*State).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/testing/process/process.go:172 +0x33c +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79021 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012f2cf48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f2cf38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012f2cf30, {0xc001408e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001408e00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afc3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afc3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afc3c0, {0x4f3b7c0, 0xc01d6110b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393fad0, {0xc00aef7400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072e10, 0x2?, {0x5dbd7f0, 0xc01f98c780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ffe20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69132 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f6d20, 0xc00e227560, 0xc01aad75c0, 0xc00451b0b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62367 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b28d320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60490 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001691af8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001691ad0, 0xc0101f61e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a69c140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013652e10}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a69c1b8?, 0x3b9aca00, 0x0, 0x0?, 0x2131771e32b2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a69c140, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8210, 0xc0024ed7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62482 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67540 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf050, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130623c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61254 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33a8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60493 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117b4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117b4a0, 0xc00cf12460) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e0a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f0300}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e118?, 0x3b9aca00, 0x0, 0x0?, 0x2324c71537bc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e0a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8d10, 0xc00a187b00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60484 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117bc58, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117bc30, 0xc00cf13f70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc0137f1f50}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e758?, 0x3b9aca00, 0x0, 0x0?, 0x1f28f6ae5607?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e6e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8b00, 0xc00cefa400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61271 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28360) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61867 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015104658, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015104630, 0xc00f4a2f10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00eaa5f40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc010d2eb40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00eaa5fb8?, 0x3b9aca00, 0x0, 0x0?, 0x1e6ead73ac02?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00eaa5f40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104420, 0xc012089800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58219 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00cb0e4b0, 0xc00249cfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60546 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582cdc0, 0xc00b93f7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60485 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00117bd08, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00117bce0, 0xc00d6042f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00ea9e780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc013c00240}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ea9e7f8?, 0x3b9aca00, 0x0, 0x0?, 0x1e91dce7f9f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00ea9e780, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e8840, 0xc00f351600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61124 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc010c2f360, 0xc00b953fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78090 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c2dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c2db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c2db0, {0xc00f5dcc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dcc00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bd040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bd040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bd040, {0x4f3b7c0, 0xc00e380150}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7a6630, {0xc00f9f1c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6230, 0xc01d287b90?, {0x5dbd7f0, 0xc01f98d100}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0239385c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98d0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60525 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63940}, {0x7f7fb0611580, 0xc001691c30}, {0x5e003f8?, 0x573a000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001c1d960, {0x0?, 0x0?}, 0xc00e227560, 0xc0064a8a40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001c1d960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004df2480?, {0x5d9c8a0, 0xc010c2e500}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001c1d960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62666 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e3185f0, 0xc00b691c01?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78586 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394f980, 0xc01f745300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc01293c5a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78561 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394ec00, 0xc02043d700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b5ac0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60541 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e625c0}, {0x7f7fb0611580, 0xc0058b4210}, {0x5e003f8?, 0x572f800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00d684fc0, {0x0?, 0x0?}, 0xc00e227560, 0xc007964180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00d684fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ab2e7c0?, {0x5d9c8a0, 0xc015433c20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00d684fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60533 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc014abeaf0, 0xc009a2b7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61863 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aea6990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60571 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60572 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa11c0}, {0x7f7fb0611580, 0xc00117b760}, {0x5e003f8?, 0x5733e00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3aa80, {0x0?, 0x0?}, 0xc00e227560, 0xc009570080?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3aa80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00608ddc0?, {0x5d9c8a0, 0xc0004b35e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3aa80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60732 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3aa80, 0xc00e227560, 0xc0099176e0, 0xc004f66480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78605 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0222004c8, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f794e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0222004b0, {0xc00e684c01, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e684c01?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab1680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab1680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab1680, {0x4f3b7c0, 0xc01d610c48}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023aef320, {0xc0110c7c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190733b0, 0xc023d90ab0?, {0x5dbd7f0, 0xc01f98c040}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60643 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60582 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582d4a0, 0x5d8d980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60583 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60584 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16cb80}, {0x7f7fb0611580, 0xc00117b970}, {0x5e003f8?, 0x5749880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3ae00, {0x0?, 0x0?}, 0xc00e227560, 0xc009570a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3ae00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007871040?, {0x5d9c8a0, 0xc0003d80a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3ae00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60683 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3ae00, 0xc00e227560, 0xc00c0ffc80, 0xc006de0040?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77681 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0222019c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0222019b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0222019b0, {0xc023f9d800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023f9d800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddd2c0, {0x4f3b7c0, 0xc01d589350}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f376870, {0xc009c26000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad0500, 0x222c22315673646c?, {0x5dbd7f0, 0xc016e97700}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc016e976c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60642 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582c230, 0xc00213cfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60588 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582cc30, 0xc00213efd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60589 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60590 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5c80}, {0x7f7fb0611580, 0xc00117ba20}, {0x5e003f8?, 0x5745980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3afc0, {0x0?, 0x0?}, 0xc00e227560, 0xc009570de0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3afc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007871080?, {0x5d9c8a0, 0xc0003d8410}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3afc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60737 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3afc0, 0xc00e227560, 0xc005175260, 0xc015967260?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78117 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb99c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012eb99b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb99b0, {0xc00784ae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784ae00?, 0x3?, 0x37e81be00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2d180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2d180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2d180, {0x4f3b7c0, 0xc00b080690}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f81d350, {0xc011d94000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad1d10, 0x2?, {0x5dbd7f0, 0xc0236b5cc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236be2e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60654 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582caa0, 0xc00213c7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60594 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582d180, 0xc00badea61?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60595 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60596 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794000}, {0x7f7fb0611580, 0xc00117bad0}, {0x5e003f8?, 0x5747c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3b180, {0x0?, 0x0?}, 0xc00e227560, 0xc009571320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3b180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c000?, {0x5d9c8a0, 0xc0003d8780}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3b180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60735 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3b180, 0xc00e227560, 0xc0051749c0, 0xc004f66cc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79058 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fffc900, 0xc0237f1100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78913 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f260648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f260638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f260630, {0xc01f801c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f801c00?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5180, {0x4f3b7c0, 0xc023dc7e30}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023653320, {0xc00da9b400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f540a0, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f98cf00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eaceda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98ce80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60600 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0157e5b80, 0xc00724c491?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60601 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60602 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f379380}, {0x7f7fb0611580, 0xc00117bb80}, {0x5e003f8?, 0x572f100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3b340, {0x0?, 0x0?}, 0xc00e227560, 0xc009571620?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3b340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c040?, {0x5d9c8a0, 0xc0003d8af0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3b340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59293 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3b340, 0xc00e227560, 0xc00e4137a0, 0xc007565280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78852 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012981800, 0xc02043c000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69e140?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60697 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3bdc0, 0xc00e227560, 0xc00a0cd7a0, 0xc004d87600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60606 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582c910, 0xc00b93b7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60607 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60608 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5b40}, {0x7f7fb0611580, 0xc00117bc30}, {0x5e003f8?, 0x574ec80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3b500, {0x0?, 0x0?}, 0xc00e227560, 0xc0095718e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3b500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c080?, {0x5d9c8a0, 0xc0003d8c80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3b500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 59295 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3b500, 0xc00e227560, 0xc00e413c20, 0xc0115207e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78326 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022200ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022200ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022200ab0, {0xc0238fd000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fd000?, 0x3?, 0x37f097e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0780, {0x4f3b7c0, 0xc023c5a0f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393f380, {0xc00ab59400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d270, 0x2?, {0x5dbd7f0, 0xc023b10ec0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8a340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60638 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69e480}, {0x7f7fb0611580, 0xc00560f3f0}, {0x5e003f8?, 0x5739900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3bdc0, {0x0?, 0x0?}, 0xc00e227560, 0xc00c26b8c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3bdc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951cb40?, {0x5d9c8a0, 0xc0003d9b30}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3bdc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60612 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01582c000, 0xc00b93ffb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60613 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60614 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f795580}, {0x7f7fb0611580, 0xc00117bce0}, {0x5e003f8?, 0x5732900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3b6c0, {0x0?, 0x0?}, 0xc00e227560, 0xc009571fe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3b6c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c180?, {0x5d9c8a0, 0xc0003d8ff0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3b6c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60674 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3b6c0, 0xc00e227560, 0xc00c0fe900, 0xc00f70e960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78685 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee1248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee1238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee1230, {0xc023cc3200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc3200?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73db80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73db80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73db80, {0x4f3b7c0, 0xc023b8bc38}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e5140, {0xc00f71a000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231caff0, 0xc023e5d8f0?, {0x5dbd7f0, 0xc023f515c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4adc60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60637 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60618 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc013e64a50, 0xc00bf2a7f1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60619 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60620 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69f240}, {0x7f7fb0611580, 0xc00117bd90}, {0x5e003f8?, 0x5741380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3b880, {0x0?, 0x0?}, 0xc00e227560, 0xc00c26a3c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3b880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c280?, {0x5d9c8a0, 0xc0003d9360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3b880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60544 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3b880, 0xc00e227560, 0xc00bcc6720, 0xc00249ff10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78758 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da6348, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01e31a300?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da6330, {0xc00a6f8001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a6f8001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf0280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf0280, {0x4f3b7c0, 0xc023e5e7b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf2630, {0xc010d84000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6140, 0xc00f1c83f0?, {0x5dbd7f0, 0xc023f51040}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c502e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60636 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc013e645f0, 0xc00818ffb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60624 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc014abe230, 0xc00b9527b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60625 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60626 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16c140}, {0x7f7fb0611580, 0xc00117be40}, {0x5e003f8?, 0x5731e80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3ba40, {0x0?, 0x0?}, 0xc00e227560, 0xc00c26afa0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3ba40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c2c0?, {0x5d9c8a0, 0xc0003d96d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3ba40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60692 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3ba40, 0xc00e227560, 0xc00a0ccd80, 0xc004d86040?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78706 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad5080, 0xc005790400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f51a00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60655 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60630 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc0157e57c0, 0xc00720e401?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60631 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60632 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63100}, {0x7f7fb0611580, 0xc00117bef0}, {0x5e003f8?, 0x572c000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc001a3bc00, {0x0?, 0x0?}, 0xc00e227560, 0xc00c26b440?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc001a3bc00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951c9c0?, {0x5d9c8a0, 0xc0003d97c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc001a3bc00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60694 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc001a3bc00, 0xc00e227560, 0xc00a0cd140, 0xc013652a50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78544 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b9e48, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cade40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b9e30, {0xc01289a001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01289a001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefdcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefdcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefdcc0, {0x4f3b7c0, 0xc01d610a80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0236520c0, {0xc007db1c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca8c0, 0xc00691cb00?, {0x5dbd7f0, 0xc01df09640}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4acce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cadec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78103 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25be48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25be38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25be30, {0xc00a740c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a740c00?, 0x3?, 0x37e9d8600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b4780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b4780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b4780, {0x4f3b7c0, 0xc01db37e30}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78ae10, {0xc024089c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe7d60, 0x2?, {0x5dbd7f0, 0xc01f16c980}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e71a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16c940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60661 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc014abe690, 0xc00818dfb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60648 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc013e643c0, 0xc00e227560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60649 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60650 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32f2c0}, {0x7f7fb0611580, 0xc00560f550}, {0x5e003f8?, 0x5739200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c6141c0, {0x0?, 0x0?}, 0xc00e227560, 0xc0060301e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c6141c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951ce00?, {0x5d9c8a0, 0xc00fd8e000}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c6141c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60701 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c6141c0, 0xc00e227560, 0xc007868060, 0xc006a9ddc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78384 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25a348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25a338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25a330, {0xc0043cf000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0043cf000?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e308c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e308c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e308c0, {0x4f3b7c0, 0xc01d237140}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023ca5800, {0xc010b9b400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073450, 0x5dd4e28?, {0x5dbd7f0, 0xc023cac6c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ad400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cac680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60656 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d280}, {0x7f7fb0611580, 0xc00560f600}, {0x5e003f8?, 0x5745280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c614380, {0x0?, 0x0?}, 0xc00e227560, 0xc006030760?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c614380, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951d400?, {0x5d9c8a0, 0xc00fd8e0f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c614380, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60704 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c614380, 0xc00e227560, 0xc0078688a0, 0xc0068089c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78903 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c728038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728030, {0xc009c29200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c29200?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3180, {0x4f3b7c0, 0xc023dc7080}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00875f4a0, {0xc00c189800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07b80, 0x6f3a66222c7d7b3a?, {0x5dbd7f0, 0xc01f16d400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16d3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60662 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60663 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31a3c0}, {0x7f7fb0611580, 0xc00560f6b0}, {0x5e003f8?, 0x574c980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c614540, {0x0?, 0x0?}, 0xc00e227560, 0xc006030e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c614540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951d8c0?, {0x5d9c8a0, 0xc00fd8e1e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c614540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60724 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c614540, 0xc00e227560, 0xc007869ce0, 0xc006809400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78032 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fa1c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fa1b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fa1b0, {0xc00a3aa200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aa200?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf052c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf052c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf052c0, {0x4f3b7c0, 0xc023abf8a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fcba0, {0xc00b151000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfed0e0, 0x5dd4e28?, {0x5dbd7f0, 0xc023f50c40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da8dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71990 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf090, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60783 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e981640) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60784 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130625a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e9816a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63085 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d8c0}, {0x7f7fb0611580, 0xc00b7e9550}, {0x5e003f8?, 0x5746400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d775180, {0x0?, 0x0?}, 0xc00e227560, 0xc014b1d400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d775180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cccef00?, {0x5d9c8a0, 0xc01de5a410}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d775180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60786 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00c0fd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60787 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00c0fd860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60788 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72267 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf0d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130625a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63084 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60791 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00c0fdb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60792 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00c0fdc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60793 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72799 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf110, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66222c225a34353a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60795 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e981720) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60796 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130626e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00e9817a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63083 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf2050, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60798 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00c0fdd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60799 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00c0fdf20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60800 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72097 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf150, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130626e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71657 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca110, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60803 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0102800c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60804 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0102801e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60805 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72231 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf190, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102800c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60807 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005506a60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60808 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507020) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71655 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca110, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60810 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0102802a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60811 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0102803c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60812 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72548 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf1d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x74617265706f6563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102802a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78070 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0121c21c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0121c21b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0121c21b0, {0xc009fd9200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd9200?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f48c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f48c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f48c0, {0x4f3b7c0, 0xc023947710}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7bfb90, {0xc011d58c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c730, 0x5dd4e28?, {0x5dbd7f0, 0xc01f69ea00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231feb80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69e9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60815 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0102809c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60816 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010280ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60817 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72151 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf210, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102809c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60819 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130628c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0055071e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60820 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507300) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70574 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d774fc0, 0xc00e227560, 0xc021e96c60, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60822 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010280cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60823 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010280de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60824 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72168 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf250, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010280cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63075 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98cac0}, {0x7f7fb0611580, 0xc00b7e93f0}, {0x5e003f8?, 0x5746080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d774fc0, {0x0?, 0x0?}, 0xc00e227560, 0xc014b1d0e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d774fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cccee00?, {0x5d9c8a0, 0xc01de5a0a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d774fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60827 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0102815c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60828 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0102816e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60829 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72163 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf290, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e65636976726573?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102815c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130628c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60831 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507400) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60832 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507520) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63074 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60834 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0102818c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60835 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0102819e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60836 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72220 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf2d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102818c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63041 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e3199f0, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60839 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fff8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60840 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fff8360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60841 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72215 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf310, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60843 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0055076a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60844 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0055077a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71067 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc022ecbdd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60846 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fff8540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60847 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fff8660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60848 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62413 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65038 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf350, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71156 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc02305cbd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60852 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fff8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60853 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fff8fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60854 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72398 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf390, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60856 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507860) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60857 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507920) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71997 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bf620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60859 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fff91a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60860 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fff9320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60861 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62412 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fa2d0, 0xc01d5217d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65043 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf3d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff91a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63037 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00dabe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60865 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fff9bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60866 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fff9ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60867 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72710 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417210, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65033 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf410, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60870 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507a60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60871 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507be0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63032 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00dabe630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60873 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fff9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60874 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00ff7a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60875 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72161 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf450, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7d7d7b3a22736e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78847 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013745cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013745cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013745cb0, {0xc001ccd600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccd600?, 0x3?, 0xc002c73ce8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e31540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e31540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e31540, {0x4f3b7c0, 0xc01d2372a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00a4687e0, {0xc007848000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d040, 0x2?, {0x5dbd7f0, 0xc0236b42c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80d8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60878 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00ff7a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60879 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00ff7aa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60880 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72308 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf690, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130632c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64955 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf490, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60883 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507ce0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60884 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013062fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507e00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60886 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00ff7ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60887 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00ff7ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60888 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72466 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf4d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66227b3a22617461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69441 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d774a80, 0xc00e227560, 0xc01cbf2720, 0xc013c32a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60891 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00ff7b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60892 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00ff7b6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60893 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78693 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022200c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc022200c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022200c30, {0xc0064db800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0064db800?, 0x3?, 0x3824e6d00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05180, {0x4f3b7c0, 0xc0234cb068}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd68a0, {0xc00c188400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073950, 0x2?, {0x5dbd7f0, 0xc01f795800}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe940) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f7957c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64960 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf510, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2065726120736563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60896 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc005507f40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60897 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130630e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056ccac0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62935 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa0e40}, {0x7f7fb0611580, 0xc00b7e9290}, {0x5e003f8?, 0x5743300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d774a80, {0x0?, 0x0?}, 0xc00e227560, 0xc014b1c340?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d774a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cf27e00?, {0x5d9c8a0, 0xc01d75f360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d774a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60899 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00ff7b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60900 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00ff7ba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60901 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72567 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf550, 0x17) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023ba5b00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130630e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62934 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60904 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010508300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60905 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010508420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60906 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72461 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf590, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66227b3a22617461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60908 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056ccc60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60909 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056cce20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62933 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d281ae0, 0xc00b5597b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60911 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010508600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60912 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010508720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60913 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72146 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf5d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65068 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00bc930e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60916 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010508f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60917 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010509020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60918 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72779 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf610, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x302d363130323d6e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60920 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130632c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056cd040) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60921 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056cd220) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62921 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01dfadf38?, {0x5d9c8c0, 0xc01dff41e0}, 0x1, 0xc00bb9f1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01dfadfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b385dd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60923 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010509200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60924 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010509380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60925 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72302 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf650, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62523 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51580}, {0x7f7fb0611580, 0xc00b7e91e0}, {0x5e003f8?, 0x573a700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d774460, {0x0?, 0x0?}, 0xc00e227560, 0xc0136e20c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d774460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cf276c0?, {0x5d9c8a0, 0xc01d75ecd0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d774460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60928 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010509b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60929 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010509c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60930 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72307 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf690, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009bd1800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130632c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60932 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056cd400) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60933 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130634a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc0056cd580) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62522 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60935 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010509f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60936 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010f16060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60937 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67180 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb89420, 0xc00e227560, 0xc0161dc420, 0xc0025e26f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66874 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf6d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130634a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62521 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d0a9b80, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60941 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010f169c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60942 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010f16b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60943 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72582 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf750, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f169c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60945 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813e480) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60946 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130635e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813e5e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78257 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b9080, 0xc01f9a1300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc018662160?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60948 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010f16d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60949 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010f16e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60950 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72312 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf790, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f16d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130635e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63120 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf30e0, 0xc00a892e51?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60953 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010f17740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60954 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010f17860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60955 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62407 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f7957c0}, {0x7f7fb0611580, 0xc0053e93f0}, {0x5e003f8?, 0x5738080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb89420, {0x0?, 0x0?}, 0xc00e227560, 0xc0136dcb40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb89420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b570880?, {0x5d9c8a0, 0xc01d4fa690}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb89420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66767 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf7d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x122?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60958 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813e6e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60959 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813e800) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72372 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca890, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x73225b3a22737265?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60961 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010f17aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60962 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010f17bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60963 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62406 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66788 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf810, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72031 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca850, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60967 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0109ee540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60968 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0109ee660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60969 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72382 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf850, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60971 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0130637c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813e920) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60972 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813e9e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72411 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca810, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a22656361707365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60974 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0109ee840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60975 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0109ee960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60976 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62405 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fa140, 0xc00b4c4fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66762 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf890, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x1d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72724 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca7d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a7370747468225c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60980 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0109ef260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60981 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0109ef380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60982 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72351 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf8d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130637c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60984 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063a40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813eae0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60985 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063ae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813ec00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72116 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca790, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60987 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0109ef560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60988 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc0109ef680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60989 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72341 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf910, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72486 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca750, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030302d30303030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60992 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0109efec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60993 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010bf2000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60994 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72272 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf950, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109efec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063a40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60996 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063b80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813ed40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60997 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063c20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813ee60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72668 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca710, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x73656c706d61732d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d48c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60999 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010bf21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61000 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010bf2300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61001 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62111 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d259f38?, {0x5d9c8c0, 0xc01d4af410}, 0x1, 0xc00a471e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00abb1680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66729 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf9d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063c20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72714 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca6d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3e6c696e3c3d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d46e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61005 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010bf2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61006 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010bf2c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61007 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72600 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66227b3a22617461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063b80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61009 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063cc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813efe0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61010 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063d60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f080) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72577 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca690, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fea20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61012 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010bf2e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61013 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010bf2f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61014 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72135 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063d60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72328 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca650, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61017 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010bf3860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61018 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010bf3980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61019 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72246 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063cc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61021 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063e00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f120) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61022 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063ea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f1e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71691 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca610, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d45a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61024 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc010bf3b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61025 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc010bf3c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61026 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72436 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71688 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca610, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d45a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61029 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011b9c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61030 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011b9c5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61031 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71981 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063e00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61033 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc013063f40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f300) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61034 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f3a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62465 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08a80}, {0x7f7fb0611580, 0xc00f301290}, {0x5e003f8?, 0x5739580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d8dc7e0, {0x0?, 0x0?}, 0xc00e227560, 0xc0138dd0c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d8dc7e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d3f7b80?, {0x5d9c8a0, 0xc01d8ff860}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d8dc7e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61036 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011b9c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61037 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011b9c8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61038 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72226 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfbd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e73656372756f73?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72641 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca5d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6564726f6e75206e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4afe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d43c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61041 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011b9d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61042 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011b9d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61043 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72426 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7a612e726f746172?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063f40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61045 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f440) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61046 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f4e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71684 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaad0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5beea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d5040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61048 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011b9d3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61049 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011b9d500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61050 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72354 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67611 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d8dc7e0, 0xc00e227560, 0xc0170a3a40, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61053 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011b9dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61054 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011b9de00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61055 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72189 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfcd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6564656563637553?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61057 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f540) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61058 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f5c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72531 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca550, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x76222c2230303030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61060 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01181a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61061 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01181a120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61062 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72087 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72346 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca4d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d40a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61065 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01181a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61066 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01181aa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61067 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70836 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61069 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f660) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61070 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f720) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72416 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca490, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61072 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01181ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61073 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01181ad20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61074 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72491 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfdd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66222c7d7b3a222e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72562 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca450, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e653a66222c7d7b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdf40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61077 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01181b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61078 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01181b620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61079 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72388 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61081 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f780) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61082 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f820) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72367 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca410, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61084 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01181b860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61085 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01181b9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61086 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72587 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x61746e6f63223a22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71613 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca3d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b477920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cde00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61089 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fb021e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61090 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fb02300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61091 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62546 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e9208, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e91e0, 0xc010796880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c891180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ddfe780}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c8911f8?, 0x3b9aca00, 0x0, 0x0?, 0x235dcaaf4510?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c891180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce8f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67202 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb021e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61094 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f880) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61095 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f8e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71615 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca3d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b477920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cde00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61097 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fb02540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61098 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fb02660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61099 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62457 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67207 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfed0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78756 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58a7c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58a7b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58a7b0, {0xc00b0b9200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b9200?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afc140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afc140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afc140, {0x4f3b7c0, 0xc00e380bd0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0237db6b0, {0xc010d85c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c410, 0xc011f700c0?, {0x5dbd7f0, 0xc01e31a100}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c516c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31a0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61103 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fb02f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61104 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fb03020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61105 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72431 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7d7d227370?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61107 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197c820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f980) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61108 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197ca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813f9e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71665 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca350, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61110 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fb03200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61111 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fb03320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61112 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72794 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f74617265706f65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72572 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca390, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x616e616d222c7d7d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4776e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdb80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61115 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fb03c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61116 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00fb03d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61117 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72145 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646e696865426e65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61119 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197caa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fa80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61120 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fb00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 60721 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00e64bd60, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61133 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67198 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb89260, 0xc00e227560, 0xc0158cbf80, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61135 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b4c0738?, {0x5d9c8c0, 0xc011324360}, 0x1, 0xc008461080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b4c07b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61136 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62160 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6b440}, {0x7f7fb0611580, 0xc0053e9340}, {0x5e003f8?, 0x5737980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb89260, {0x0?, 0x0?}, 0xc00e227560, 0xc0136dc880?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb89260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b570380?, {0x5d9c8a0, 0xc01d4fa500}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb89260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61138 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b52f738?, {0x5d9c8c0, 0xc0113243f0}, 0x1, 0xc0084610e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b52f7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61139 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62159 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61141 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009baa738?, {0x5d9c8c0, 0xc011324420}, 0x1, 0xc008461140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009baa7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a3533b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61142 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a3533b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62158 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01cd45f90, 0xc00a323680?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61144 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009ba8738?, {0x5d9c8c0, 0xc0113244b0}, 0x1, 0xc008461320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc009ba87b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61145 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78609 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200900, 0xc023f29400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f795200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61147 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b533738?, {0x5d9c8c0, 0xc0113244e0}, 0x1, 0xc008461380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b5337b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61148 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62395 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015105f18, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015105ef0, 0xc00d186020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009109f40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01db1d0e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009109fb8?, 0x3b9aca00, 0x0, 0x0?, 0x22dcfbebf26c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009109f40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105e40, 0xc01d276f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61150 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b530738?, {0x5d9c8c0, 0xc011324510}, 0x1, 0xc0084613e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b5307b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a3535f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61151 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a3535f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62155 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e9578, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e9550, 0xc00fe298a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c8650e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01da1c360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c865158?, 0x3b9aca00, 0x0, 0x0?, 0x205bc878f694?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c8650e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9290, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61153 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d97738?, {0x5d9c8c0, 0xc011324540}, 0x1, 0xc008461560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc005d977b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61154 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62154 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e94c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e94a0, 0xc00fe294c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c865040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01da1c060}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c8650b8?, 0x3b9aca00, 0x0, 0x0?, 0x20280bf7e9b3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c865040, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e91e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61156 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc005d9c738?, {0x5d9c8c0, 0xc011324630}, 0x1, 0xc0084615c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc005d9c7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61157 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62153 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e9418, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e93f0, 0xc00fe29080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c864fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01da07d40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c865018?, 0x3b9aca00, 0x0, 0x0?, 0x23da932d8715?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c864fa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9130, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61159 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004e1a738?, {0x5d9c8c0, 0xc011324660}, 0x1, 0xc008461620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc004e1a7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a353830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61160 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a353830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 58303 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6ce238, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6ce210, 0xc00ed8c120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011bc81e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc012264ff0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011bc8258?, 0x3b9aca00, 0x0, 0x0?, 0x1ee2522781a5?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011bc81e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce160, 0xc00e369300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61164 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011444de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61165 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011444f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61166 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72282 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07590, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011444de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197caa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61168 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fb80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61169 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fc20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71670 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca310, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cda40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61171 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc0114453e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61172 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011445500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61173 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72471 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a075d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x73627379652d6772?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0114453e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62442 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e9158, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e9130, 0xc0107963a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c890fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ddf1080}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c891018?, 0x3b9aca00, 0x0, 0x0?, 0x216ebb210b89?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c890fa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b7e9080, 0xc01d77c000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61176 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011445740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61177 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011445860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61178 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72393 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07610, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61180 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fca0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61181 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cdc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fd20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72663 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca2d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4765a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61183 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc011445a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61184 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc011445b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61185 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72592 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07650, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226570797422?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cdc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61748 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61188 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b31e360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61189 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b31e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61190 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72749 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07690, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61192 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197ce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fe00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61193 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813fec0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61747 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b192060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61195 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b31e660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61196 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b31e780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61197 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72626 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a076d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x757365722d72656c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61746 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00fb03f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61200 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b31ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61201 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b31f080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61202 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68172 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d7742a0, 0xc00e227560, 0xc018dc8300, 0xc00bb4f470?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68182 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07710, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61205 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197cfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc00813ff60) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61206 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28000) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62562 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4c00}, {0x7f7fb0611580, 0xc0091ce000}, {0x5e003f8?, 0x573ae00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27500, {0x0?, 0x0?}, 0xc00e227560, 0xc01383ba80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c8f40?, {0x5d9c8a0, 0xc01cf6e690}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61208 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b31f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61209 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b31f3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61210 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72739 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07750, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6d222c7d7d7d7b3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62497 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61213 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b31fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61214 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b31fd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61215 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78555 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c859b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c859b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c859b30, {0xc009c28400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c28400?, 0x3?, 0x3813e9800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430fcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430fcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430fcc0, {0x4f3b7c0, 0xc023fb4ee8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18600, {0xc01a17d400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfedd10, 0x2?, {0x5dbd7f0, 0xc0236b5500}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e2bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b54c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68187 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a077d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x59?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61218 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28040) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61219 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28080) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62496 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df02050, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61221 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b31ff80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61222 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3480c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61223 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62348 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d51ff38?, {0x5d9c8c0, 0xc01d8f23c0}, 0x1, 0xc0065be720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d51ffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b329a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67969 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07810, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x28?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ff80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78559 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394e4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394e4b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394e4b0, {0xc009c28a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c28a00?, 0x3?, 0x3813e9800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a2280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a2280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a2280, {0x4f3b7c0, 0xc023fb5068}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18e70, {0xc00b151400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfedf40, 0x2?, {0x5dbd7f0, 0xc0236b5b00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5ac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61227 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b348960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61228 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b348a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61229 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72744 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07850, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61231 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f280c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61232 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28120) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67803 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27340, 0xc00e227560, 0xc0175b78c0, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61234 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b348c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61235 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b348d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61236 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72406 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07890, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226570797422?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62488 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b28d950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61239 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3495c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61240 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3496e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61241 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72262 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a078d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3495c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61243 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28160) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61244 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197d400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f281a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62487 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0072b6f38?, {0x5d9c8c0, 0xc01cf6c5d0}, 0x1, 0xc00a235f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01b34fa88?, 0x3b9aca00, 0x0, 0x50?, 0xc0072b6fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b28d950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61246 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3498c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61247 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3499e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61248 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72359 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07910, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3498c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61274 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61275 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61276 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62366 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b7a1738?, {0x5d9c8c0, 0xc01cf6c4e0}, 0x1, 0xc00a235d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc019e9c3c8?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b28d320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61278 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61279 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61280 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61281 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197dae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f283e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61282 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197db80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28420) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72310 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf690, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130632c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61284 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc00f33baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61285 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc00f33bbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61286 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62364 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b28d290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61288 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61289 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc019ea4360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61290 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61291 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197dcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28460) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61292 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197dd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f284a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69611 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01dd70240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61294 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61295 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc019ea45a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61296 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78205 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728780, 0xc023f29c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69fcc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61298 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61299 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc019ea4d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61300 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61301 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197de00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f284e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61302 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197dea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28520) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78262 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84780, 0xc01f745b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61304 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61305 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc019ea4f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61306 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78858 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012981e00, 0xc02043c900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c7a40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61308 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61309 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc019ea56e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61310 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61311 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc01197df40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28560) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61312 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f285e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62253 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015105db8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015105d90, 0xc00fde3700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009109b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d9ad260}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009109bf8?, 0x3b9aca00, 0x0, 0x0?, 0x23b834dc70d4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009109b80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105ce0, 0xc01d276a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61314 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea5800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61315 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc019ea5920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61316 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72210 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417c50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6669677175747365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61318 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc019ea5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61319 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3820c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61320 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61321 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28620) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61322 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc140, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28660) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72541 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064178d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x222c323a226e6f69?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61324 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3821e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61325 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b382300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61326 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72774 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417890, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x225c736569747265?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61328 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b382960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61329 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b382a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61330 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61331 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f286a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61332 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f286e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72789 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417850, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x65646f6d225c2c30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61334 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b382ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61335 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b382cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61336 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72631 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417810, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccaa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61338 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b383320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61339 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b383440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61340 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61341 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28720) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61342 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28760) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72764 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417750, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c5020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61344 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b383560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61345 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b383680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61346 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72769 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417710, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x9f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61348 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b383ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61349 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b383e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61350 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61351 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f287a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61352 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f287e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72692 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064176d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61354 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b383f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61355 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3aa060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61356 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63036 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b68ef38?, {0x5d9c8c0, 0xc01de46e10}, 0x1, 0xc00d6e53e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00dabe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61358 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3aa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61359 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3aa7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61360 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61361 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28820) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61362 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28860) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72256 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca8d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5738c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61364 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3aa900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61365 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3aaa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61366 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69636 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417450, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61368 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3ab080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61369 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3ab1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61370 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61371 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f288a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61372 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f288e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63276 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ef20738?, {0x5d9c8c0, 0xc01f0a94a0}, 0x1, 0xc00c7243c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ef207b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00c9a0b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61374 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3ab2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61375 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3ab3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61376 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72697 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417410, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646e696865426e65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3abc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc8c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61378 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3aba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61379 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3abb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61380 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61381 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28920) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61382 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc8c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28960) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72636 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064173d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7331303230333230?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61384 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3abc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61385 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3abda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61386 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72719 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417350, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72632d73656c706d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61388 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3c4420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61389 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3c4540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61390 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61391 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cc960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f289a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61392 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f289e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72754 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417310, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6c3a66222c7d7d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61394 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3c4660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61395 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3c4780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61396 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72709 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417210, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6967717574736574?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61398 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3c4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61399 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3c4f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61400 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61401 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccaa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28a20) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61402 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28ac0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72646 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417010, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a226469222c5d7d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61404 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3c5020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61405 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3c5140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61406 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72729 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a7370747468225c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61408 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3c57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61409 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3c58c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61410 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61411 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28b00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61412 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28b40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72140 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61414 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3c59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61415 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3c5b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61416 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72688 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416ed0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6f63222c22223a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61418 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e8180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61419 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3e82a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61420 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61421 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28b80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61422 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28bc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72623 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416dd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61424 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61425 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3e84e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61426 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72734 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030303030302d30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61428 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61429 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3e8c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61430 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61431 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28c00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61432 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158ccfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28c40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72678 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61434 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61435 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3e8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61436 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72784 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416b50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3821e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc140, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61438 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e9500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61439 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3e9620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61440 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61441 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28c80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61442 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28cc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72759 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416a90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197df40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61444 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e9740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61445 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b3e9860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61446 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72683 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416950, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61448 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b3e9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61449 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b410000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61450 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61451 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28d00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61452 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28d40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72421 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064168d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197de00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61454 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b410120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61455 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b410240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61456 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72456 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416890, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x616d222c5d227265?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61458 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4108a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61459 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4109c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61460 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61461 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28d80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61462 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28dc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72451 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416850, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61464 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b410ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61465 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b410c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61466 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72323 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416810, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61468 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b411260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61469 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b411380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61470 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61471 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28e00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61472 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28e40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72476 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416650, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20296c696e286563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61474 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4114a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61475 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4115c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61476 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72481 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416550, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197db80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61478 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b411c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61479 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b411d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61480 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61481 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28e80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61482 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28ec0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72109 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416510, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2232737574736577?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61484 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b411e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61485 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b411f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61486 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72184 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064164d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197da40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61488 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b44c600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61489 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b44c720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61490 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61491 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28f00) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61492 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28f40) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72536 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416490, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3130343031323032?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61494 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b44c840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61495 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b44c960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61496 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72121 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416410, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61498 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b44cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61499 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b44d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61500 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61501 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28f80) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61502 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f28fc0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72558 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064163d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7b3a222e227b3a22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61504 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b44d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61505 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b44d320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61506 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72553 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416390, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72676f72506e4922?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61508 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b44d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61509 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b44daa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61510 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61511 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd900, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29000) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61512 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cd9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29040) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72292 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416350, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61514 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b44dbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61515 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b44dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61516 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72287 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416190, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61518 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b476360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61519 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b476480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61520 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61521 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cda40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29080) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61522 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cdae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f290c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72156 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064160d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6b2e736e6f69736e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61524 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4765a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61525 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4766c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61526 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67752 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27500, 0xc00e227560, 0xc01764a3c0, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61528 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b476d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61529 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b476e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61530 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61531 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cdb80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29100) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61532 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cdcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29140) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69662 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b738f38?, {0x5d9c8c0, 0xc01d9488d0}, 0x1, 0xc01d9469c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01d9521b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61534 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b476f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61535 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b477080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61536 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78450 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6900, 0xc01f9a1d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32ee40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61538 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4776e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61539 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b477800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61540 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61541 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cdd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29180) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61542 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cde00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f291c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78385 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb8000, 0xc023941e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cac680?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61544 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b477920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61545 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b477a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61546 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62507 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61548 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4ae0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61549 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4ae1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61550 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61551 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cdea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29200) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61552 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc0158cdf40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29240) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72186 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064164d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197da40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61554 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4ae300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61555 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4ae420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61556 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68403 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018c7f7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61558 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4aea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61559 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4aeba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61560 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61561 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29280) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61562 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d40a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f292c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62547 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000958028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000958000, 0xc01062ff70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6c630}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00bb8?, 0x3b9aca00, 0x0, 0x0?, 0x21b64a78368e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00b40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce9a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61564 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4aecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61565 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4aede0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61566 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72225 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca210, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61568 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4af440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61569 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4af560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61570 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61571 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d43c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29300) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61572 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f293a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72173 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca1d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f74617265706f65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61574 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61575 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4af7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61576 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72049 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca190, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61578 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4afe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61579 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4aff20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61580 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61581 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f293e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61582 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d45a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29420) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71631 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca150, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61584 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61585 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4fe180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61586 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62471 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c238, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c210, 0xc011a2dd00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da01540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01dfa3050}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da015b8?, 0x3b9aca00, 0x0, 0x0?, 0x21df1cfcdb7e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da01540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f3013f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61588 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4fe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61589 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4fe900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61590 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61591 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d46e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29460) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61592 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f294a0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71658 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca110, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61594 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4fea20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61595 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4feb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61596 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62463 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d8ff4a0, 0xc00a68b7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61598 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61599 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4ff2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61600 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61601 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f294e0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61602 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d48c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29520) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71660 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca0d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61604 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4ff3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61605 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4ff500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61606 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62464 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61608 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4ffb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61609 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4ffc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61610 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61611 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29560) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61612 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f295c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72251 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca090, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61614 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b4ffda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61615 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b4ffec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61616 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72092 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca050, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4114a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61618 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b572540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61619 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b572660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61620 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61621 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29600) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61622 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29640) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72198 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca010, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x74733a66222c7d7b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61624 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b572780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61625 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5728a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61626 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72126 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417ed0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6972656e696174?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61628 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b572f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61629 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b573020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61630 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61631 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29680) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61632 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f296c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72496 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417e10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646f6d222c313a22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4108a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61634 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b573140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61635 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b573260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61636 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72277 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417dd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61638 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5738c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61639 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5739e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61640 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61641 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29700) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61642 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29740) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72297 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61644 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b573b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61645 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b573c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61646 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72595 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61648 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5be2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61649 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5be3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61650 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61651 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29780) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61652 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f297c0) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72333 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61654 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5be4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61655 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5be600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61656 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61673 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5bfce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61658 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5bec60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61659 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5bed80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61660 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61661 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d4fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29800) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61662 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d5040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29840) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72205 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417cd0, 0x41) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136e23a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61664 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5beea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61665 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5befc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61666 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61671 [chan receive, 12 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start(0xc00f0d50e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:238 +0x18b +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile.func1(0xc010f29880) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:219 +0xdb +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/manager.(*runnableGroup).reconcile +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/manager/runnable_group.go:203 +0x1ad +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61668 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).updateUnfinishedWorkLoop(0xc01b5bf620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:314 +0xa7 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:106 +0x1bc +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61669 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5bf740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61670 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61674 [select]: +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*delayingType).waitingLoop(0xc01b5bfe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:276 +0x305 +[controller:test-integration-envtest] created by k8s.io/client-go/util/workqueue.newDelayingQueue +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/delaying_queue.go:113 +0x22a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61675 [chan receive, 13 minutes]: +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:162 +0x32 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:161 +0x138 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72605 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca910, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72118 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca790, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72673 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca9d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72613 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e227b3a22736e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72702 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72657473756c6364?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bec60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67768 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc015523738?, {0x5d9c8c0, 0xc0174deb10}, 0x1, 0xc0174b3da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0155237b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0174e8360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71683 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaad0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5beea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d5040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63031 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00abdf738?, {0x5d9c8c0, 0xc01de46180}, 0x1, 0xc00d6e4360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01aff0a48?, 0x3b9aca00, 0x0, 0x50?, 0xc00abdf7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00dabe630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71995 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x63657073222c7d22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bf620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63888 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00f92cc60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72658 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x69536d763a66222c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bfce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d50e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72618 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bffd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x76726573222c2244?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61825 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006267a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62447 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f379680}, {0x7f7fb0611580, 0xc00b7e9130}, {0x5e003f8?, 0x574e200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d7742a0, {0x0?, 0x0?}, 0xc00e227560, 0xc012fad660?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d7742a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cf27340?, {0x5d9c8a0, 0xc01d75e870}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d7742a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61827 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a1d1f38?, {0x5d9c8c0, 0xc011620930}, 0x1, 0xc009b18420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0xc00a1d1f38?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006267b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61828 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006267b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77887 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b15200, 0xc02043d300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e31a280?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61799 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b680738?, {0x5d9c8c0, 0xc011620630}, 0x1, 0xc00792b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b48b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61800 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b48b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62458 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cadec0}, {0x7f7fb0611580, 0xc00f3011e0}, {0x5e003f8?, 0x5738e80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d8dc620, {0x0?, 0x0?}, 0xc00e227560, 0xc0138dce00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d8dc620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d3f7640?, {0x5d9c8a0, 0xc01d8ff6d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d8dc620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61802 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001386f38?, {0x5d9c8c0, 0xc011620660}, 0x1, 0xc00792b9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0x3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b48b950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61803 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b48b950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62349 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b329a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61805 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b624738?, {0x5d9c8c0, 0xc011620690}, 0x1, 0xc00792ba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b48bd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61806 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b48bd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62490 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d0a9d10, 0xc00792b3e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61808 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00aec6738?, {0x5d9c8c0, 0xc0116206c0}, 0x1, 0xc00792baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x60?, 0xc00aec6788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b48bdd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61809 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b48bdd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61842 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0024f0f38?, {0x5d9c8c0, 0xc0116206f0}, 0x1, 0xc00792bb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b48bef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61843 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b48bef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61844 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b94ff38?, {0x5d9c8c0, 0xc011620720}, 0x1, 0xc00792bb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b94ffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b024480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61845 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b024480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67746 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0162d9f38?, {0x5d9c8c0, 0xc017547590}, 0x1, 0xc016dc76e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0162d9fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc017636fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61847 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004da6738?, {0x5d9c8c0, 0xc011620810}, 0x1, 0xc00792bf20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc004da67b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b024510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61848 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b024510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61850 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a691738?, {0x5d9c8c0, 0xc011620840}, 0x1, 0xc009b18000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b0245a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61851 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b0245a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67601 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d8dc620, 0xc00e227560, 0xc0171805a0, 0xc0168ffce0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61830 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009bc9738?, {0x5d9c8c0, 0xc012265f80}, 0x1, 0xc009db55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc006267b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61831 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc006267b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78659 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f38180, 0xc004d0ae00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62453 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001691f18, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001691ef0, 0xc01062fb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6c0c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00a78?, 0x3b9aca00, 0x0, 0x0?, 0x1e41893c3fbf?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00a00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301130, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64391 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a634f38?, {0x5d9c8c0, 0xc00eead230}, 0x1, 0xc00f8ee4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a634fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00f12d5f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61877 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6ce708, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6ce6e0, 0xc00ed8cee0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011bc86e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc016c942d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011bc8758?, 0x3b9aca00, 0x0, 0x0?, 0x211021447ce7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011bc86e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce4d0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61837 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00aef4c30, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61838 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61839 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5040}, {0x7f7fb0611580, 0xc00b6ce420}, {0x5e003f8?, 0x574b800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc201c0, {0x0?, 0x0?}, 0xc00e227560, 0xc001231080?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc201c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006b1a940?, {0x5d9c8a0, 0xc00aef4d20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc201c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63289 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc201c0, 0xc00e227560, 0xc00a462360, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78252 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b81c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b81b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b81b0, {0xc01f2ff800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2ff800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73c640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73c640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73c640, {0x4f3b7c0, 0xc023946780}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00786c600, {0xc005c67c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13310, 0x6564227b3a22676f?, {0x5dbd7f0, 0xc01f3f5080}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236be6a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63607 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc01f92e330}, 0x1, 0xc01035ade0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ec88fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00dc9a240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72206 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417cd0, 0x42) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a4acb40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72224 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf2d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102818c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61878 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6ce7b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6ce790, 0xc00ed8d210) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011bc8780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc016c949f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011bc87f8?, 0x3b9aca00, 0x0, 0x0?, 0x23008583ccfc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011bc8780, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce580, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61879 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6ce868, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6ce840, 0xc00ed8d600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011bc8820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc016c94ff0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011bc8898?, 0x3b9aca00, 0x0, 0x0?, 0x1e6bd8297c95?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011bc8820, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ce630, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61865 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b42e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b42c0, 0xc0106aa6f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc004752000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc016c1a360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc004752078?, 0x3b9aca00, 0x0, 0x0?, 0x239272b5a97e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc004752000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104210, 0xc01ce52300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62549 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0091ce028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0091ce000, 0xc011a2c200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00be0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6c900}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00c58?, 0x3b9aca00, 0x0, 0x0?, 0x1e1db6e84a92?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00be0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ceb00, 0xc01cb78b00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61882 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00aef51d0, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61883 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61884 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4880}, {0x7f7fb0611580, 0xc00b6ce6e0}, {0x5e003f8?, 0x574e580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc20380, {0x0?, 0x0?}, 0xc00e227560, 0xc001231760?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc20380, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006b1aac0?, {0x5d9c8a0, 0xc00aef5590}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc20380, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63464 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc20380, 0xc00e227560, 0xc00d801b60, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78665 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f38948, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023e63e80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f38930, {0xc000995201, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000995201?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2d040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2d040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2d040, {0x4f3b7c0, 0xc023e5f740}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3bf530, {0xc014194c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54c80, 0xc023da9dd0?, {0x5dbd7f0, 0xc01f82d340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0239395a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66561 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b959f38?, {0x5d9c8c0, 0xc01b133c50}, 0x1, 0xc0138fe2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b959fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc014a35560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62548 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001efdf18, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001efdef0, 0xc011a2c4b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6cc00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00cf8?, 0x3b9aca00, 0x0, 0x0?, 0x20edaa1b7109?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00c80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6cea50, 0xc00b6797b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61889 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00aef5360, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61890 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61891 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc00ac4dd00}, {0x7f7fb0611580, 0xc00b6ce790}, {0x5e003f8?, 0x5736800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc20540, {0x0?, 0x0?}, 0xc00e227560, 0xc001231a80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc20540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006b1b080?, {0x5d9c8a0, 0xc00aef5720}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc20540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63534 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc20540, 0xc00e227560, 0xc00f4c9b00, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78169 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394ef48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394ef38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394ef30, {0xc00e482800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e482800?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5040, {0x4f3b7c0, 0xc023e5e6f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b19800, {0xc011d59c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12410, 0x5dd4e28?, {0x5dbd7f0, 0xc00ac4dd40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc00ac4dd00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67830 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01795cea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62363 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027c4738?, {0x5d9c8c0, 0xc01cf6c390}, 0x1, 0xc00a235c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0027c47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b28d290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61896 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00aef54f0, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61897 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61898 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c440}, {0x7f7fb0611580, 0xc00b6ce840}, {0x5e003f8?, 0x574b480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc20700, {0x0?, 0x0?}, 0xc00e227560, 0xc001231e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc20700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006b1b240?, {0x5d9c8a0, 0xc00aef58b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc20700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63581 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc20700, 0xc00e227560, 0xc00cb72fc0, 0xc00bce90b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78613 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c728f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728f30, {0xc009fd9a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd9a00?, 0x3?, 0x37effa600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5900, {0x4f3b7c0, 0xc01d588b58}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacde30, {0xc01ead3800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab65f0, 0x2?, {0x5dbd7f0, 0xc01f82d440}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32f4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66308 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0128622d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61853 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560f998, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560f970, 0xc00c873bd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010e7dc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ad95710}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010e7dc98?, 0x3b9aca00, 0x0, 0x0?, 0x1f091c0072ee?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010e7dc20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560f810, 0xc00c74c000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61939 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0151049c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0151049a0, 0xc00f4a3910) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001db6320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01bd16a80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001db6398?, 0x3b9aca00, 0x0, 0x0?, 0x1fb6c15b9548?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001db6320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104840, 0xc00ca17e00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61973 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015104bd8, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a4ac4a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015104bb0, 0xc00fbc08e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009108320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d1169c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009108398?, 0x3b9aca00, 0x0, 0x0?, 0x1e733d43acf9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009108320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104b00, 0xc01ce53400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61857 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00e6c0140, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61906 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61907 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4b40}, {0x7f7fb0611580, 0xc00560f970}, {0x5e003f8?, 0x572d880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c6147e0, {0x0?, 0x0?}, 0xc00e227560, 0xc00e134a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c6147e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951dcc0?, {0x5d9c8a0, 0xc00e6c0370}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c6147e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63722 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c6147e0, 0xc00e227560, 0xc00bffa180, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78519 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c859248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c859238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c859230, {0xc00ee75600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee75600?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430fb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430fb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430fb80, {0x4f3b7c0, 0xc023b8ad80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fc030, {0xc011f85400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfecf00, 0x5dd4e28?, {0x5dbd7f0, 0xc0236b4bc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e2580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78529 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859b00, 0xc023461400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01dc6bfc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77636 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da6000, 0xc0058be100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61912 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00e6c02d0, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61913 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61914 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d012c0}, {0x7f7fb0611580, 0xc00560fa20}, {0x5e003f8?, 0x572d500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c6149a0, {0x0?, 0x0?}, 0xc00e227560, 0xc00e134ce0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c6149a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00951dd00?, {0x5d9c8a0, 0xc00e6c0500}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c6149a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63616 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c6149a0, 0xc00e227560, 0xc00b439020, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78451 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001528bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6930, {0xc001408000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001408000?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf1040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf1040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf1040, {0x4f3b7c0, 0xc023947f38}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f6ab230, {0xc00a185800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13c70, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32f0c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32f080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78905 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c7281c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c7281b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c7281b0, {0xc009c29600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c29600?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3540, {0x4f3b7c0, 0xc023dc7128}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0234a6210, {0xc00da9a800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07c20, 0x6f3a66222c7d7b3a?, {0x5dbd7f0, 0xc01f16d880}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16d7c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71063 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0228f4738?, {0x5d9c8c0, 0xc022eec210}, 0x1, 0xc022e95da0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0228f47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc022ecbd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61940 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015104a78, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015104a50, 0xc00f4a3e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc001db63c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01bd16d80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc001db6438?, 0x3b9aca00, 0x0, 0x0?, 0x205dc21d11ba?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc001db63c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151048f0, 0xc00cdf5700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61933 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00d9e6280, 0xc00b318fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61934 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61935 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51700}, {0x7f7fb0611580, 0xc0151046e0}, {0x5e003f8?, 0x572ce00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50700, {0x0?, 0x0?}, 0xc00e227560, 0xc00ed547c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008f84b00?, {0x5d9c8a0, 0xc00d9e6780}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64032 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50700, 0xc00e227560, 0xc006627920, 0xc00b323890?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78237 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00ab1de48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00ab1de38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00ab1de30, {0xc00a3aae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aae00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f5563c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f5563c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f5563c0, {0x4f3b7c0, 0xc01d611188}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023652870, {0xc01f819800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6960, 0x5dd4e28?, {0x5dbd7f0, 0xc01f98df40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0239399e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98df00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67435 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000adbf38?, {0x5d9c8c0, 0xc01dfe16b0}, 0x1, 0xc0166db620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc000adbfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01683b0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61943 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00d9e6aa0, 0xc00644b7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61944 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61945 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f795440}, {0x7f7fb0611580, 0xc0151049a0}, {0x5e003f8?, 0x572df80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce508c0, {0x0?, 0x0?}, 0xc00e227560, 0xc00ed55040?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce508c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008f85200?, {0x5d9c8a0, 0xc00d9e6cd0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce508c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64250 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce508c0, 0xc00e227560, 0xc00505fce0, 0xc00b691bf0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78690 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc022200948, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f7953c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc022200930, {0xc000083801, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000083801?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04500, {0x4f3b7c0, 0xc01d610cf0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd6150, {0xc003b60800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073810, 0xc00691cc80?, {0x5dbd7f0, 0xc01f98c0c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f795440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64565 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01f9ae738?, {0x5d9c8c0, 0xc00451bbf0}, 0x1, 0xc00bc42840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01f9ae7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a027a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72117 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca790, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61950 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc00d9e6c30, 0xc00a81afb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61951 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61952 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc49c0}, {0x7f7fb0611580, 0xc015104a50}, {0x5e003f8?, 0x572dc00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50a80, {0x0?, 0x0?}, 0xc00e227560, 0xc00ed55320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008f85700?, {0x5d9c8a0, 0xc00d9e70e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64255 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50a80, 0xc00e227560, 0xc013bda3c0, 0xc00a892e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78035 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad53c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad53b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad53b0, {0xc00ad5d600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5d600?, 0x3?, 0x7f7fe04aa800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3a780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3a780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3a780, {0x4f3b7c0, 0xc023fb4408}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f6ab3b0, {0xc009c27400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad0cd0, 0xc02393e000?, {0x5dbd7f0, 0xc01f379180}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de1c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f379140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66014 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc010ddc990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61752 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8918, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e88f0, 0xc00d664d10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00d950960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cb32450}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00d9509d8?, 0x3b9aca00, 0x0, 0x0?, 0x22c2cc194d1f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00d950960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8790, 0xc00b437d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61992 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8c88, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e8c60, 0xc00d6654d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a812d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cd3e360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a812d98?, 0x3b9aca00, 0x0, 0x0?, 0x1e5b189a7a89?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a812d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e89a0, 0xc00a6cc500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61994 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8de8, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f74a00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e8dc0, 0xc00d665b50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a812fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cd3e960}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a813018?, 0x3b9aca00, 0x0, 0x0?, 0x22fa7deedff6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a812fa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8b00, 0xc01acf6600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61755 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc010de7b80, 0xc00b4c47b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61756 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61757 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5700}, {0x7f7fb0611580, 0xc0053e8840}, {0x5e003f8?, 0x572e680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc004fafea0, {0x0?, 0x0?}, 0xc00e227560, 0xc010e7e4a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc004fafea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007a128c0?, {0x5d9c8a0, 0xc010de7db0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc004fafea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64590 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc004fafea0, 0xc00e227560, 0xc005174240, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78565 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb9248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01afc5bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb9230, {0xc00e482400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e482400?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181040, {0x4f3b7c0, 0xc01d237470}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f8054a0, {0xc00ae74800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c067d0, 0x5dd4e28?, {0x5dbd7f0, 0xc01f16d840}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16d800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72188 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064164d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197da40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61993 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8d38, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e8d10, 0xc00d665820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a812f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cd3e660}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a812f78?, 0x3b9aca00, 0x0, 0x0?, 0x1f93270e6bdc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a812f00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e8a50, 0xc00ec3c700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61986 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc010de7d10, 0xc00b4c5fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61987 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61988 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16de00}, {0x7f7fb0611580, 0xc0053e88f0}, {0x5e003f8?, 0x572e300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb880e0, {0x0?, 0x0?}, 0xc00e227560, 0xc010e7e840?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb880e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007a13100?, {0x5d9c8a0, 0xc010de7f40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb880e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64492 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb880e0, 0xc00e227560, 0xc010e1d3e0, 0xc013c32960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78569 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012870f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870f30, {0xc00e483400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e483400?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181680, {0x4f3b7c0, 0xc01d237620}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f805f20, {0xc0151f1800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06a50, 0x5dd4e28?, {0x5dbd7f0, 0xc01f16de40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16de00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78696 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632300, 0xc023f29900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc011bde6c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61921 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560fc58, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560fc30, 0xc00fa5ebb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00b8abf40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf9fda0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00b8abfb8?, 0x3b9aca00, 0x0, 0x0?, 0x1e7b442731c4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00b8abf40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560fad0, 0xc01c9e2900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78078 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fb0c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fb0b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fb0b0, {0xc01ff89e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff89e00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2c500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2c500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2c500, {0x4f3b7c0, 0xc00b0807e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023aee7b0, {0xc0191e6000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c370, 0x5dd4e28?, {0x5dbd7f0, 0xc023f506c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61997 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01cb987d0, 0xc00b3167b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61998 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61999 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6980}, {0x7f7fb0611580, 0xc0053e8c60}, {0x5e003f8?, 0x575b8e0}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb882a0, {0x0?, 0x0?}, 0xc00e227560, 0xc013432820?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb882a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009990080?, {0x5d9c8a0, 0xc01cb98b90}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb882a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61919 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb882a0, 0xc00e227560, 0xc009b19440, 0xc00b63cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78291 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01afd9bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84930, {0xc0207aaa00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207aaa00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73d680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73d680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73d680, {0x4f3b7c0, 0xc023946cc0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f346690, {0xc009c27000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c135e0, 0xc01d0899b0?, {0x5dbd7f0, 0xc01f3f58c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236bec20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78958 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fffc4c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fffc4b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fffc4b0, {0xc01ff88c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01ff88c00?, 0x3?, 0x37e69e100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05900, {0x4f3b7c0, 0xc023b8b1d0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7a7ec0, {0xc005c67800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f545f0, 0xc011f700c0?, {0x5dbd7f0, 0xc01f3f5300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4acbe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65414 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b319738?, {0x5d9c8c0, 0xc00f171e60}, 0x1, 0xc00ed25d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b3197b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ccf73b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62004 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01cb98960, 0xc00bf0bfc1?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62005 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62006 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f379140}, {0x7f7fb0611580, 0xc0053e8d10}, {0x5e003f8?, 0x572ea00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb88460, {0x0?, 0x0?}, 0xc00e227560, 0xc013432ae0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb88460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099900c0?, {0x5d9c8a0, 0xc01cb98c80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb88460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64606 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb88460, 0xc00e227560, 0xc009ddc5a0, 0xc00bce90b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78520 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0124224c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f202bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0124224b0, {0xc00c5f4000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00c5f4000?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180140, {0x4f3b7c0, 0xc01d236030}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023dda270, {0xc0101d4800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06050, 0xc01d287b90?, {0x5dbd7f0, 0xc01f16c180}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16c140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72472 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a075d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0114453e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72252 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca090, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62011 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01cb98af0, 0xc00a892e51?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62012 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62013 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6a1c0}, {0x7f7fb0611580, 0xc0053e8dc0}, {0x5e003f8?, 0x5758620}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb88620, {0x0?, 0x0?}, 0xc00e227560, 0xc013432da0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb88620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099904c0?, {0x5d9c8a0, 0xc01cb98e10}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb88620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61723 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb88620, 0xc00e227560, 0xc0115f0720, 0xc00adfad68?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62034 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560fd08, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560fce0, 0xc00fa5eed0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cfaa0f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986078?, 0x3b9aca00, 0x0, 0x0?, 0x1f1952087ebd?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00560fb80, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68268 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc004b31f38?, {0x5d9c8c0, 0xc018fb4450}, 0x1, 0xc018beb3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc004b31fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018f97830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62226 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62055 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9c3200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62037 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01cc14b90, 0xc001a7f7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62038 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62039 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f795f80}, {0x7f7fb0611580, 0xc00560fc30}, {0x5e003f8?, 0x572fb80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c614c40, {0x0?, 0x0?}, 0xc00e227560, 0xc0132c4ee0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c614c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00e6e4fc0?, {0x5d9c8a0, 0xc01cc14dc0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c614c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64769 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c614c40, 0xc00e227560, 0xc009a265a0, 0xc00a892e40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78623 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58aac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58aab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58aab0, {0xc00b0b8400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b8400?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afcc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afcc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afcc80, {0x4f3b7c0, 0xc01d236228}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f741470, {0xc008d16c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c190, 0xc011f700c0?, {0x5dbd7f0, 0xc023b106c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80c6a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65653 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00c911830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62043 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc001a7d738?, {0x5d9c8c0, 0xc01cfaa3c0}, 0x1, 0xc009d5aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9c26c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62044 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9c26c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62054 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b99ff38?, {0x5d9c8c0, 0xc01cfaa870}, 0x1, 0xc009d5b140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x20?, 0xc00b99ff88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9c3200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62046 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01cc14d20, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62047 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62048 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09980}, {0x7f7fb0611580, 0xc00560fce0}, {0x5e003f8?, 0x572ff00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c614ee0, {0x0?, 0x0?}, 0xc00e227560, 0xc0132c51a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c614ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00e6e5140?, {0x5d9c8a0, 0xc01cc14fa0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c614ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64810 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c614ee0, 0xc00e227560, 0xc00be19980, 0x726f747320796220?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78216 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f2619c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f2619b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f2619b0, {0xc023e0b600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0b600?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6000, {0x4f3b7c0, 0xc00d1270c8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafd8f0, {0xc009943000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072960, 0x5dd4e28?, {0x5dbd7f0, 0xc01df09a40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65642 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00cde0990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62052 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0099daf38?, {0x5d9c8c0, 0xc01cfaa3f0}, 0x1, 0xc009d5ab40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9c2c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62053 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9c2c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61975 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d005b30, 0xc00a12d320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61976 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61977 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5ec0}, {0x7f7fb0611580, 0xc015104bb0}, {0x5e003f8?, 0x5730600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50d20, {0x0?, 0x0?}, 0xc00e227560, 0xc01394f3e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ced4300?, {0x5d9c8a0, 0xc01d005b80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78373 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200a80, 0xc023940500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09c40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61980 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015104d38, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015104d10, 0xc00fbc0d30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009108500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d1b02a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009108578?, 0x3b9aca00, 0x0, 0x0?, 0x1d7b25cd5a4e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009108500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104c60, 0xc01ce53700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64880 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50d20, 0xc00e227560, 0xc00b5b36e0, 0xc00bce90b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78578 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394ec48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394ec38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394ec30, {0xc009c28c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c28c00?, 0x3?, 0x3813e9800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a2500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a2500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a2500, {0x4f3b7c0, 0xc023fb51a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b19770, {0xc008762000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019452050, 0x2?, {0x5dbd7f0, 0xc0236b5f00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e3520) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62056 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0081c1f38?, {0x5d9c8c0, 0xc01cfaa8a0}, 0x1, 0xc009d5b1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc019eb0568?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9c3320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62057 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9c3320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62058 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b8c7f38?, {0x5d9c8c0, 0xc01cfaa8d0}, 0x1, 0xc009d5b200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b8c7fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9c33b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62059 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9c33b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78283 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd8780, 0xc00a187b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62073 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e8f20, 0xc00fb7a670) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00a813900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cd64b70}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00a813978?, 0x3b9aca00, 0x0, 0x0?, 0x21c67167dbf7?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00a813900, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104dc0, 0xc01ce53c00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61983 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d005e00, 0xc007277901?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61984 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 61985 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4480}, {0x7f7fb0611580, 0xc015104d10}, {0x5e003f8?, 0x5730280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce50ee0, {0x0?, 0x0?}, 0xc00e227560, 0xc01394fd60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce50ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ced4d00?, {0x5d9c8a0, 0xc01d005ea0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce50ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65028 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce50ee0, 0xc00e227560, 0xc00af03800, 0xc00bce90b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78514 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c858ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c858ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c858ab0, {0xc00ee75200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee75200?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430f540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430f540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430f540, {0x4f3b7c0, 0xc023b8a8b8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0236f2f00, {0xc011f85000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfecaf0, 0xc011f700c0?, {0x5dbd7f0, 0xc0236b4500}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e20c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65379 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00cce63f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70751 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01c9d6738?, {0x5d9c8c0, 0xc0221b5770}, 0x1, 0xc0221aa7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01c9d67b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0228a4ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66029 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc011fbefc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72244 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca190, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62026 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b4410, 0xc00b3147b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62027 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62028 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cac680}, {0x7f7fb0611580, 0xc0053e8f20}, {0x5e003f8?, 0x5730d00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb888c0, {0x0?, 0x0?}, 0xc00e227560, 0xc013433b80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb888c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc009990e00?, {0x5d9c8a0, 0xc01cd44820}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb888c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65062 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb888c0, 0xc00e227560, 0xc00a7705a0, 0xc0025e26f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78535 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012422948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012422938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012422930, {0xc0004b0600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0004b0600?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefc640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefc640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefc640, {0x4f3b7c0, 0xc023b8a090}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fc390, {0xc00e596c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca140, 0x5dd4e28?, {0x5dbd7f0, 0xc023cac400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cac3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62075 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e8ff8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e8fd0, 0xc0109335c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c864500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d4aef00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c864578?, 0x3b9aca00, 0x0, 0x0?, 0x1ed77c838f65?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c864500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104e70, 0xc01ce53f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65163 [IO wait]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb84e7f40, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc0127a3e80?, 0xc00e721000?, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Read(0xc0127a3e80, {0xc00e721000, 0x1000, 0x1000}) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:167 +0x299 +[controller:test-integration-envtest] net.(*netFD).Read(0xc0127a3e80, {0xc00e721000?, 0xc01173f918?, 0xc01ac31658?}) +[controller:test-integration-envtest] /usr/local/go/src/net/fd_posix.go:55 +0x29 +[controller:test-integration-envtest] net.(*conn).Read(0xc01f8a7738, {0xc00e721000?, 0xc00bdb2790?, 0x2c?}) +[controller:test-integration-envtest] /usr/local/go/src/net/net.go:183 +0x45 +[controller:test-integration-envtest] crypto/tls.(*atLeastReader).Read(0xc01d611548, {0xc00e721000?, 0xc01d611548?, 0x0?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:788 +0x3d +[controller:test-integration-envtest] bytes.(*Buffer).ReadFrom(0xc01fcc6290, {0x5d97be0, 0xc01d611548}) +[controller:test-integration-envtest] /usr/local/go/src/bytes/buffer.go:202 +0x98 +[controller:test-integration-envtest] crypto/tls.(*Conn).readFromUntil(0xc01fcc6000, {0x5d9cd20?, 0xc01f8a7738}, 0x4b14a6?) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:810 +0xe5 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecordOrCCS(0xc01fcc6000, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:617 +0x116 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecord(...) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:583 +[controller:test-integration-envtest] crypto/tls.(*Conn).Read(0xc01fcc6000, {0xc00bf3b000, 0x1000, 0x885a1e0?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:1316 +0x16f +[controller:test-integration-envtest] net/http.(*connReader).Read(0xc00cd257d0, {0xc00bf3b000, 0x1000, 0x1000}) +[controller:test-integration-envtest] /usr/local/go/src/net/http/server.go:782 +0x171 +[controller:test-integration-envtest] bufio.(*Reader).fill(0xc014d09260) +[controller:test-integration-envtest] /usr/local/go/src/bufio/bufio.go:106 +0xff +[controller:test-integration-envtest] bufio.(*Reader).Peek(0xc014d09260, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/bufio/bufio.go:144 +0x5d +[controller:test-integration-envtest] net/http.(*conn).serve(0xc00e3086c0, {0x5dd1d18, 0xc013652a50}) +[controller:test-integration-envtest] /usr/local/go/src/net/http/server.go:2030 +0x77c +[controller:test-integration-envtest] created by net/http.(*Server).Serve +[controller:test-integration-envtest] /usr/local/go/src/net/http/server.go:3089 +0x5ed +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62105 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b4640, 0xc002dae191?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62106 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62107 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d00380}, {0x7f7fb0611580, 0xc0053e8fd0}, {0x5e003f8?, 0x5730980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb88c40, {0x0?, 0x0?}, 0xc00e227560, 0xc013c51c80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb88c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007272080?, {0x5d9c8a0, 0xc01cd44ff0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb88c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65071 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb88c40, 0xc00e227560, 0xc00a777260, 0xc013c32960?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78418 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad44c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad44b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad44b0, {0xc01e0db200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e0db200?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e1900, {0x4f3b7c0, 0xc023c5ab88}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf3bc0, {0xc003104800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d6d0, 0x5dd4e28?, {0x5dbd7f0, 0xc023b11f80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8ad40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11f40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62112 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00abb1680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62076 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015104ff8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015104fd0, 0xc00fbc14d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009108960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d60c570}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0091089d8?, 0x3b9aca00, 0x0, 0x0?, 0x1f1febfbbb47?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009108960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015104f20, 0xc008893200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62165 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560fe68, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560fe40, 0xc010224c90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cfff110}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986b18?, 0x3b9aca00, 0x0, 0x0?, 0x1f962d277458?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986aa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105080, 0xc00a77d7a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62078 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b47d0, 0xc002dae191?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62079 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62080 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b4cc0}, {0x7f7fb0611580, 0xc015104fd0}, {0x5e003f8?, 0x5731400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce510a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0108d8ce0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce510a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ced5dc0?, {0x5d9c8a0, 0xc01d1b4820}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce510a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65267 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce510a0, 0xc00e227560, 0xc00cb91ec0, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78160 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c3080, 0xc00a186400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c9c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78575 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0128710c8, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f82c200?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0128710b0, {0xc00a6f8601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a6f8601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180280, {0x4f3b7c0, 0xc023e5ed50}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393e4b0, {0xc01aa2c400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c060f0, 0xc0150df080?, {0x5dbd7f0, 0xc023f51ac0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32ea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82c280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62166 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560ff18, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560fef0, 0xc010224fb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cfff410}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986bb8?, 0x3b9aca00, 0x0, 0x0?, 0x215991ef58bd?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986b40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105130, 0xc00a6cd900?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62167 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0001485a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000148580, 0xc010225260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986be0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cfff710}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986c58?, 0x3b9aca00, 0x0, 0x0?, 0x1dcafc4c15b4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986be0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151051e0, 0xc002afab00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62168 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000149158, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000149130, 0xc010225620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cfffa40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986cf8?, 0x3b9aca00, 0x0, 0x0?, 0x1de15916a6f3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986c80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105290, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62169 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00560fdb8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00560fd90, 0xc010224a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cffee40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986a78?, 0x3b9aca00, 0x0, 0x0?, 0x1de9abe78624?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986a00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105340, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62170 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015105af8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015105ad0, 0xc00fde2120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0091094a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d7ff9b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc009109518?, 0x3b9aca00, 0x0, 0x0?, 0x1eaa206a980b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0091094a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151053f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62171 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015105ba8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015105b80, 0xc00fde23d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009109540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d7ffcb0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0091095b8?, 0x3b9aca00, 0x0, 0x0?, 0x1fc9af26e503?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009109540, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151054a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62172 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300188, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300160, 0xc01036c580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d535c20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010987018?, 0x3b9aca00, 0x0, 0x0?, 0x1e758ad2e696?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986fa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105550, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62173 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f3002e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f3002c0, 0xc01036c9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d535f20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0109870b8?, 0x3b9aca00, 0x0, 0x0?, 0x1fbf8d6fb9a8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987040, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105600, 0x656d6f7320736120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62174 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300398, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300370, 0xc01036cd10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0109870e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d552240}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010987158?, 0x3b9aca00, 0x0, 0x0?, 0x1e0b13fb81be?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0109870e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151056b0, 0x65707974222c2274?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62116 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b51d0, 0xc00e1f0cc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62117 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62175 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300448, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300420, 0xc01036cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d552540}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0109871f8?, 0x3b9aca00, 0x0, 0x0?, 0x1f531d83682a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105760, 0x6567616e616d227b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62118 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794e80}, {0x7f7fb0611580, 0xc00560fd90}, {0x5e003f8?, 0x5732c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c6157a0, {0x0?, 0x0?}, 0xc00e227560, 0xc012d82300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c6157a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b836580?, {0x5d9c8a0, 0xc01cc15a40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c6157a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65411 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c6157a0, 0xc00e227560, 0xc00e0da9c0, 0xc013c32a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62176 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f3004f8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f3004d0, 0xc01036d340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d552840}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010987298?, 0x3b9aca00, 0x0, 0x0?, 0x1e2595f0af21?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987220, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105810, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62177 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f3000d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f3000b0, 0xc010225ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d5358f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986f78?, 0x3b9aca00, 0x0, 0x0?, 0x1ed3502c8593?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986f00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0151058c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62225 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d5104b0, 0xc01d4de7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62122 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b4b90, 0xc00b8c7fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62123 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62124 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16d800}, {0x7f7fb0611580, 0xc00560fe40}, {0x5e003f8?, 0x5731080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c615960, {0x0?, 0x0?}, 0xc00e227560, 0xc012d825a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c615960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b8366c0?, {0x5d9c8a0, 0xc01cc15b30}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c615960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65454 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c615960, 0xc00e227560, 0xc00e4920c0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62178 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc015105c58, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc015105c30, 0xc00fde2700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc009109680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d7fffb0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0091096f8?, 0x3b9aca00, 0x0, 0x0?, 0x1fe71b028ca3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc009109680, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105970, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78496 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb93c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012eb93b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb93b0, {0xc001ccce00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccce00?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3bcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3bcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3bcc0, {0x4f3b7c0, 0xc01d5886f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eaccc60, {0xc00e0b0400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062cba40, 0x2?, {0x5dbd7f0, 0xc01f82cdc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32e1c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82cc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67160 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc016089cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62128 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b8cbf38?, {0x5d9c8c0, 0xc01cfffd10}, 0x1, 0xc00bfbb140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b8cbfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aee7a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62129 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aee7a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62508 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5740}, {0x7f7fb0611580, 0xc0058b4370}, {0x5e003f8?, 0x573c300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00d685ce0, {0x0?, 0x0?}, 0xc00e227560, 0xc0104efe40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00d685ce0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0060eb940?, {0x5d9c8a0, 0xc01d2811d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00d685ce0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62195 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b4d20, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62196 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62179 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f3007b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300790, 0xc01036d950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d553c80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010987478?, 0x3b9aca00, 0x0, 0x0?, 0x1fea15a7aed9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987400, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc015105a20, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62197 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63540}, {0x7f7fb0611580, 0xc00560fef0}, {0x5e003f8?, 0x5731780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c615b20, {0x0?, 0x0?}, 0xc00e227560, 0xc011960a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c615b20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b836880?, {0x5d9c8a0, 0xc01cc15d10}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c615b20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65464 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c615b20, 0xc00e227560, 0xc0108c6ba0, 0xc013c32a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62312 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300b28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300b00, 0xc010a183b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc0109877c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d89d590}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010987838?, 0x3b9aca00, 0x0, 0x0?, 0x1eb6c56f2004?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc0109877c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f3008f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62182 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5360, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62183 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66732 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf9d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063c20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62222 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000149368, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000149340, 0xc010225bb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010986e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d535590}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010986ed8?, 0x3b9aca00, 0x0, 0x0?, 0x1e67910b8422?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010986e60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0001491e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62202 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b4eb0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62203 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62204 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b10e80}, {0x7f7fb0611580, 0xc000148580}, {0x5e003f8?, 0x5732200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c615ce0, {0x0?, 0x0?}, 0xc00e227560, 0xc012d82b20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c615ce0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b836e80?, {0x5d9c8a0, 0xc01cc15ea0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c615ce0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66051 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c615ce0, 0xc00e227560, 0xc01383f140, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78333 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad4048, 0x5) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b11680?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad4030, {0xc012040001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc012040001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0237e0f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0237e0f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0237e0f00, {0x4f3b7c0, 0xc023e5ed98}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf26c0, {0xc00ab59c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d4a0, 0xc0150df100?, {0x5dbd7f0, 0xc023f51b00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8a840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66876 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf6d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130634a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62208 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d806738?, {0x5d9c8c0, 0xc01cfffd40}, 0x1, 0xc00bfbb1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc011d1d5c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aa067e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62209 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aa067e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67558 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc016b030e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62211 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d521f38?, {0x5d9c8c0, 0xc01d534b70}, 0x1, 0xc00bfbb200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc011452090?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aa06870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62212 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aa06870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62294 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300708, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f3006e0, 0xc01036d680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d553950}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0109873d8?, 0x3b9aca00, 0x0, 0x0?, 0x23491a58e53e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987360, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f300580, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62214 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5040, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62215 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62216 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98ce00}, {0x7f7fb0611580, 0xc000149130}, {0x5e003f8?, 0x5732580}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc00c615ea0, {0x0?, 0x0?}, 0xc00e227560, 0xc012d82e20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc00c615ea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b837040?, {0x5d9c8a0, 0xc01d510190}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc00c615ea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66218 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc00c615ea0, 0xc00e227560, 0xc01067a240, 0xc0025e26f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68327 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018fe4e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66554 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc014a34000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62220 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d802738?, {0x5d9c8c0, 0xc01d535530}, 0x1, 0xc00bfbb4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aa06fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62221 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aa06fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62184 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2c980}, {0x7f7fb0611580, 0xc015105ad0}, {0x5e003f8?, 0x5733700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce51260, {0x0?, 0x0?}, 0xc00e227560, 0xc0108d9760?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce51260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008982b80?, {0x5d9c8a0, 0xc01d80e280}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce51260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62227 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc016e96d40}, {0x7f7fb0611580, 0xc000149340}, {0x5e003f8?, 0x5735680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d5220e0, {0x0?, 0x0?}, 0xc00e227560, 0xc012d833c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d5220e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b837280?, {0x5d9c8a0, 0xc01d510690}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d5220e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65350 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d5220e0, 0xc00e227560, 0xc010700540, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65655 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce51260, 0xc00e227560, 0xc00f8d33e0, 0xc013c32a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65994 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc010b5d3b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78414 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da70c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010da70b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da70b0, {0xc008138e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008138e00?, 0x3?, 0x37ea98600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefc000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefc000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefc000, {0x4f3b7c0, 0xc023dc6480}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3afec0, {0xc00b8c2c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca9b0, 0x2?, {0x5dbd7f0, 0xc023c2c9c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfece0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2c980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78951 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee01c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee01b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee01b0, {0xc023cc2a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc2a00?, 0x3?, 0x37e71c100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912780, {0x4f3b7c0, 0xc023e5e348}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9a000, {0xc011ec7800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835dd10, 0x2?, {0x5dbd7f0, 0xc023f50b00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab809e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50ac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62472 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6cf158, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6cf130, 0xc0106e89d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00dad83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01df40660}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00dad8438?, 0x3b9aca00, 0x0, 0x0?, 0x1f9951091bed?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00dad83c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f3014a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62189 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b54f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62190 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62191 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d0c0}, {0x7f7fb0611580, 0xc015105b80}, {0x5e003f8?, 0x5733380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce51420, {0x0?, 0x0?}, 0xc00e227560, 0xc0108d9a40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce51420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008982cc0?, {0x5d9c8a0, 0xc01d80e410}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce51420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65772 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce51420, 0xc00e227560, 0xc010c20cc0, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67557 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01382e738?, {0x5d9c8c0, 0xc01ea9a150}, 0x1, 0xc016afe720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01382e7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc016b030e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72627 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a076d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72731 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62234 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5e50, 0xc00bfbb200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62235 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62236 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c480}, {0x7f7fb0611580, 0xc00f3000b0}, {0x5e003f8?, 0x5735300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d5222a0, {0x0?, 0x0?}, 0xc00e227560, 0xc012d836c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d5222a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b837380?, {0x5d9c8a0, 0xc01d510960}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d5222a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66096 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d5222a0, 0xc00e227560, 0xc01222b500, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78627 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c7293c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c7293b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c7293b0, {0xc009c29e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c29e00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3680, {0x4f3b7c0, 0xc023e5e3c0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f2729c0, {0xc01a7b8800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019452910, 0x5dd4e28?, {0x5dbd7f0, 0xc01f98cb40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacebe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98ca80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66553 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000ad7f38?, {0x5d9c8c0, 0xc01cd3fec0}, 0x1, 0xc013cac9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc000ad7fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc014a34000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62606 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d8ffc70, 0xc00a4157b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62244 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d80e000, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62245 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62246 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cad100}, {0x7f7fb0611580, 0xc015105c30}, {0x5e003f8?, 0x5734f80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce515e0, {0x0?, 0x0?}, 0xc00e227560, 0xc0108d9d60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce515e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc008982e00?, {0x5d9c8a0, 0xc01d80e5a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce515e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66384 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce515e0, 0xc00e227560, 0xc014f1fb00, 0xc013c32a20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62240 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d54bf38?, {0x5d9c8c0, 0xc01d552b10}, 0x1, 0xc00a22eae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b14aa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62241 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b14aa20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77946 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632d80, 0xc02043db00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e31b4c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66900 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d522d20, 0xc00e227560, 0xc014c660c0, 0x2065636e65726566?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62260 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5680, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62261 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62262 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023b11d00}, {0x7f7fb0611580, 0xc00f300160}, {0x5e003f8?, 0x5733a80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d522460, {0x0?, 0x0?}, 0xc00e227560, 0xc012d839a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d522460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b837840?, {0x5d9c8a0, 0xc01d510be0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d522460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66345 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d522460, 0xc00e227560, 0xc014543d40, 0xc00b691bf0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72437 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62298 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cac3c0}, {0x7f7fb0611580, 0xc00f3006e0}, {0x5e003f8?, 0x5736100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d522d20, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d0860?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d522d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4e4c0?, {0x5d9c8a0, 0xc01d511540}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d522d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62267 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5810, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62268 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62269 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16db80}, {0x7f7fb0611580, 0xc00f3002c0}, {0x5e003f8?, 0x5734500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d522620, {0x0?, 0x0?}, 0xc00e227560, 0xc012d83c60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d522620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b8379c0?, {0x5d9c8a0, 0xc01d510d70}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d522620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66423 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d522620, 0xc00e227560, 0xc0136786c0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72621 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bffd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62297 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62274 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b59a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62275 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62276 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d01680}, {0x7f7fb0611580, 0xc00f300370}, {0x5e003f8?, 0x5734180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d5227e0, {0x0?, 0x0?}, 0xc00e227560, 0xc012d83fa0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d5227e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b837dc0?, {0x5d9c8a0, 0xc01d510f00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d5227e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66664 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d5227e0, 0xc00e227560, 0xc014243140, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78338 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d85548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d85538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d85530, {0xc023cc2200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc2200?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf0000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf0000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf0000, {0x4f3b7c0, 0xc00e381e90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9a930, {0xc00073d400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55180, 0x6564227b3a22676f?, {0x5dbd7f0, 0xc0234c7940}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e749e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c7900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78652 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b15080, 0xc0237f1b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62296 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d5114f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62281 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5b30, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62282 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62283 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98dcc0}, {0x7f7fb0611580, 0xc00f300420}, {0x5e003f8?, 0x5734c00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d5229a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d0260?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d5229a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4e1c0?, {0x5d9c8a0, 0xc01d511090}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d5229a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66707 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d5229a0, 0xc00e227560, 0xc0141d6e40, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78249 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c729cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00170fbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c729cb0, {0xc01f2fe600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2fe600?, 0x3?, 0x37e89e700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73c280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73c280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73c280, {0x4f3b7c0, 0xc0239463c0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc007ab9f80, {0xc023e2fc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13180, 0x2?, {0x5dbd7f0, 0xc01f3f4c00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236be3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68326 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01800ff38?, {0x5d9c8c0, 0xc018ffa060}, 0x1, 0xc018fdcc60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x4d202e657361436c?, 0x3b9aca00, 0x0, 0x2f?, 0x6d6f632f6f692e73?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018fe4e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67543 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf050, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130623c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62288 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d1b5cc0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62289 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62290 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d00c80}, {0x7f7fb0611580, 0xc00f3004d0}, {0x5e003f8?, 0x5734880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d522b60, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d0520?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d522b60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4e2c0?, {0x5d9c8a0, 0xc01d511220}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d522b60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66605 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d522b60, 0xc00e227560, 0xc013f809c0, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78620 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58a348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01b182bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58a330, {0xc00b0b8200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b8200?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afc280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afc280) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afc280, {0x4f3b7c0, 0xc01d2360a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740510, {0xc008d16400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c050, 0xc011f700c0?, {0x5dbd7f0, 0xc023b10400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80c340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b103c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72800 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf110, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78603 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f261248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f261238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f261230, {0xc00f5dc800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00f5dc800?, 0x3?, 0x7f7fe04a9100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab1180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab1180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab1180, {0x4f3b7c0, 0xc0234cabe8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023aeed80, {0xc0110c7800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190732c0, 0xc011f700c0?, {0x5dbd7f0, 0xc01f794c80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f794c40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78556 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00032b800, 0xc02043d200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b54c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62311 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300a78, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300a50, 0xc010a18100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d89d290}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc010987798?, 0x3b9aca00, 0x0, 0x0?, 0x1d7ef235d955?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987720, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f300840, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62304 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d80e190, 0xc01d800fd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62305 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62306 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4bc0}, {0x7f7fb0611580, 0xc00f300790}, {0x5e003f8?, 0x5735a00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d522ee0, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d0b40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d522ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4e5c0?, {0x5d9c8a0, 0xc01d511770}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d522ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66364 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d522ee0, 0xc00e227560, 0xc00bbe6f60, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79032 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f632f00, 0xc023941300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67258 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc015ff2240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66872 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01417d710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62313 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f300c88, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f300c60, 0xc010a187e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc010987860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d89d890}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0109878d8?, 0x3b9aca00, 0x0, 0x0?, 0x224e1c50428f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc010987860, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f3009a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78483 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012422780, 0xc01f0d0d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3787c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62475 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6cf2b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6cf290, 0xc0106e8f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00dad85a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01df40c00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00dad8618?, 0x3b9aca00, 0x0, 0x0?, 0x237a8599fe69?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00dad85a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301760, 0xc01d550700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62316 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d511ae0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62317 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62318 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69eb80}, {0x7f7fb0611580, 0xc00f300a50}, {0x5e003f8?, 0x5736480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d5230a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d0fe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d5230a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4e7c0?, {0x5d9c8a0, 0xc01d511ea0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d5230a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66841 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d5230a0, 0xc00e227560, 0xc01466fec0, 0xc01514e240?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78136 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b8048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01acc7bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b8030, {0xc01f2fee00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2fee00?, 0x3?, 0x37effa600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4500, {0x4f3b7c0, 0xc01d6100d8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00a4686f0, {0xc023e2f000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54140, 0x2?, {0x5dbd7f0, 0xc023e62380}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e62340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78558 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394e480, 0xc02043d500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b5700?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62474 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6cf208, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6cf1e0, 0xc0106e8c90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00dad8500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01df40930}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00dad8578?, 0x3b9aca00, 0x0, 0x0?, 0x20b2eb6f51f2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00dad8500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301600, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62323 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d511c70, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62324 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62325 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82db80}, {0x7f7fb0611580, 0xc00f300b00}, {0x5e003f8?, 0x5736f00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d523260, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d12c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d523260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4e8c0?, {0x5d9c8a0, 0xc01d8aa050}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d523260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66463 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d523260, 0xc00e227560, 0xc01355be00, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78774 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fffc300, 0xc0058c6100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc00d8c0b40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67159 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc014a5d738?, {0x5d9c8c0, 0xc01e515470}, 0x1, 0xc015af6840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc014a5d7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc016089cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62329 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d56b738?, {0x5d9c8c0, 0xc01d89db60}, 0x1, 0xc00a6977a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b105cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62330 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b105cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62331 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d56bf38?, {0x5d9c8c0, 0xc01d89dcb0}, 0x1, 0xc00a697860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x5201e60?, 0x3b9aca00, 0x0, 0x48?, 0xc00a6971a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b105d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62332 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b105d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62473 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4448, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4420, 0xc00faa5a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316a320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d2ae3c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316a398?, 0x3b9aca00, 0x0, 0x0?, 0x1e1573b72808?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316a320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301550, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62334 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d511e00, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62335 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62336 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08700}, {0x7f7fb0611580, 0xc00f300c60}, {0x5e003f8?, 0x5737280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d523420, {0x0?, 0x0?}, 0xc00e227560, 0xc0132d16a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d523420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ca4ed80?, {0x5d9c8a0, 0xc01d8aa280}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d523420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66692 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d523420, 0xc00e227560, 0xc013e8dce0, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78770 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0137447c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0137447b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0137447b0, {0xc01267da00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267da00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6f00, {0x4f3b7c0, 0xc00b081230}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bcb6b0, {0xc00ccaa400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb8b0, 0xc02393e000?, {0x5dbd7f0, 0xc023d01580}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d01540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67864 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc017c23560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62506 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df02820, 0xc00a417fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62152 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0053e9368, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0053e9340, 0xc00fe28dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c864f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01da07a40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c864f78?, 0x3b9aca00, 0x0, 0x0?, 0x1e128143914f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c864f00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9080, 0xc01d276d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62256 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d80eb40, 0xc00b5c1fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62257 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62386 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69e140}, {0x7f7fb0611580, 0xc015105d90}, {0x5e003f8?, 0x5737d00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce51a40, {0x0?, 0x0?}, 0xc00e227560, 0xc012f04c20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce51a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d310140?, {0x5d9c8a0, 0xc01d80ebe0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce51a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67081 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce51a40, 0xc00e227560, 0xc015a2ee40, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78611 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012871848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01d538bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012871830, {0xc009fd9800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd9800?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5540, {0x4f3b7c0, 0xc01d588a68}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacd920, {0xc0199f2c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab64b0, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f82d2c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32f3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67208 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfed0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78641 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84f00, 0xc00a187900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f4040?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72730 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67245 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb895e0, 0xc00e227560, 0xc016380ea0, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79042 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744000, 0xc0058c6300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc00fa5a000?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72391 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62378 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322000, 0xc00d63bf70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03b680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e195830}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03b6f8?, 0x3b9aca00, 0x0, 0x0?, 0x1fe53e059e7c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03b680, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0004c6000, 0xc01d551400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62419 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fa460, 0x6f20656d616e2073?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62420 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62421 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4dc0}, {0x7f7fb0611580, 0xc0053e9550}, {0x5e003f8?, 0x5738780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cb897a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0136dd0e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cb897a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b570a80?, {0x5d9c8a0, 0xc01d4fa9b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cb897a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67372 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cb897a0, 0xc00e227560, 0xc016756ba0, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78453 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x53ec22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6ab0, {0xc001408200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x6?}, {0xc001408200?, 0x155?, 0xc01da25c98?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf12c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf12c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf12c0, {0x4f3b7c0, 0xc023cc8000}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f6ab830, {0xc00a185c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13d10, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32f300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78495 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb9380, 0xc023941700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62452 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f3012b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f301290, 0xc0102bcdc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00bcd28c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01dc68db0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00bcd2938?, 0x3b9aca00, 0x0, 0x0?, 0x1fc4aabedd9b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00bcd28c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f300dc0, 0xc01d551b00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62397 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d80f270, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62398 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62399 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16d500}, {0x7f7fb0611580, 0xc015105ef0}, {0x5e003f8?, 0x574de80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ce51ea0, {0x0?, 0x0?}, 0xc00e227560, 0xc012f05780?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ce51ea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d310d40?, {0x5d9c8a0, 0xc01d80f2c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ce51ea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67496 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ce51ea0, 0xc00e227560, 0xc016c50ba0, 0xc0068f9920?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78557 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c859e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c859e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c859e30, {0xc009c28800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c28800?, 0x3?, 0x3813e9800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a2000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a2000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a2000, {0x4f3b7c0, 0xc023fb4fa8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18a20, {0xc005173800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfeddb0, 0x2?, {0x5dbd7f0, 0xc0236b5780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0136e2de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78959 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fffc600, 0xc0237f0f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62550 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000a3a028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000a3a000, 0xc011a2c7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6cf60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00d98?, 0x3b9aca00, 0x0, 0x0?, 0x1d89b6dcae79?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6cebb0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62551 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc000aba028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc000aba000, 0xc011a2ca50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6d260}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00e38?, 0x3b9aca00, 0x0, 0x0?, 0x23ed7a7a6a0a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00dc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6cec60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62552 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c028, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c000, 0xc011a2cd00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6d560}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00ed8?, 0x3b9aca00, 0x0, 0x0?, 0x23550518481c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00e60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6ced10, 0xc00b28d320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78908 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25a600, 0xc00a186a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16dc40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62553 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b6cf0a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b6cf080, 0xc0106e84d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00dad81e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01df23e60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00dad8258?, 0x3b9aca00, 0x0, 0x0?, 0x1ee18a07c851?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00dad81e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6cedc0, 0xc00b28d290?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67966 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc018012738?, {0x5d9c8c0, 0xc01814ccf0}, 0x1, 0xc0181409c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0180127b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018152b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78830 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0137450c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0137450b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0137450b0, {0xc01eaf3400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01eaf3400?, 0x3?, 0x37e6e0c00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430f7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430f7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430f7c0, {0x4f3b7c0, 0xc00d126bb8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f81df80, {0xc00b151c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb4f0, 0x2?, {0x5dbd7f0, 0xc01f379000}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f378fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62567 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d0a9ea0, 0xc00b9617d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62568 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62569 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82cf00}, {0x7f7fb0611580, 0xc001efdef0}, {0x5e003f8?, 0x573aa80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf276c0, {0x0?, 0x0?}, 0xc00e227560, 0xc01383bd60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf276c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c9500?, {0x5d9c8a0, 0xc01cf6e820}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf276c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67840 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf276c0, 0xc00e227560, 0xc01800ad20, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62554 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4398, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4370, 0xc00faa5270) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316a140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d2a5980}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316a1b8?, 0x3b9aca00, 0x0, 0x0?, 0x1f2b502690f3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316a140, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6cee70, 0xc01cf68300?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78592 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c728938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728930, {0xc009c29a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009c29a00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3400, {0x4f3b7c0, 0xc023e5e288}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f2722d0, {0xc01a7b8000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019452870, 0x5dd4e28?, {0x5dbd7f0, 0xc01f98c500}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98c440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62555 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c0d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c0b0, 0xc011a2cf90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da00f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01cf6d830}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da00f78?, 0x3b9aca00, 0x0, 0x0?, 0x1fcddcced45f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da00f00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00b6cef20, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72755 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417310, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62597 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62576 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df021e0, 0xc00e227560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62577 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62578 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09b40}, {0x7f7fb0611580, 0xc000a3a000}, {0x5e003f8?, 0x573b500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27880, {0x0?, 0x0?}, 0xc00e227560, 0xc01315a060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c9980?, {0x5d9c8a0, 0xc01cf6eaf0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67955 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27880, 0xc00e227560, 0xc017c343c0, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62470 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c188, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c160, 0xc011a2da50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00da014a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01dfa2d50}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00da01518?, 0x3b9aca00, 0x0, 0x0?, 0x23e228274b65?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00da014a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301340, 0xc01cb79500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78222 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f261e48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f261e38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f261e30, {0xc01e26e800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26e800?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6780, {0x4f3b7c0, 0xc00d127410}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5cc60, {0xc010b9a000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072be0, 0xc01d4aeab0?, {0x5dbd7f0, 0xc016e96440}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc016e963c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67903 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b67af38?, {0x5d9c8c0, 0xc0184968a0}, 0x1, 0xc01848ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0184a03f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62596 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df029b0, 0xc00ac577b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62583 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df02370, 0xc0086cb500?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62584 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62585 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69ff00}, {0x7f7fb0611580, 0xc000aba000}, {0x5e003f8?, 0x573b180}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27a40, {0x0?, 0x0?}, 0xc00e227560, 0xc01315a320?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c9d80?, {0x5d9c8a0, 0xc01cf6ec80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68468 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc019204f38?, {0x5d9c8c0, 0xc0194179e0}, 0x1, 0xc01941f140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc019204fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc019431050) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62558 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df02690, 0xc009bcafd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67947 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27a40, 0xc00e227560, 0xc0186a2000, 0x746164746e657261?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62559 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62560 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82d700}, {0x7f7fb0611580, 0xc00b6cf080}, {0x5e003f8?, 0x573b880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc20c40, {0x0?, 0x0?}, 0xc00e227560, 0xc012e6ca60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc20c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc006b1bb80?, {0x5d9c8a0, 0xc01df02a50}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc20c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68229 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc20c40, 0xc00e227560, 0xc018e26840, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78212 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f2616c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f2616b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f2616b0, {0xc023e0b200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023e0b200?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe17c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe17c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe17c0, {0x4f3b7c0, 0xc00d126e28}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafce10, {0xc007849800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072730, 0xc01d287b90?, {0x5dbd7f0, 0xc01df094c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68052 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b9a2f38?, {0x5d9c8c0, 0xc018497050}, 0x1, 0xc01848f3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b9a2fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0184a1200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62607 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62590 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01df02500, 0xc00aff7ce0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62591 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62592 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa1400}, {0x7f7fb0611580, 0xc00c60c000}, {0x5e003f8?, 0x573bc00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27c00, {0x0?, 0x0?}, 0xc00e227560, 0xc01315a5e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27c00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0090c9e00?, {0x5d9c8a0, 0xc01cf6ee10}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27c00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68009 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27c00, 0xc00e227560, 0xc018505c80, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78405 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a70c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a70b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a70b0, {0xc00ad5d400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5d400?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afcdc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afcdc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afcdc0, {0x4f3b7c0, 0xc023f47c68}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f377320, {0xc00b8c2000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca460, 0xc01d4aeab0?, {0x5dbd7f0, 0xc01e31ba40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31ba00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62598 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023fa1dc0}, {0x7f7fb0611580, 0xc00c60c0b0}, {0x5e003f8?, 0x573bf80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01cf27dc0, {0x0?, 0x0?}, 0xc00e227560, 0xc01315a880?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01cf27dc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d1ea280?, {0x5d9c8a0, 0xc01cf6ef00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01cf27dc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68029 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01cf27dc0, 0xc00e227560, 0xc0186d4900, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78395 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a64c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a64b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a64b0, {0xc00aa37c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa37c00?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddda40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddda40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddda40, {0x4f3b7c0, 0xc0237f9c20}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f597b00, {0xc00849a400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55db0, 0x5dd4e28?, {0x5dbd7f0, 0xc023fa1e00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba4340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa1dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78628 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c729500, 0xc00a186800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98ca80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78361 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b141c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b141b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b141b0, {0xc0064da200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0064da200?, 0x3?, 0x37e89ea00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b913680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b913680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b913680, {0x4f3b7c0, 0xc023f46f90}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02326cc60, {0xc00a48dc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab79f0, 0x2?, {0x5dbd7f0, 0xc01e31a600}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31a5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68405 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d8e4738?, {0x5d9c8c0, 0xc018d5c000}, 0x1, 0xc018d542a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018c7f830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62608 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4400}, {0x7f7fb0611580, 0xc00c60c160}, {0x5e003f8?, 0x573c680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa80e0, {0x0?, 0x0?}, 0xc00e227560, 0xc01315af00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa80e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d1ea900?, {0x5d9c8a0, 0xc01cf6f310}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa80e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68295 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa80e0, 0xc00e227560, 0xc019076480, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78680 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee0048, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f50b40?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee0030, {0xc000082601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000082601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73cf00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73cf00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73cf00, {0x4f3b7c0, 0xc023e5ef78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023653d10, {0xc009943800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cad70, 0xc0150df200?, {0x5dbd7f0, 0xc01f82c4c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ad5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68839 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d51e738?, {0x5d9c8c0, 0xc01a401ce0}, 0x1, 0xc01a44e060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d51e7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a4206c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78864 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859080, 0xc02043d000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc01293d680?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62677 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d8ffe00, 0x6572437265746641?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62678 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62679 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cadbc0}, {0x7f7fb0611580, 0xc00c60c210}, {0x5e003f8?, 0x573d100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa82a0, {0x0?, 0x0?}, 0xc00e227560, 0xc01315b1e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa82a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d1ead00?, {0x5d9c8a0, 0xc01cf6f4a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa82a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68308 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa82a0, 0xc00e227560, 0xc018f47f20, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62647 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d8fff90, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62648 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62649 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50cc0}, {0x7f7fb0611580, 0xc00b6cf130}, {0x5e003f8?, 0x573cd80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc20fc0, {0x0?, 0x0?}, 0xc00e227560, 0xc012e6ce20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc20fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d044200?, {0x5d9c8a0, 0xc01df02dc0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc20fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68362 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc20fc0, 0xc00e227560, 0xc019282240, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78663 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f387c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01d4b3bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f387b0, {0xc0238fc600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fc600?, 0x3?, 0x37effa600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2cb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2cb40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2cb40, {0x4f3b7c0, 0xc01d611158}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3beba0, {0xc014194800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54b90, 0x2?, {0x5dbd7f0, 0xc023e63c80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78691 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee10c8, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f795500?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee10b0, {0xc001a84c01, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001a84c01?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf04dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf04dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf04dc0, {0x4f3b7c0, 0xc023fb4b28}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd6390, {0xc00c188000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190738b0, 0xc0236970e0?, {0x5dbd7f0, 0xc01f794d80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f795580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78468 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012422600, 0xc01f0d0200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62653 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e3182d0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62654 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62655 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c9c0}, {0x7f7fb0611580, 0xc00b6cf1e0}, {0x5e003f8?, 0x573d480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc21180, {0x0?, 0x0?}, 0xc00e227560, 0xc012e6d0c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc21180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d044240?, {0x5d9c8a0, 0xc01df02eb0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc21180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68430 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc21180, 0xc00e227560, 0xc0194e9140, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62691 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e318460, 0xc01d569fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62476 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b44f8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b44d0, 0xc00faa5d70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01d2ae690}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316a438?, 0x3b9aca00, 0x0, 0x0?, 0x1dff26916ab2?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316a3c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301810, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62692 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62693 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16df40}, {0x7f7fb0611580, 0xc00b6cf290}, {0x5e003f8?, 0x573df00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01bc21340, {0x0?, 0x0?}, 0xc00e227560, 0xc012e6d380?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01bc21340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d044280?, {0x5d9c8a0, 0xc01df02fa0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01bc21340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68435 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01bc21340, 0xc00e227560, 0xc0194e9800, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62616 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac188, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac160, 0xc010835a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d0360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772bb8?, 0x3b9aca00, 0x0, 0x0?, 0x21c667e01327?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772b40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9600, 0xc01da2ab00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77886 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee0ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee0ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee0ab0, {0xc0064da600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0064da600?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf03c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf03c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf03c0, {0x4f3b7c0, 0xc023b8a5a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bca2d0, {0xc003392000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06e60, 0x5dd4e28?, {0x5dbd7f0, 0xc01e31a2c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ad4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31a280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63485 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00f621b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62618 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac398, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac370, 0xc010835f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d0960}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772cf8?, 0x3b9aca00, 0x0, 0x0?, 0x21c48e56c859?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772c80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9760, 0xc01da2a200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62619 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac4f8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac4d0, 0xc010424260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d0c60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772d98?, 0x3b9aca00, 0x0, 0x0?, 0x230f6c51d08e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772d20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9810, 0x6c616e6f69746964?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62620 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac5a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac580, 0xc010424520) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772dc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d0f60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772e38?, 0x3b9aca00, 0x0, 0x0?, 0x2108fedf0839?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772dc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e98c0, 0x736564227b3a224d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62621 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac658, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac630, 0xc0104247d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d1260}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772ed8?, 0x3b9aca00, 0x0, 0x0?, 0x20a3bc046b51?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772e60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9970, 0x6e61207265746e45?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62622 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac708, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac6e0, 0xc010424aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d1560}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c772f78?, 0x3b9aca00, 0x0, 0x0?, 0x225d49a3f3e6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772f00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9a20, 0x2264616574736e69?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62623 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac7b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac790, 0xc010424d90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c772fa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d1860}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773018?, 0x3b9aca00, 0x0, 0x0?, 0x210e1cfdaf64?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c772fa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9ad0, 0x5520726f202c6573?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62624 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac868, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac840, 0xc010425090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c773040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d1b60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c7730b8?, 0x3b9aca00, 0x0, 0x0?, 0x2110a82e94a6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c773040, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9b80, 0x6544206573616261?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62625 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac918, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac8f0, 0xc010425360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c7730e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5d1e60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773158?, 0x3b9aca00, 0x0, 0x0?, 0x1ef1f5b62321?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c7730e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9c30, 0x3a2265707974227b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62706 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9ac9c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9ac9a0, 0xc010425660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c773180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5f6180}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c7731f8?, 0x3b9aca00, 0x0, 0x0?, 0x22555fb6c6e4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c773180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9ce0, 0x6c227b3a22736569?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62707 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322708, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0013226e0, 0xc010234ee0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03bae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e19b0b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bb58?, 0x3b9aca00, 0x0, 0x0?, 0x21967af10c27?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03bae0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9d90, 0x74227b3a226e6f69?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62708 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322868, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322840, 0xc010235190) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03bb80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e19b3b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bbf8?, 0x3b9aca00, 0x0, 0x0?, 0x1ee15d5b909b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03bb80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9e40, 0x75646a6442565561?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62709 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322918, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01bb40b30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0013228f0, 0xc0102354c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03bc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e19b6b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bc98?, 0x3b9aca00, 0x0, 0x0?, 0x1f4949ed8b64?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03bc20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0053e9ef0, 0x6d69742065676e61?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62710 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0013229c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0013229a0, 0xc010235780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03bcc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e19b9b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bd38?, 0x3b9aca00, 0x0, 0x0?, 0x20b64d05b474?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03bcc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4c60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62711 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322a78, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322a50, 0xc010235aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03bd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e19bcb0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bdd8?, 0x3b9aca00, 0x0, 0x0?, 0x22154097c069?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03bd60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4f20, 0x2c7d22676e697274?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62712 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322658, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322630, 0xc010234c50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03ba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e19ade0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bab8?, 0x3b9aca00, 0x0, 0x0?, 0x1eae40e9db45?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03ba40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee4fd0, 0x646574726f707075?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62713 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322bd8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322bb0, 0xc00d614480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e641170}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22078?, 0x3b9aca00, 0x0, 0x0?, 0x1ecfe27dc34e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee5080, 0x2070756f72672073?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62714 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322d38, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322d10, 0xc00d6147c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c220a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e641470}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22118?, 0x3b9aca00, 0x0, 0x0?, 0x22b7376015c9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c220a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee5130, 0x445f657369727072?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62715 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322b28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322b00, 0xc00d614150) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f03bf40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e640e70}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f03bfb8?, 0x3b9aca00, 0x0, 0x0?, 0x216a1d734cc4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f03bf40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee51e0, 0x69727473223a2265?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62716 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9aca78, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9aca50, 0xc0104259b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c773220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5f64b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773298?, 0x3b9aca00, 0x0, 0x0?, 0x206c0998b2d4?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c773220, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee5290, 0x3a2279636e657571?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62717 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9acb28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9acb00, 0xc010425c90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c7732c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e5f67b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773338?, 0x3b9aca00, 0x0, 0x0?, 0x23d22cdacdc9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c7732c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee5340, 0x6974706972637365?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62739 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fb860, 0xc01e503fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62740 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62741 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c6e40}, {0x7f7fb0611580, 0xc00f9ac160}, {0x5e003f8?, 0x573e600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db24c40, {0x0?, 0x0?}, 0xc00e227560, 0xc013517200?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db24c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f2a00?, {0x5d9c8a0, 0xc01e5d2000}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db24c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68892 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db24c40, 0xc00e227560, 0xc01a53bc80, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62726 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4aeb40, 0xc00a68d7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62727 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78314 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d850c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d850b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d850b0, {0xc0122b5e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b5e00?, 0x3?, 0x37f097e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2d7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2d7c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2d7c0, {0x4f3b7c0, 0xc00b081278}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e4630, {0xc00ab58000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835cd70, 0x2?, {0x5dbd7f0, 0xc023f51c00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62728 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cac100}, {0x7f7fb0611580, 0xc001322840}, {0x5e003f8?, 0x5741000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f6ee0, {0x0?, 0x0?}, 0xc00e227560, 0xc0135f7f00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f6ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0027a5bc0?, {0x5d9c8a0, 0xc01d450f00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f6ee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68763 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f6ee0, 0xc00e227560, 0xc01a2b6000, 0xc00724c480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70190 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc021049710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69451 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e6ae1c0, 0xc00e227560, 0xc01cef2060, 0xc0068f9920?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62746 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fb9f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62747 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62748 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82c300}, {0x7f7fb0611580, 0xc00f9ac2c0}, {0x5e003f8?, 0x573e280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db24e00, {0x0?, 0x0?}, 0xc00e227560, 0xc0135174c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db24e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f31c0?, {0x5d9c8a0, 0xc01e5d2190}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db24e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68851 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db24e00, 0xc00e227560, 0xc01a2b7440, 0x2e73746e696f7064?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78476 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25a7c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25a7b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25a7b0, {0xc0043cf400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x56f7120?}, {0xc0043cf400?, 0x7f7f902599a8?, 0x7f7fe04a9a68?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e31040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e31040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e31040, {0x4f3b7c0, 0xc023dc6e10}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f81c540, {0xc0110c6800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072820, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f379480}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f379440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72765 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417750, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c5020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62806 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4af630, 0xc00e227560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62733 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4aecd0, 0xc01dfb27d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62734 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79034 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f633500, 0xc023941400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f51f00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62735 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01dc6ab00}, {0x7f7fb0611580, 0xc0013228f0}, {0x5e003f8?, 0x5740c80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f70a0, {0x0?, 0x0?}, 0xc00e227560, 0xc0143ee1c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f70a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6c000?, {0x5d9c8a0, 0xc01d451090}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f70a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68723 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f70a0, 0xc00e227560, 0xc019cd8300, 0xc01d7a3a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69529 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01cf6ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62858 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98c6c0}, {0x7f7fb0611580, 0xc00f9acb00}, {0x5e003f8?, 0x5742880}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e6ae1c0, {0x0?, 0x0?}, 0xc00e227560, 0xc0134373a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e6ae1c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b2780?, {0x5d9c8a0, 0xc01e5d3360}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e6ae1c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62753 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fbb80, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62754 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62755 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16ce40}, {0x7f7fb0611580, 0xc00f9ac370}, {0x5e003f8?, 0x573ed00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db24fc0, {0x0?, 0x0?}, 0xc00e227560, 0xc013517780?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db24fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f3200?, {0x5d9c8a0, 0xc01e5d2320}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db24fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69001 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db24fc0, 0xc00e227560, 0xc01aa56120, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78478 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0124230c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0124230b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0124230b0, {0xc0043cf600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0043cf600?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e31400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e31400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e31400, {0x4f3b7c0, 0xc023dc6ed0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f81ca80, {0xc0110c6c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072910, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f3796c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab80e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f379680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69355 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01c62fe60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62772 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4aee60, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62773 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78107 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0128704c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0128704b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0128704b0, {0xc00a741000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a741000?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b4c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b4c80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b4c80, {0x4f3b7c0, 0xc00d126360}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78b920, {0xc0079b2000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018fe7f40, 0x2?, {0x5dbd7f0, 0xc01f16ce80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e7500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16ce40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62774 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f500c0}, {0x7f7fb0611580, 0xc0013229a0}, {0x5e003f8?, 0x5741700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f7260, {0x0?, 0x0?}, 0xc00e227560, 0xc0143ee480?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f7260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6c040?, {0x5d9c8a0, 0xc01d451220}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f7260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69418 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f7260, 0xc00e227560, 0xc01c935da0, 0xc00720e3f0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62760 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fbd10, 0x6e75206e61207369?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62761 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62762 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31ba00}, {0x7f7fb0611580, 0xc00f9ac4d0}, {0x5e003f8?, 0x573e980}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25180, {0x0?, 0x0?}, 0xc00e227560, 0xc013517a40?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f3600?, {0x5d9c8a0, 0xc01e5d24b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68860 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25180, 0xc00e227560, 0xc01a2f1740, 0x776b464d304e3362?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78014 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c728ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728ab0, {0xc009fd8800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd8800?, 0x3?, 0xc0020034e8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e31b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e31b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e31b80, {0x4f3b7c0, 0xc023947368}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f0ef950, {0xc00a349000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c140, 0xc02393e000?, {0x5dbd7f0, 0xc01f69e000}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe3a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc5d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70620 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc021d58b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72695 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064176d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62778 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e501f38?, {0x5d9c8c0, 0xc01e19bf80}, 0x1, 0xc00a9a8060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0081f2cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62779 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0081f2cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68937 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a6fad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69313 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e6ae000, 0xc00e227560, 0xc01c91ff80, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62767 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d4fbea0, 0x224b30534c743053?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62768 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62856 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4af950, 0xc0068f9931?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62781 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4aeff0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62782 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62769 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08500}, {0x7f7fb0611580, 0xc00f9ac580}, {0x5e003f8?, 0x573f400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25340, {0x0?, 0x0?}, 0xc00e227560, 0xc013517d00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f3640?, {0x5d9c8a0, 0xc01e5d2640}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62783 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7900}, {0x7f7fb0611580, 0xc001322a50}, {0x5e003f8?, 0x5741e00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f7420, {0x0?, 0x0?}, 0xc00e227560, 0xc0143ee760?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f7420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6c080?, {0x5d9c8a0, 0xc01d451400}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f7420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69279 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25340, 0xc00e227560, 0xc01cb6e600, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69591 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f7420, 0xc00e227560, 0xc01d14b440, 0x6e756f7220797469?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78355 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd9848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd9838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd9830, {0xc01f801800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f801800?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f557e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f557e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f557e00, {0x4f3b7c0, 0xc023f467c8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4f140, {0xc00a48d000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7270, 0xc01d287b90?, {0x5dbd7f0, 0xc023d01b40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d01b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78163 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394e348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394e338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394e330, {0xc00e482200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e482200?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b4640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b4640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b4640, {0x4f3b7c0, 0xc023e5e108}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b18570, {0xc0079b3400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12190, 0xc01d287b90?, {0x5dbd7f0, 0xc00ac4d200}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eace200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc00ac4d1c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72264 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a078d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3495c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62851 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794c40}, {0x7f7fb0611580, 0xc00f9aca50}, {0x5e003f8?, 0x5742c00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e6ae000, {0x0?, 0x0?}, 0xc00e227560, 0xc013437080?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e6ae000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b2740?, {0x5d9c8a0, 0xc01e5d31d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e6ae000, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62790 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae050, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62791 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62792 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023c2cdc0}, {0x7f7fb0611580, 0xc00f9ac630}, {0x5e003f8?, 0x573f080}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25500, {0x0?, 0x0?}, 0xc00e227560, 0xc013517fc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f3680?, {0x5d9c8a0, 0xc01e5d27d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78648 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023b14000, 0xc0237f0c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc0213187e0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68509 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25500, 0xc00e227560, 0xc019982cc0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78417 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc010da7b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc010da7b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc010da7b30, {0xc008139800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc008139800?, 0x3?, 0x37ea98600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefc3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefc3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefc3c0, {0x4f3b7c0, 0xc023dc6888}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7187e0, {0xc00b8c3400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cab90, 0x2?, {0x5dbd7f0, 0xc023c2ce40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfefa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023c2cdc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72703 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bec60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62850 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62797 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae1e0, 0x222c7d7d7d7d2267?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62798 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62799 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e31b980}, {0x7f7fb0611580, 0xc00f9ac6e0}, {0x5e003f8?, 0x573fb00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db256c0, {0x0?, 0x0?}, 0xc00e227560, 0xc013436280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db256c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f36c0?, {0x5d9c8a0, 0xc01e5d2960}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db256c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68519 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db256c0, 0xc00e227560, 0xc019223ce0, 0xc00451b0b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78755 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58a780, 0xc0057de100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68578 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b613738?, {0x5d9c8c0, 0xc0193745a0}, 0x1, 0xc0190d1e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b6137b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01937e2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62849 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4af7c0, 0x6970612f65727574?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62820 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae370, 0x7365722065676172?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62821 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62822 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e62d00}, {0x7f7fb0611580, 0xc00f9ac790}, {0x5e003f8?, 0x573f780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25880, {0x0?, 0x0?}, 0xc00e227560, 0xc013436560?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f3ac0?, {0x5d9c8a0, 0xc01e5d2af0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68541 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25880, 0xc00e227560, 0xc0196ee540, 0xc00bb3bbc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78142 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b8f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b8f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b8f30, {0xc0122b5800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b5800?, 0x3?, 0x37effa600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f5900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f5900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f5900, {0x4f3b7c0, 0xc01d610408}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc007dff0b0, {0xc00a0fcc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54500, 0x2?, {0x5dbd7f0, 0xc023e62d40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0239388c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e62d00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72705 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bec60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62857 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62827 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae500, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62828 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62829 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023bc4900}, {0x7f7fb0611580, 0xc00f9ac840}, {0x5e003f8?, 0x5740200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25a40, {0x0?, 0x0?}, 0xc00e227560, 0xc013436820?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0091f3ec0?, {0x5d9c8a0, 0xc01e5d2c80}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68569 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25a40, 0xc00e227560, 0xc0198a6660, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78493 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c859cc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c859cb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c859cb0, {0xc001cccc00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001cccc00?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3b540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3b540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3b540, {0x4f3b7c0, 0xc01d5885b8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacc0f0, {0xc011db6800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062cb720, 0xc01d4aeab0?, {0x5dbd7f0, 0xc01f82c8c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da9a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82c880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72304 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf650, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78131 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fa780, 0xc004d0a700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62834 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae690, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62835 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62836 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e62280}, {0x7f7fb0611580, 0xc00f9ac8f0}, {0x5e003f8?, 0x573fe80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25c00, {0x0?, 0x0?}, 0xc00e227560, 0xc013436ae0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25c00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b2300?, {0x5d9c8a0, 0xc01e5d2e10}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25c00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69031 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25c00, 0xc00e227560, 0xc01a936540, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78767 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb9c80, 0xc00bdd3200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e31b600?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78294 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b9500, 0xc01f9a1500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f5b80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71363 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a257738?, {0x5d9c8c0, 0xc02356f950}, 0x1, 0xc02378a360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a2577b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0238cd320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62841 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4ae820, 0x6572206e616d7568?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62842 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62843 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4740}, {0x7f7fb0611580, 0xc00f9ac9a0}, {0x5e003f8?, 0x5740900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01db25dc0, {0x0?, 0x0?}, 0xc00e227560, 0xc013436da0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01db25dc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b2700?, {0x5d9c8a0, 0xc01e5d2fa0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01db25dc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68993 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01db25dc0, 0xc00e227560, 0xc01ba8e720, 0xc002dae180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78293 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b93c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b93b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b93b0, {0xc0207ab000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207ab000?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73d900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73d900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73d900, {0x4f3b7c0, 0xc023946e88}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3473b0, {0xc00a184000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13720, 0xc01d0899b0?, {0x5dbd7f0, 0xc01f3f5bc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0236beee0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78644 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d85848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01bc75bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d85830, {0xc01e26e000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26e000?, 0x3?, 0x3824e6d00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bd540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bd540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bd540, {0x4f3b7c0, 0xc023e5fb30}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3468d0, {0xc00f9f0400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453540, 0x2?, {0x5dbd7f0, 0xc01f3f4780}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68732 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc019cf9710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69538 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01cc415f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62813 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4af310, 0xc01dfae7d0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62814 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62815 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cada00}, {0x7f7fb0611580, 0xc001322bb0}, {0x5e003f8?, 0x5741a80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f7880, {0x0?, 0x0?}, 0xc00e227560, 0xc0143eefc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f7880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6c280?, {0x5d9c8a0, 0xc01d4519a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f7880, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69262 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f7880, 0xc00e227560, 0xc01b889560, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77980 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a6f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a6f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a6f30, {0xc01e0dae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e0dae00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46dcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46dcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46dcc0, {0x4f3b7c0, 0xc0234ca9f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f13aa50, {0xc00f9f0800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453f90, 0x5dd4e28?, {0x5dbd7f0, 0xc023cada40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cada00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69373 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc019202738?, {0x5d9c8c0, 0xc01bdbdb90}, 0x1, 0xc01bddd380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0192027b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01bdcfc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62962 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e92b8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e9290, 0xc010797490) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c891680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01de2a6c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c8916f8?, 0x3b9aca00, 0x0, 0x0?, 0x2354e160497e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c891680, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b4580, 0xc018debd00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62868 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4af4a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62869 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62870 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50680}, {0x7f7fb0611580, 0xc001322d10}, {0x5e003f8?, 0x5742500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f7a40, {0x0?, 0x0?}, 0xc00e227560, 0xc0143ef280?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f7a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6c700?, {0x5d9c8a0, 0xc01d451b30}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f7a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69270 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f7a40, 0xc00e227560, 0xc01b2d9860, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78348 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee04c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee04b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee04b0, {0xc023cc3a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc023cc3a00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023cf1180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023cf1180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023cf1180, {0x4f3b7c0, 0xc0237f8c18}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bcb7d0, {0xc00073dc00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55680, 0xc01d287b90?, {0x5dbd7f0, 0xc023fa06c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e752c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa0680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72258 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca210, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62718 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc005ee54c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc005ee54a0, 0xc0108f11f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00bdde960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e53ac00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00bdde9d8?, 0x3b9aca00, 0x0, 0x0?, 0x236f373294cc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00bdde960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc005ee53f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72352 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf8d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130637c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62720 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e4afae0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62721 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62882 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82c340}, {0x7f7fb0611580, 0xc005ee54a0}, {0x5e003f8?, 0x5742f80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01da34700, {0x0?, 0x0?}, 0xc00e227560, 0xc013c61680?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01da34700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cdd2b80?, {0x5d9c8a0, 0xc01e4afb30}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01da34700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69524 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01da34700, 0xc00e227560, 0xc01d100000, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78490 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb8dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01bb4bbb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb8db0, {0xc001ccc400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccc400?, 0x3?, 0x380d3da00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3a640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3a640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3a640, {0x4f3b7c0, 0xc01d588258}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7a7b60, {0xc011f85c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062ca820, 0x2?, {0x5dbd7f0, 0xc01f82c380}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da8ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82c340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70189 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e654738?, {0x5d9c8c0, 0xc02106cc00}, 0x1, 0xc0210429c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01e6547b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc021049710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62875 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322f48, 0x6) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f8aac0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322f20, 0xc00d614e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e814150}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22398?, 0x3b9aca00, 0x0, 0x0?, 0x227b09e4133b?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001322dc0, 0xc0081f2cf0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62909 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f301a48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f301a20, 0xc010b16a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00bcd37c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01edb5b90}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00bcd3838?, 0x3b9aca00, 0x0, 0x0?, 0x21c181b1b035?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00bcd37c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301970, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78689 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad4f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad4f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad4f30, {0xc00ad5c200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5c200?, 0x3?, 0xc002003400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f556500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f556500) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f556500, {0x4f3b7c0, 0xc00b080078}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e5b60, {0xc00f71a400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb1d0, 0xc02393e000?, {0x5dbd7f0, 0xc023f51a40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4adf60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78273 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85500, 0xc004d0aa00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c76c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62878 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d451f40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62879 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62880 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b45c0}, {0x7f7fb0611580, 0xc001322f20}, {0x5e003f8?, 0x574e900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc0212f7ce0, {0x0?, 0x0?}, 0xc00e227560, 0xc0143efd00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc0212f7ce0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de6d340?, {0x5d9c8a0, 0xc01e826000}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc0212f7ce0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69526 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc0212f7ce0, 0xc00e227560, 0xc01d100480, 0xc002dae180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78541 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d84db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84db0, {0xc0004b1a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0004b1a00?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefd540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefd540) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefd540, {0x4f3b7c0, 0xc023b8a918}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00ab54c30, {0xc00e597c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca640, 0x2?, {0x5dbd7f0, 0xc023cad840}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4aca60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cad800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78512 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f050d80, 0xc02043c200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xc01f0fb800?, 0xc01f0fb800?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72614 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64566 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a027a70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62979 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01d281ef0, 0xc00badea61?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62980 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62981 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f378d40}, {0x7f7fb0611580, 0xc00f9acbb0}, {0x5e003f8?, 0x5743a00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e6ae700, {0x0?, 0x0?}, 0xc00e227560, 0xc013437a60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e6ae700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b30c0?, {0x5d9c8a0, 0xc01e5d3810}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e6ae700, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69673 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e6ae700, 0xc00e227560, 0xc01d0bdf20, 0xc00451b0b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78102 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25be00, 0xc01f744800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16c700?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78610 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394fe48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394fe38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394fe30, {0xc001ccd400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccd400?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b4a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b4a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b4a00, {0x4f3b7c0, 0xc01d5889c0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eacd4d0, {0xc000a73800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab61e0, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01f82d100}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32ea40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72090 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62971 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01ec5a140, 0xc00a6df7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62972 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62973 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e628c0}, {0x7f7fb0611580, 0xc0058b4790}, {0x5e003f8?, 0x5743680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b08c0, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebec3e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b08c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d277700?, {0x5d9c8a0, 0xc01ec5a190}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b08c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69685 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b08c0, 0xc00e227560, 0xc01d7397a0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78649 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b14048, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f3f4e00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b14030, {0xc000994c01, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000994c01?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe0000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe0000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe0000, {0x4f3b7c0, 0xc023b8b0b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023b9a360, {0xc00b8c2400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453900, 0xc00d958bd0?, {0x5dbd7f0, 0xc01f3f4cc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72199 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca010, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62977 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4b28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4b00, 0xc010fab640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316b220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec80900}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316b298?, 0x3b9aca00, 0x0, 0x0?, 0x20ac271d8cba?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316b220, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b4840, 0xc01d77cb00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62994 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4bd8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4bb0, 0xc010fab950) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316b2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec80c00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316b338?, 0x3b9aca00, 0x0, 0x0?, 0x2169593ed44e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316b2c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b48f0, 0xc01d77c800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62995 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4c88, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4c60, 0xc010fabc90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316b400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec80f00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316b478?, 0x3b9aca00, 0x0, 0x0?, 0x1fafb8c16652?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316b400, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b49a0, 0xc01cd79800?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62996 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4d38, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4d10, 0xc00ed52160) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316b4a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec81200}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316b518?, 0x3b9aca00, 0x0, 0x0?, 0x2224c9c3ec1a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316b4a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0058b4a50, 0xc01d77c600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62908 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e9368, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e9340, 0xc010797f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c891b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01de2be00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c891bf8?, 0x3b9aca00, 0x0, 0x0?, 0x21f25fa1f3a3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c891b80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f3018c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62999 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01ec5a460, 0xc01ec89fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63000 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63001 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e638c0}, {0x7f7fb0611580, 0xc0058b4b00}, {0x5e003f8?, 0x5744100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b0a80, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebec8e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b0a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f312280?, {0x5d9c8a0, 0xc01ec5a9b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b0a80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70745 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b0a80, 0xc00e227560, 0xc022898000, 0xc0025e27b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78891 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022201500, 0xc0057e4300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78730 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744900, 0xc0057e5b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc023fe6c60?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63027 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f51a00}, {0x7f7fb0611580, 0xc00b7e9340}, {0x5e003f8?, 0x5744f00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d774e00, {0x0?, 0x0?}, 0xc00e227560, 0xc014b1cb60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d774e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ccce580?, {0x5d9c8a0, 0xc01d75f9f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d774e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63006 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01ec5a5f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63007 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63008 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e63fc0}, {0x7f7fb0611580, 0xc0058b4bb0}, {0x5e003f8?, 0x5743d80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b0c40, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebecba0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b0c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f3127c0?, {0x5d9c8a0, 0xc01ec5ab40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b0c40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70035 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b0c40, 0xc00e227560, 0xc01efa95c0, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63026 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63013 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01ec5a780, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63014 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63015 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16c940}, {0x7f7fb0611580, 0xc0058b4c60}, {0x5e003f8?, 0x5744800}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b0e00, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebece60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b0e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f3128c0?, {0x5d9c8a0, 0xc01ec5acd0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b0e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69759 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b0e00, 0xc00e227560, 0xc01dfd6840, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72243 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca190, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62945 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e319310, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63020 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01ec5a910, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63021 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63022 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023cac980}, {0x7f7fb0611580, 0xc0058b4d10}, {0x5e003f8?, 0x5744480}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b0fc0, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebed120?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b0fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f312a00?, {0x5d9c8a0, 0xc01ec5ae60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b0fc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69893 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b0fc0, 0xc00e227560, 0xc01ec629c0, 0xc00bb4f980?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78466 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb8048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012eb8038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb8030, {0xc0043cf200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0043cf200?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e30dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e30dc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e30dc0, {0x4f3b7c0, 0xc01d237200}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023dda0f0, {0xc010b9b800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190734f0, 0x5dd4e28?, {0x5dbd7f0, 0xc023cac9c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ad600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cac980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63046 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001322ff8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001322fd0, 0xc0105ac3f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e83ac00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c229d8?, 0x3b9aca00, 0x0, 0x0?, 0x1fa50134a97f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301ad0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62911 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e3194a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62912 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62913 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f4e80}, {0x7f7fb0611580, 0xc00f301a20}, {0x5e003f8?, 0x5744b80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d8dd180, {0x0?, 0x0?}, 0xc00e227560, 0xc014752f80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d8dd180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00bd03440?, {0x5d9c8a0, 0xc01e3194f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d8dd180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70336 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d8dd180, 0xc00e227560, 0xc021f12540, 0xc01395d530?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78768 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012eb9cc8, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006771bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012eb9cb0, {0xc0006c2001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c2001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bc000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bc000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bc000, {0x4f3b7c0, 0xc023b8b278}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e4ae0, {0xc0115b2800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6e60, 0xc00e26c500?, {0x5dbd7f0, 0xc01f3f5380}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c515e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e62280) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71064 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc022ecbd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63047 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e9418, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e93f0, 0xc0115b65c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c891cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01de46ea0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c891d38?, 0x3b9aca00, 0x0, 0x0?, 0x2203b406ad67?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c891cc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301b80, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63048 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0013230a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001323080, 0xc0105ac750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e83af00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22a78?, 0x3b9aca00, 0x0, 0x0?, 0x1fa556f6ff20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22a00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301c30, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71656 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca110, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62959 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e319860, 0xc01e6827b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62960 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62961 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f69ee00}, {0x7f7fb0611580, 0xc001322fd0}, {0x5e003f8?, 0x5745600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82c2a0, {0x0?, 0x0?}, 0xc00e227560, 0xc01e82a940?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82c2a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46e1c0?, {0x5d9c8a0, 0xc01e8268c0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82c2a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70607 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82c2a0, 0xc00e227560, 0xc02200a7e0, 0xc020ec5e60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78037 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad5548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad5538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad5530, {0xc00ad5d800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ad5d800?, 0x3?, 0x7f7fe04aa800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3aa00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3aa00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3aa00, {0x4f3b7c0, 0xc023fb44b0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f6ab7a0, {0xc009c27800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018ad0d70, 0xc02393e000?, {0x5dbd7f0, 0xc01f3793c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f379380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63060 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d569738?, {0x5d9c8c0, 0xc01e83aea0}, 0x1, 0xc00b31ade0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc004b1e510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63061 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc004b1e510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63063 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e319b80, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63064 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63065 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98d9c0}, {0x7f7fb0611580, 0xc001323080}, {0x5e003f8?, 0x5745d00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82c460, {0x0?, 0x0?}, 0xc00e227560, 0xc01e82abe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82c460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46e200?, {0x5d9c8a0, 0xc01e826a00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82c460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70930 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82c460, 0xc00e227560, 0xc0228ff5c0, 0xc0048b7230?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78966 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85c80, 0xc01f9a0200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82c880?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63049 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f301db8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f301d90, 0xc010b16f70) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00bcd3b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ede8a20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00bcd3bf8?, 0x3b9aca00, 0x0, 0x0?, 0x1ee0e465374a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00bcd3b80, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301ce0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70932 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0228f2f38?, {0x5d9c8c0, 0xc022bb2630}, 0x1, 0xc0228ffa40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc022b9b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63051 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e319d10, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63052 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63053 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5c00}, {0x7f7fb0611580, 0xc00f301d90}, {0x5e003f8?, 0x5746780}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d8dd340, {0x0?, 0x0?}, 0xc00e227560, 0xc0147534a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d8dd340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00bd03740?, {0x5d9c8a0, 0xc01e319d60}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d8dd340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71608 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d8dd340, 0xc00e227560, 0xc024087800, 0xc00b323890?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71560 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca590, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71666 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca350, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63057 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e9578, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e9550, 0xc0115b6910) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c891e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01de47230}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c891e78?, 0x3b9aca00, 0x0, 0x0?, 0x21ec042720ed?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c891e00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301e40, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72400 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf390, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63090 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00cce82e8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00cce82c0, 0xc010b17580) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011a5c0a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ee11e00}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011a5c118?, 0x3b9aca00, 0x0, 0x0?, 0x1e9ec7d00098?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011a5c0a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00f301ef0, 0xc01d77d600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63091 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00cce8398, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00cce8370, 0xc010b177c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011a5c140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ee11f20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011a5c1b8?, 0x3b9aca00, 0x0, 0x0?, 0x1e98c1df3d16?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011a5c140, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00cce8000, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63092 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b7e9628, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00b7e9600, 0xc0115b6c50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c891ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01de47560}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c891f18?, 0x3b9aca00, 0x0, 0x0?, 0x1ec8251099bf?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c891ea0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00cce80b0, 0xc00dabe750?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63093 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001323158, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001323130, 0xc0105acab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e83b260}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22b18?, 0x3b9aca00, 0x0, 0x0?, 0x237b0eb80237?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22aa0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00cce8160, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63094 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001323208, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0013231e0, 0xc0105acd60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e83b560}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22bb8?, 0x3b9aca00, 0x0, 0x0?, 0x1f201a3e825a?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22b40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00cce8210, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78264 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84900, 0xc01f745c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6980?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63096 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf21e0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63097 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63098 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98ca80}, {0x7f7fb0611580, 0xc00cce82c0}, {0x5e003f8?, 0x5746e80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d8dd500, {0x0?, 0x0?}, 0xc00e227560, 0xc014753a60?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d8dd500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00bd03a00?, {0x5d9c8a0, 0xc01edf2870}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d8dd500, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71400 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d8dd500, 0xc00e227560, 0xc023948240, 0xc00bb3bbc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72245 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca190, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63101 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01edbf738?, {0x5d9c8c0, 0xc01dff4480}, 0x1, 0xc00bb9f980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01ede1c00?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00d57bc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63102 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00d57bc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78728 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013744600, 0xc0057e5700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc023fe6c60?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63104 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01edc0f38?, {0x5d9c8c0, 0xc01dff4210}, 0x1, 0xc00bb9f200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00d57bcb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63105 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00d57bcb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72136 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063d60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63234 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ee20738?, {0x5d9c8c0, 0xc01ec81a70}, 0x1, 0xc00b510180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc01ee20788?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc008faa120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63108 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf2370, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63109 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63110 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f378980}, {0x7f7fb0611580, 0xc00cce8370}, {0x5e003f8?, 0x5747200}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d8dd6c0, {0x0?, 0x0?}, 0xc00e227560, 0xc014753b20?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d8dd6c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00bd03a40?, {0x5d9c8a0, 0xc01edf2b40}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d8dd6c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71082 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d8dd6c0, 0xc00e227560, 0xc023168420, 0xc02315c400?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63089 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b52cf38?, {0x5d9c8c0, 0xc01e6c28a0}, 0x1, 0xc00949a600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc0002c90c8?, 0x3b9aca00, 0x0, 0x50?, 0xc00b52cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00dabfc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63122 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00dabfc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71685 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaad0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5beea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d5040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72620 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bffd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63125 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf2500, 0xc00b52a7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63126 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63127 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09b80}, {0x7f7fb0611580, 0xc00b7e9600}, {0x5e003f8?, 0x5747900}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d775340, {0x0?, 0x0?}, 0xc00e227560, 0xc014b1d780?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d775340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00cccf340?, {0x5d9c8a0, 0xc01de5a690}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d775340, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63070 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01edc2f38?, {0x5d9c8c0, 0xc01e6c2900}, 0x1, 0xc00949a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc004b1eab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63071 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc004b1eab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71614 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca3d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b477920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cde00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62991 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e827180, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63138 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf2690, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63139 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63140 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0236b5bc0}, {0x7f7fb0611580, 0xc001323130}, {0x5e003f8?, 0x5748380}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82c620, {0x0?, 0x0?}, 0xc00e227560, 0xc01e82aee0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82c620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46e240?, {0x5d9c8a0, 0xc01e826d20}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82c620, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70929 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82c620, 0xc00e227560, 0xc022c912c0, 0xc0025e27b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78757 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da6300, 0xc00bdd2000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72221 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf2d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102818c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63172 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e855f38?, {0x5d9c8c0, 0xc01dff5380}, 0x1, 0xc00b56a060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc01e855f88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009674fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63145 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01edf2820, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63146 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63147 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f16ce00}, {0x7f7fb0611580, 0xc0013231e0}, {0x5e003f8?, 0x5748000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82c7e0, {0x0?, 0x0?}, 0xc00e227560, 0xc01e82b1a0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82c7e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46e8c0?, {0x5d9c8a0, 0xc01e826eb0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82c7e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71013 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82c7e0, 0xc00e227560, 0xc022c91680, 0xc00b323890?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78898 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859500, 0xc02043d100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16cb80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71112 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ec82f38?, {0x5d9c8c0, 0xc0232b6930}, 0x1, 0xc0232b8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ec82fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0232b3200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63151 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9acc88, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9acc60, 0xc010ccf660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c773a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e6c2960}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773ab8?, 0x3b9aca00, 0x0, 0x0?, 0x1fd45bf3fd7d?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c773a40, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001323290, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63152 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f9acde8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00f9acdc0, 0xc010ccf9d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00c773ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e6c2c30}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00c773b58?, 0x3b9aca00, 0x0, 0x0?, 0x1d99ef5b417f?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00c773ae0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001323340, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63153 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c4f8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c4d0, 0xc0101f5b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f23e320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01dfe1ef0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f23e398?, 0x3b9aca00, 0x0, 0x0?, 0x1ddec4065e65?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f23e320, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0013234a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63154 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c5a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c580, 0xc0101f5fe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f23e3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01dff44e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f23e438?, 0x3b9aca00, 0x0, 0x0?, 0x21f643e1e35c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f23e3c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001323550, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62992 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62993 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023d01000}, {0x7f7fb0611580, 0xc00f9acc60}, {0x5e003f8?, 0x5748a80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e6aed20, {0x0?, 0x0?}, 0xc00e227560, 0xc013437fa0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e6aed20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b3dc0?, {0x5d9c8a0, 0xc01e5d3e50}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e6aed20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71144 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e6aed20, 0xc00e227560, 0xc022cfce40, 0xc01d568f78?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78282 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd8648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd8638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd8630, {0xc01f800400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f800400?, 0x3?, 0x37e89ea00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f557400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f557400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f557400, {0x4f3b7c0, 0xc023f463a8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd76e0, {0xc00f9f0c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6eb0, 0x2?, {0x5dbd7f0, 0xc023d01040}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80c740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d01000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63173 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009674fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72042 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc013035ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63175 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e827310, 0xc01dfaefd0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63176 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62924 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e8274a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62925 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 62926 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f794700}, {0x7f7fb0611580, 0xc00c60c4d0}, {0x5e003f8?, 0x5749500}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa9260, {0x0?, 0x0?}, 0xc00e227560, 0xc01459c8c0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa9260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d1ebf00?, {0x5d9c8a0, 0xc01dfec370}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa9260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71078 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa9260, 0xc00e227560, 0xc022d37980, 0xc00badea50?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78629 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c729548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01b050bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c729530, {0xc00a3aa400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aa400?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a3900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a3900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a3900, {0x4f3b7c0, 0xc023e5e480}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f272f60, {0xc01f818400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0194529b0, 0x5dd4e28?, {0x5dbd7f0, 0xc01f98ce40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01eacee20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f98ce00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72194 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf450, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x707474682d6f4722?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63177 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df095c0}, {0x7f7fb0611580, 0xc00f9acdc0}, {0x5e003f8?, 0x5748700}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e6aeee0, {0x0?, 0x0?}, 0xc00e227560, 0xc01e6c8260?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e6aeee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f5b3e40?, {0x5d9c8a0, 0xc01e5d3f90}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e6aeee0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71308 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e6aeee0, 0xc00e227560, 0xc02382f320, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63188 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e827630, 0xc001dc5fb0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63189 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63190 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f82c440}, {0x7f7fb0611580, 0xc00c60c580}, {0x5e003f8?, 0x5749c00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa9420, {0x0?, 0x0?}, 0xc00e227560, 0xc01459cdc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa9420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d1ebf40?, {0x5d9c8a0, 0xc01dfec5a0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa9420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71237 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa9420, 0xc00e227560, 0xc023313ec0, 0xc00b63b7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78533 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25b548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25b538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25b530, {0xc001ccc600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccc600?, 0x3?, 0xc00abddc00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3be00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3be00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3be00, {0x4f3b7c0, 0xc023fb4108}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f90a2d0, {0xc0110c6400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062ca500, 0xc01d287b90?, {0x5dbd7f0, 0xc01f82c480}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da8900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82c440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63155 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0013236d8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0013236b0, 0xc0105ad300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c22f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e87d6b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c22f78?, 0x3b9aca00, 0x0, 0x0?, 0x1e5b523a6a5e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c22f00, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001323600, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79012 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a6ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a6ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a6ab0, {0xc0204ca200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204ca200?, 0x3?, 0x37e7be700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7040, {0x4f3b7c0, 0xc01d610468}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c94d0, {0xc009bc1000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072460, 0x2?, {0x5dbd7f0, 0xc01df08d80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fee80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63235 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc008faa120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63158 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01e8277c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63159 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63160 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc016e96100}, {0x7f7fb0611580, 0xc0013236b0}, {0x5e003f8?, 0x574f000}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82c9a0, {0x0?, 0x0?}, 0xc00e227560, 0xc01e82b700?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82c9a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46ef40?, {0x5d9c8a0, 0xc01e8278b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82c9a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71468 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc023ddba70}, 0x1, 0xc023dabf20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0200887b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc023df0240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78029 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fa000, 0xc004d0a300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f50300?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63196 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e855f38?, {0x5d9c8c0, 0xc01ef14060}, 0x1, 0xc00a776ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0xc01e855f88?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009aa4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63197 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009aa4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71559 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca590, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63199 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ee1ef38?, {0x5d9c8c0, 0xc01ef14090}, 0x1, 0xc00a776ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009aa42d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63200 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009aa42d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71689 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca610, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d45a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63202 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60c708, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60c6e0, 0xc0105fa990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f23e960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ef153b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f23e9d8?, 0x3b9aca00, 0x0, 0x0?, 0x22c5f2429ce6?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f23e960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00c60c630, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71690 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca610, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d45a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63204 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01dfecd70, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63205 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63206 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f509c0}, {0x7f7fb0611580, 0xc00c60c6e0}, {0x5e003f8?, 0x574a300}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa95e0, {0x0?, 0x0?}, 0xc00e227560, 0xc01459d600?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa95e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d794bc0?, {0x5d9c8a0, 0xc01dfecdc0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa95e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71337 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa95e0, 0xc00e227560, 0xc02340ce40, 0xc02106cfc0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72396 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07610, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78284 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd87c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd87b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd87b0, {0xc01f800c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f800c00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f557680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f557680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f557680, {0x4f3b7c0, 0xc023f464f8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd7e30, {0xc00a48c000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab6f50, 0xc01d287b90?, {0x5dbd7f0, 0xc023d01300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80c9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d012c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63243 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01dfed590, 0xc0025e2701?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63213 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4e98, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4e70, 0xc00ed52820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316b5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec817d0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316b658?, 0x3b9aca00, 0x0, 0x0?, 0x21aa019db505?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316b5e0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00c60c790, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63214 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60cbd8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60cbb0, 0xc0105fb590) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f23ee60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ef5e690}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f23eed8?, 0x3b9aca00, 0x0, 0x0?, 0x20fce3431380?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f23ee60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00c60c840, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63215 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0058b4f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc0058b4f20, 0xc00ed52b50) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc01316b680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ec81ad0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01316b6f8?, 0x3b9aca00, 0x0, 0x0?, 0x22f7c85e9264?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc01316b680, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00c60c8f0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63216 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c60cb28, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00c60cb00, 0xc0105fb0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc00f23ed20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01ef5e0f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00f23ed98?, 0x3b9aca00, 0x0, 0x0?, 0x1f18b746c9fd?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc00f23ed20, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00c60c9a0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63217 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001323788, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001323760, 0xc0105ad6a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c23040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01e87d9b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c230b8?, 0x3b9aca00, 0x0, 0x0?, 0x220ee97da6b9?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c23040, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00c60ca50, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63118 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00cce84f8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00cce84d0, 0xc00fff03c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011a5c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01f1b1710}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011a5c7f8?, 0x3b9aca00, 0x0, 0x0?, 0x1f28e4b21e0c?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011a5c780, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc00cce8420, 0xc01dbe3a00?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78211 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261680, 0xc0057fb300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09240?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63220 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01dfed720, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63221 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63222 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc0234c7780}, {0x7f7fb0611580, 0xc00c60cb00}, {0x5e003f8?, 0x574b100}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa97a0, {0x0?, 0x0?}, 0xc00e227560, 0xc01459dbe0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa97a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d795200?, {0x5d9c8a0, 0xc01dfed950}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa97a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71245 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa97a0, 0xc00e227560, 0xc0233607e0, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71469 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc023df0240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63163 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ee1f738?, {0x5d9c8c0, 0xc01ef5e4e0}, 0x1, 0xc00a777920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00e3081b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63164 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00e3081b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72624 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416dd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78656 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744648, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f3f5ac0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744630, {0xc006dfec01, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc006dfec01?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe1900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe1900, {0x4f3b7c0, 0xc01d610570}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0237dad50, {0xc010d85000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c0f0, 0xc0036de5a0?, {0x5dbd7f0, 0xc023e63e00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51220) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63167 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01dfed8b0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63168 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63225 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ef20738?, {0x5d9c8c0, 0xc01ef5e390}, 0x1, 0xc00a777860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc009aa57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63226 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc009aa57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63237 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01dfed270, 0xc00b6947b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63238 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63169 [select]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023f50800}, {0x7f7fb0611580, 0xc001323760}, {0x5e003f8?, 0x574ad80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82cb60, {0x0?, 0x0?}, 0xc00e227560, 0xc01e82b9e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82cb60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46f380?, {0x5d9c8a0, 0xc01e827a90}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82cb60, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63239 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f3f5880}, {0x7f7fb0611580, 0xc0058b4e70}, {0x5e003f8?, 0x5749f80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b1260, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebed440?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b1260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f313040?, {0x5d9c8a0, 0xc01ec5b090}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b1260, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71889 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82cb60, 0xc00e227560, 0xc013b346c0, 0xc021356270?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72150 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf5d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e6572757a612e72?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66624 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc013703dd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71720 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b1260, 0xc00e227560, 0xc00b4b1980, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63231 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01dfed400, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63232 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63233 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc023e62340}, {0x7f7fb0611580, 0xc00c60cbb0}, {0x5e003f8?, 0x574aa00}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01dfa9960, {0x0?, 0x0?}, 0xc00e227560, 0xc01ef6e000?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01dfa9960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00d795280?, {0x5d9c8a0, 0xc01dfedea0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01dfa9960, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71527 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01dfa9960, 0xc00e227560, 0xc023f83bc0, 0xc0068f9920?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78318 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fbcc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0120fbcb8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fbcb0, {0xc0238fc200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fc200?, 0x3?, 0x37f097e00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2dcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2dcc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2dcc0, {0x4f3b7c0, 0xc00b081440}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e4e40, {0xc00ab58800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835ceb0, 0x2?, {0x5dbd7f0, 0xc023b10080}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ffa60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b10040) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79018 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012f2c948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f2c938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012f2c930, {0xc0204cbe00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204cbe00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da7b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da7b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da7b80, {0x4f3b7c0, 0xc01d610bd0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02393e9c0, {0xc009bc1c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072af0, 0x2?, {0x5dbd7f0, 0xc01df09f40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff7c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71604 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d568738?, {0x5d9c8c0, 0xc01f597140}, 0x1, 0xc024087200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d5687b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b984630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63244 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63245 [select, 2 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df08dc0}, {0x7f7fb0611580, 0xc0058b4f20}, {0x5e003f8?, 0x574a680}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01d2b1420, {0x0?, 0x0?}, 0xc00e227560, 0xc01ebed6e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01d2b1420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f3130c0?, {0x5d9c8a0, 0xc01ec5b180}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01d2b1420, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71512 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d2b1420, 0xc00e227560, 0xc024086120, 0xc023039440?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71605 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b984630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78266 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d84c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84c30, {0xc00784b800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784b800?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05400, {0x4f3b7c0, 0xc00e381908}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3be780, {0xc024088000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54eb0, 0x6564227b3a22676f?, {0x5dbd7f0, 0xc0234c6e80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e74020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70870 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01d775340, 0xc00e227560, 0xc022898f60, 0xc002dae180?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66610 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc014a35560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78588 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394fb00, 0xc01f745400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc00ac4d900?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63121 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63810 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01eebaf38?, {0x5d9c8c0, 0xc012378510}, 0x1, 0xc00d8e2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01eebafb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00fc773b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66623 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0074f4f38?, {0x5d9c8c0, 0xc01d60dad0}, 0x1, 0xc013d6fce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0074f4fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc013703dd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63961 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01eebcf38?, {0x5d9c8c0, 0xc015a37a10}, 0x1, 0xc010b6dec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01eebcfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc014d63440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63685 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc0200031a0}, 0x1, 0xc00d4666c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x43df27?, 0x3b9aca00, 0x0, 0x20?, 0x3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00d0c2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71996 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bf620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63298 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f98df00}, {0x7f7fb0611580, 0xc00cce84d0}, {0x5e003f8?, 0x574bb80}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ee482a0, {0x0?, 0x0?}, 0xc00e227560, 0xc01ee4a8e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ee482a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01037a440?, {0x5d9c8a0, 0xc01edf3130}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ee482a0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71728 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ee482a0, 0xc00e227560, 0xc010df8de0, 0xc0048b7230?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78391 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013ee1b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ee1b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013ee1b30, {0xc00aa37600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa37600?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddd040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddd040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddd040, {0x4f3b7c0, 0xc0237f96e0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f5961b0, {0xc00849a000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55bd0, 0x5dd4e28?, {0x5dbd7f0, 0xc023fa1840}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa1780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63258 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00cce85a8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc00cce8580, 0xc00fff0650) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc011a5c820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01f1b19e0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc011a5c898?, 0x3b9aca00, 0x0, 0x0?, 0x1edeeb99f2eb?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc011a5c820, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001323810, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72207 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417cd0, 0x43) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019cffa20?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63302 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01eea62d0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63303 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63304 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01e32f680}, {0x7f7fb0611580, 0xc00cce8580}, {0x5e003f8?, 0x574c600}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01ee48460, {0x0?, 0x0?}, 0xc00e227560, 0xc01ee4ab80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01ee48460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01037a940?, {0x5d9c8a0, 0xc01edf3220}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01ee48460, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72103 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01ee48460, 0xc00e227560, 0xc000b43800, 0xc0048b7230?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78704 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f633cc8, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01df08a00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f633cb0, {0xc000068001, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000068001?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46d180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46d180) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46d180, {0x4f3b7c0, 0xc0234ca6d8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5cc00, {0xc00c189c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073e50, 0xc01932dd00?, {0x5dbd7f0, 0xc01f98db00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08a80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63307 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ef1cf38?, {0x5d9c8c0, 0xc01f1b1c80}, 0x1, 0xc00ba2ba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0094d4f30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63308 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0094d4f30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63259 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001323998, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001323970, 0xc0115143e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c23680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01eeabc50}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c236f8?, 0x3b9aca00, 0x0, 0x0?, 0x1dc60f3d98dc?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c23680, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc0013238c0, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64609 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ee93738?, {0x5d9c8c0, 0xc00abd5740}, 0x1, 0xc009ddcd80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ee937b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a3278c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63261 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01eea6460, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63262 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63263 [select, 6 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01df09480}, {0x7f7fb0611580, 0xc001323970}, {0x5e003f8?, 0x574c280}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82cfc0, {0x0?, 0x0?}, 0xc00e227560, 0xc01ee9e3e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82cfc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46fd40?, {0x5d9c8a0, 0xc01eea64b0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82cfc0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71774 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82cfc0, 0xc00e227560, 0xc00e881d40, 0xc013c32b10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78190 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d84048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013d84038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d84030, {0xc00784a400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00784a400?, 0x3?, 0x37e9d8600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00cab1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00cab1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00cab1a40, {0x4f3b7c0, 0xc00e3811b8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f5805d0, {0xc01aa2d000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f549b0, 0x2?, {0x5dbd7f0, 0xc023e63900}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c514a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e638c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72664 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca2d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4765a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72041 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01eebdf38?, {0x5d9c8c0, 0xc01434d5c0}, 0x1, 0xc0140f6ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01eebdfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc013035ef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63316 [sync.Cond.Wait, 13 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc001323af8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x503227?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*DeltaFIFO).Pop(0xc001323ad0, 0xc0115147e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/delta_fifo.go:575 +0x256 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).processLoop(0xc013c237c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:188 +0x36 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x11517a5?, {0x5d9c8c0, 0xc01eebf2f0}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013c23838?, 0x3b9aca00, 0x0, 0x0?, 0x20f7970b9f74?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run(0xc013c237c0, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:159 +0x34f +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedIndexInformer).Run(0xc001323a20, 0x57f9760?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:504 +0x224 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked.func1() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:233 +0x95 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).startInformerLocked +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/cache/internal/informers.go:231 +0xba +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63317 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01df78f38?, {0x5d9c8c0, 0xc01eebf5c0}, 0x1, 0xc00ba47740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc01bb0c6f0?, 0x3b9aca00, 0x0, 0x0?, 0x99?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00cd78bd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63318 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00cd78bd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72669 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca710, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d48c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63321 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*sharedProcessor).run(0xc01eea6820, 0xc01ef1d7b0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:803 +0x58 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63322 [chan receive, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*controller).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:132 +0x28 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*controller).Run +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/controller.go:131 +0xc5 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63323 [select, 4 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.watchHandler({0x0?, 0x0?, 0x885a1e0?}, {0x5dbda48, 0xc01f379440}, {0x7f7fb0611580, 0xc001323ad0}, {0x5e003f8?, 0x5738400}, 0x0, ...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:714 +0x185 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).watch(0xc01e82d180, {0x0?, 0x0?}, 0xc00e227560, 0xc01ee9e760?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:433 +0x548 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch(0xc01e82d180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:358 +0x34e +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:291 +0x26 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x10?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00f46fdc0?, {0x5d9c8a0, 0xc01eea6960}, 0x1, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).Run(0xc01e82d180, 0xc00e227560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:290 +0x17d +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).StartWithChannel.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:55 +0x22 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72060 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82d180, 0xc00e227560, 0xc0150a7c80, 0xc0150a73e0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78538 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00e25ac48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00e25ac38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00e25ac30, {0xc0004b1400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0004b1400?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefcf00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefcf00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefcf00, {0x4f3b7c0, 0xc023b8a768}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fd860, {0xc00e597400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca4b0, 0x2?, {0x5dbd7f0, 0xc023cad140}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cad100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72242 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca190, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78251 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b8180, 0xc01f9a0a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc01293de60?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78518 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859200, 0xc023460d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc54c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63277 [select, 13 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00c9a0b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78399 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7380, 0xc0038c1c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc4100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72273 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf950, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109efec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063a40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69624 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d4e0f38?, {0x5d9c8c0, 0xc01c97dcb0}, 0x1, 0xc01c969a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d4e0fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01d3f78c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72387 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca850, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63484 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc01f3e25d0}, 0x1, 0xc00a1b55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ef1ffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00f621b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64362 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01f9b0738?, {0x5d9c8c0, 0xc00e3df530}, 0x1, 0xc009b4e8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01f9b07b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a0d2630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63686 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00d0c2fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65036 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf410, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68514 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0162daf38?, {0x5d9c8c0, 0xc0191765a0}, 0x1, 0xc01915c960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0162dafb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01923f560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78449 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c858a80, 0xc023460400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b4240?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63608 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00dc9a240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78034 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad5380, 0xc023461600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64819 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a9d8990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63962 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc014d63440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78591 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c728900, 0xc00a186000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc01293c5a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78388 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1980, 0xc004d0bc00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72259 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca210, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78168 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394ef00, 0xc023f28c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc00ac4da40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64392 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00f12d5f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72502 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca290, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd900, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72223 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf2d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102818c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78567 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870c48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012870c38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870c30, {0xc00e483200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e483200?, 0x3?, 0xc002c74400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181400, {0x4f3b7c0, 0xc01d237560}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f8059b0, {0xc00aef7800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06960, 0x5dd4e28?, {0x5dbd7f0, 0xc01f16dbc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cff660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16db80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63811 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00fc773b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72389 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63631 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ec87f38?, {0x5d9c8c0, 0xc01f8be930}, 0x1, 0xc00bffa780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ec87fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00f52f680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63632 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00f52f680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72563 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca450, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdf40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63887 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0040b1f38?, {0x5d9c8c0, 0xc0147fdb60}, 0x1, 0xc000579920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0040b1fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00f92cc60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78317 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fbc80, 0xc00bdd2e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f51e00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64158 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b55df38?, {0x5d9c8c0, 0xc011347f80}, 0x1, 0xc00fd04ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b55dfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00e92cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72190 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfcd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72360 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07910, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3498c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78413 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da7080, 0xc02043c100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc010ba3b00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63946 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01eebd738?, {0x5d9c8c0, 0xc012814c90}, 0x1, 0xc01574ade0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01eebd7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc014654bd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 63947 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc014654bd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68406 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018c7f830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72413 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca810, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65641 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a53cf38?, {0x5d9c8c0, 0xc01025e2d0}, 0x1, 0xc01048ca20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a53cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00cde0990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64363 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a0d2630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71563 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca590, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65652 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b8c8f38?, {0x5d9c8c0, 0xc00ffb2f60}, 0x1, 0xc00f8d3380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b8c8fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00c911830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64738 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a3278c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65035 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf410, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78301 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6480, 0xc01f9a1a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32e5c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64159 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00e92cfc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78002 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f633800, 0xc01f9a0000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc4600?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78564 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c859e00, 0xc023461800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16d500?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72260 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca210, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64814 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0074f8f38?, {0x5d9c8c0, 0xc00785c180}, 0x1, 0xc00b3aa480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0074f8fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a467c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64952 [chan receive, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0074f2f38?, {0x5d9c8c0, 0xc00cc77a70}, 0x1, 0xc00ba063c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0074f2fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00aee6e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66028 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b887f38?, {0x5d9c8c0, 0xc011ee0600}, 0x1, 0xc010c0b380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b887fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc011fbefc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72606 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca910, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72355 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65037 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf410, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65034 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf410, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70481 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e74df38?, {0x5d9c8c0, 0xc021bf6480}, 0x1, 0xc021bd70e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc021bef320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65378 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01f9aa738?, {0x5d9c8c0, 0xc010dd7170}, 0x1, 0xc010700a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01f9aa7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00cce63f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64389 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00f12d560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78215 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261980, 0xc0057fb500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09700?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72203 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de74738?, {0x5d9c8c0, 0xc012815710}, 0x1, 0xc01128a840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0x1151060?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0158634d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64815 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00a467c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78568 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870f00, 0xc023461c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16db80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66875 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf6d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130634a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65067 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0095daf38?, {0x5d9c8c0, 0xc00da16060}, 0x1, 0xc00a777200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0095dafb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00bc930e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67187 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc014a5c738?, {0x5d9c8c0, 0xc01df22390}, 0x1, 0xc0152fde60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc014a5c7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc015880f30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72477 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416650, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65030 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b55d738?, {0x5d9c8c0, 0xc00e1c24b0}, 0x1, 0xc009438d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00813ffc0?, 0x3b9aca00, 0x0, 0x20?, 0xc00b55d738?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b42b830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64818 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b60e738?, {0x5d9c8c0, 0xc00abbe5a0}, 0x1, 0xc00a3fc000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b60e7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00a9d8990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66434 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a53d738?, {0x5d9c8c0, 0xc016c94360}, 0x1, 0xc01098e1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a53d7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0110dc870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72584 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf750, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f169c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64953 [select, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00aee6e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65031 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b42b830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72033 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca850, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72401 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf390, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65081 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0074f2738?, {0x5d9c8c0, 0xc00cd6ad80}, 0x1, 0xc00bb9e6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0074f27b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b28ce10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78642 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85680, 0xc0237f0100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f4040?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72373 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07910, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3498c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64956 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf490, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64957 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf490, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64958 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf490, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x53223a226e6f6974?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64959 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf490, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x747265706f725022?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64961 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf510, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226570797422?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64994 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf510, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64995 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf510, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x39?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 64996 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf510, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013ff5a50?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b5c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65082 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b28ce10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65039 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf350, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65040 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf350, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65041 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf350, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65042 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf350, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65044 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf3d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff91a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65045 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf3d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x4b6e49657a695368?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff91a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65046 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf3d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x282f7370756f7267?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff91a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65047 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf3d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7265666552656372?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff91a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72593 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07650, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cdc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69225 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01b3195f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70027 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01dfacf38?, {0x5d9c8c0, 0xc020414780}, 0x1, 0xc02040cde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01dfacfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc020405d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72556 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416390, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67577 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc016ec5290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66878 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf6d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130634a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65415 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ccf73b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78542 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013d856c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc001338bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013d856b0, {0xc01f800000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f800000?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefd900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefd900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefd900, {0x4f3b7c0, 0xc023b8aba0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc000191e00, {0xc007db1000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231ca820, 0x2?, {0x5dbd7f0, 0xc023cadc00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4acae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cadbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77676 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200d80, 0xc023460600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78494 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb9200, 0xc023941600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f82c880?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65285 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0095dcf38?, {0x5d9c8c0, 0xc00dae2480}, 0x1, 0xc00c3c8ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x202c70756f724720?, 0x3b9aca00, 0x0, 0x61?, 0x65707974222c222e?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00b78d710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78604 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200480, 0xc023f29100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f794c40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78401 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7500, 0xc0038c1d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc4400?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78664 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023f38900, 0xc004d0b100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63c00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78560 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394e780, 0xc02043d600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b5ac0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65286 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00b78d710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72311 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf690, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130632c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65289 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040be2d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x4d656372756f7365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65290 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040be2d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2f65727574636574?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65291 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040be2d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f46202e6e6f7075?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65292 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040be2d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6669646f6d207473?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fcf00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68515 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01923f560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66498 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc000ad8f38?, {0x5d9c8c0, 0xc01bd16db0}, 0x1, 0xc01381bce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc000ad8fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc012ef2510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78566 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870c00, 0xc023461900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16d800?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67967 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018152b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72324 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416810, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65473 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00ed03b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65993 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00580a738?, {0x5d9c8c0, 0xc010ff6150}, 0x1, 0xc013f9b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00580a7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc010b5d3b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66947 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e657738?, {0x5d9c8c0, 0xc01d299380}, 0x1, 0xc0142fe240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01e6577b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0142ec870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69384 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01c7f9200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78248 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00c729c80, 0xc01f9a0500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f4980?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66877 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf6d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130634a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67645 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b68c738?, {0x5d9c8c0, 0xc01efc9bf0}, 0x1, 0xc01745c6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b68c7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01745a990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72537 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416490, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 65472 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a541f38?, {0x5d9c8c0, 0xc013837b30}, 0x1, 0xc0108c7c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a541fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00ed03b90) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78703 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f633c80, 0xc0057e4100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08700?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68719 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01551cf38?, {0x5d9c8c0, 0xc01a210060}, 0x1, 0xc019ff95c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01551cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc019ff75f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72326 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416810, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78537 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25ac00, 0xc023df2700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc012f86120?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66013 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b82ef38?, {0x5d9c8c0, 0xc013d0eb40}, 0x1, 0xc010865260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b82efb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc010ddc990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68260 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc007004f38?, {0x5d9c8c0, 0xc018ad2540}, 0x1, 0xc018ac0c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc007004fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018f96360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66349 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc011ca2cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66307 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b5f3f38?, {0x5d9c8c0, 0xc012c56e10}, 0x1, 0xc012955680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b5f3fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0128622d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67544 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf050, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130623c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66948 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0142ec870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78286 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9080, 0xc00a187d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d012c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78716 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6c00, 0xc005791900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d00a40?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69107 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b68cf38?, {0x5d9c8c0, 0xc01a9c8f90}, 0x1, 0xc01a9d6960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b68cfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a9e6090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69625 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01d3f78c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72191 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfcd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69528 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0074f4738?, {0x5d9c8c0, 0xc01cf62a50}, 0x1, 0xc01d1009c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0074f47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01cf6ad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78988 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a7b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0136a7b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a7b30, {0xc0204cae00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204cae00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da6640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da6640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da6640, {0x4f3b7c0, 0xc01d610f78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01a9c8720, {0xc0137f9000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190726e0, 0x2?, {0x5dbd7f0, 0xc01df09c80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fffe0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df09b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78469 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012422900, 0xc01f0d0300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00bf2a7e0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78335 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4300, 0xc00bdd3b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b11940?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69108 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a9e6090) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72274 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf950, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109efec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063a40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72745 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07850, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69610 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01c9d4738?, {0x5d9c8c0, 0xc01d271ef0}, 0x1, 0xc01dd66ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01c9d47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01dd70240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68795 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc019200f38?, {0x5d9c8c0, 0xc01a0e3770}, 0x1, 0xc01a0bd800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc019200fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a24a870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78154 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c2600, 0xc00a186100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67901 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0184a0360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66348 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a00c738?, {0x5d9c8c0, 0xc011cf4cf0}, 0x1, 0xc0132e6600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a00c7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc011ca2cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72750 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07690, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72192 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfcd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66509 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0113a2cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78234 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c3e00, 0xc00a186d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98da00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78589 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc02394fe00, 0xc01f745700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc00ac4d900?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66435 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0110dc870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67257 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01eeb8f38?, {0x5d9c8c0, 0xc01e53b470}, 0x1, 0xc015fca660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01eeb8fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc015ff2240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72402 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf150, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130626e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72257 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca8d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5738c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66499 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc012ef2510) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72193 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfcd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9dce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66730 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf9d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063c20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78838 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58b248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58b238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58b230, {0xc00b0b8a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b8a00?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023afd680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023afd680) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023afd680, {0x4f3b7c0, 0xc01d236960}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f804cf0, {0xc011db7c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c9b0, 0x2?, {0x5dbd7f0, 0xc023b11380}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80d020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72619 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bffd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78435 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7680, 0xc0038c1e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023bc4900?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67436 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01683b0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66733 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf9d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf21e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063c20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78145 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd84c8, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023e63080?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd84b0, {0xc0006c3201, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0006c3201?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f5cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f5cc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f5cc0, {0x4f3b7c0, 0xc023e5ed08}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f580480, {0xc01f783000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f547d0, 0xc023da9170?, {0x5dbd7f0, 0xc023f51a80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023938a00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66738 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01382c738?, {0x5d9c8c0, 0xc01d60db00}, 0x1, 0xc013d6fd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc00ed27c50?, 0x3b9aca00, 0x0, 0xe0?, 0xc01371eb80?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc013703e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66739 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc013703e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66763 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf890, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x21?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66764 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf890, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66765 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf890, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66766 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf890, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x103?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66768 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf7d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66769 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf7d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66786 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf7d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x8b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66787 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf7d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66789 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf810, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xb5?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66790 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf810, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xb5?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66791 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf810, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xb2?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66792 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf810, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f17aa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66609 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc013831738?, {0x5d9c8c0, 0xc01d89ccc0}, 0x1, 0xc014966300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0138317b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc011bafef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 66802 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc011bafef0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78876 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394f248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc02394f238?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394f230, {0xc00a3abe00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3abe00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefd2c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefd2c0, {0x4f3b7c0, 0xc01d237d70}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f580f90, {0xc011ec6000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d810, 0x5dd4e28?, {0x5dbd7f0, 0xc0236b5840}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da9a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b56c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72487 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca750, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68720 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc019ff75f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77921 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261500, 0xc0057fb100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df09000?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67769 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0174e8360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67541 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf050, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130623c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78429 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25a480, 0xc023df2600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68796 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a24a870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72155 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf210, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x756c43646567616e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102809c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78134 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120faa80, 0xc004d0a900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f51300?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78158 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c2f00, 0xc00a186300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c6c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67188 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc015880f30) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67646 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01745a990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78658 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b9e00, 0xc004d0ad00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e63100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69224 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d253f38?, {0x5d9c8c0, 0xc01b9f2960}, 0x1, 0xc01ac75bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x43df27?, 0x3b9aca00, 0x0, 0x40?, 0x3?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01b3195f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72492 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfdd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78055 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb8c00, 0xc0057e4f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0236b48c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69559 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0186c1f38?, {0x5d9c8c0, 0xc01d1d0c30}, 0x1, 0xc01d1d2c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0186c1fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01d1de000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78571 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012871680, 0xc023461e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f16de00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67203 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb021e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67204 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb021e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67205 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb021e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67206 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb021e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67209 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfed0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67210 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfed0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67211 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfed0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78692 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022200c00, 0xc023f29500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f795580?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72760 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416a90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197df40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67227 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01f9adf38?, {0x5d9c8c0, 0xc01e640750}, 0x1, 0xc0162ca360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01f9adfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0162ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67228 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0162ce240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72482 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416550, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197db80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70752 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0228a4ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72770 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417710, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71357 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc023a96d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72546 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca410, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72187 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064164d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197da40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67576 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b688738?, {0x5d9c8c0, 0xc01e6c2f00}, 0x1, 0xc016dc66c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b6887b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc016ec5290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68840 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a4206c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68731 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc018e89738?, {0x5d9c8c0, 0xc019cf50e0}, 0x1, 0xc019cfd1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x696b222c65757274?, 0x3b9aca00, 0x0, 0x75?, 0x6563697672655365?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc019cf9710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70902 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc022953cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67747 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc017636fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68742 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc018e82f38?, {0x5d9c8c0, 0xc0199fec00}, 0x1, 0xc0199fa9c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc018e82fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a150630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72622 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bffd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78394 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6480, 0xc0038c1900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68402 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b532738?, {0x5d9c8c0, 0xc018c63f50}, 0x1, 0xc018d540c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b5327b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018c7f7a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78351 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee1380, 0xc004d0ba00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc013434a20?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72322 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf650, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78265 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84c00, 0xc01f745d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6980?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69638 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417450, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x58312d8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 67904 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0184a03f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72305 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf650, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71113 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0232b3200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68053 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0184a1200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78715 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf6038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6030, {0xc0207ab800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207ab800?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f5577c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f5577c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f5577c0, {0x4f3b7c0, 0xc00b080b10}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4fe60, {0xc00f71b000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb5e0, 0xc02393e000?, {0x5dbd7f0, 0xc023d00a80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca2b80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d00a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68043 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00de70f38?, {0x5d9c8c0, 0xc018b44030}, 0x1, 0xc018b22540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00de70fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018b20990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68044 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018b20990) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72369 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca410, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78679 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013ee0000, 0xc01f9a0900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc011bde6c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72368 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca410, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68088 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc014a5af38?, {0x5d9c8c0, 0xc0189a9890}, 0x1, 0xc01896eb40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x63736275737b2f73?, 0x3b9aca00, 0x0, 0x72?, 0x756f7365727b2f73?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0189cc000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68089 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0189cc000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72263 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a078d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3495c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71356 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc023467a40}, 0x1, 0xc02340cde0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0186c2fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc023a96d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69637 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417450, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5d8d900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68155 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0162d7f38?, {0x5d9c8c0, 0xc018c82930}, 0x1, 0xc018b7e1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x646e694b202c7075?, 0x3b9aca00, 0x0, 0x4e?, 0x73223a2265707974?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc018c92360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68156 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018c92360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78106 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012870480, 0xc01f744b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023c2d5c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68178 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07810, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ff80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68179 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07810, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ff80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68180 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07810, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x24?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ff80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68181 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07810, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x28?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ff80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68183 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07710, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x81?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68184 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07710, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x44?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68185 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07710, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68186 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07710, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x28?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31ef60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68188 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a077d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xac?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68189 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a077d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xd1?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68190 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a077d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xa2?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68191 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a077d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31fc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68630 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01dfaff38?, {0x5d9c8c0, 0xc019bcdd10}, 0x1, 0xc019bd1e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01dfaffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc019bfe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68261 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018f96360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68944 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00ac54f38?, {0x5d9c8c0, 0xc01a901290}, 0x1, 0xc01a6f5f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00ac54fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a922240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79043 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013744038?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744030, {0xc00e6d1600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d1600?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0101808c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0101808c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0101808c0, {0x4f3b7c0, 0xc023e5f860}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78bb00, {0xc0191e7800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d7c0, 0x2?, {0x5dbd7f0, 0xc01f82d740}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab81e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72804 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:320 +0x73 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:318 +0x13d +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68743 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a150630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68269 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc018f97830) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72386 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca850, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4aa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78066 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c728dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00c728db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c728db0, {0xc009fd8c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009fd8c00?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0059f4140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0059f4140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0059f4140, {0x4f3b7c0, 0xc023947518}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f7be6c0, {0xc00a349800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c280, 0x5dd4e28?, {0x5dbd7f0, 0xc01f69e4c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fe800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69e480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68820 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a1a6480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68454 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0186bff38?, {0x5d9c8c0, 0xc0193ad0b0}, 0x1, 0xc019395860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0186bffb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0193af5f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68455 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0193af5f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72464 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf590, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68457 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc019206f38?, {0x5d9c8c0, 0xc0193ad0e0}, 0x1, 0xc0193958c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x4146424441494e67?, 0x3b9aca00, 0x0, 0x4b?, 0x346563306b2f6732?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0193af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68458 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0193af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72463 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf590, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78456 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf6f00, 0xc01f0d0100) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e32f680?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72704 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bec60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72432 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78141 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b8f00, 0xc004d0a600) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023e628c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78381 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f633380, 0xc023941b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df08500?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68381 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d4dbf38?, {0x5d9c8c0, 0xc0190d7f20}, 0x1, 0xc0190d1c80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d4dbfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0190e59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68382 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0190e59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72694 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064176d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68819 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01a164f38?, {0x5d9c8c0, 0xc01a19ae40}, 0x1, 0xc01a193ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0xc013082460?, 0x3b9aca00, 0x0, 0x14?, 0x5831288?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a1a6480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78416 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da7b00, 0xc02043c300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68579 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01937e2d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72696 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064176d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69315 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01a161f38?, {0x5d9c8c0, 0xc01bf2a030}, 0x1, 0xc01ad6f800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01a161fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01bf07290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78489 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb8d80, 0xc023940b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc012f86120?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71983 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063e00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72185 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064164d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197da40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69369 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00b697738?, {0x5d9c8c0, 0xc01bdbd800}, 0x1, 0xc01bddd0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00b6977b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01bdcf710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78400 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0136a73c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc000f12bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0136a73b0, {0xc00ee74000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00ee74000?, 0x3?, 0xffffffffffffff00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc01430e140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc01430e140) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc01430e140, {0x4f3b7c0, 0xc0237f9e30}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f320e70, {0xc00849ac00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55ef0, 0x5dd4e28?, {0x5dbd7f0, 0xc023bc4440}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ba4920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72771 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417710, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78396 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a7080, 0xc0038c1a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023fa1dc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78643 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d85800, 0xc0237f0200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f4040?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68936 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01a167738?, {0x5d9c8c0, 0xc01a9002a0}, 0x1, 0xc01a6f5560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01a1677b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a6fad80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71066 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0228f5f38?, {0x5d9c8c0, 0xc022eec240}, 0x1, 0xc022e95e00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc022ecbdd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72407 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07890, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 68945 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a922240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78602 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261200, 0xc023f29000) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72555 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416390, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69383 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0162d6738?, {0x5d9c8c0, 0xc01cc161b0}, 0x1, 0xc01c7f0a20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0162d67b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01c7f9200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69393 [chan receive, 8 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01c9d4738?, {0x5d9c8c0, 0xc01cc17800}, 0x1, 0xc01c7f1860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01c9d47b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01cc415f0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77979 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6f00, 0xc005790200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cad640?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69110 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01a166f38?, {0x5d9c8c0, 0xc01a9c8fc0}, 0x1, 0xc01a9d69c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01a166fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01a9e6120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69111 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01a9e6120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72642 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca5d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4afe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d43c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69316 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01bf07290) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72720 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417350, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77912 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f260a80, 0xc0057fa500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01df081c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72422 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064168d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197de00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69370 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01bdcf710) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72780 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf610, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69374 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01bdcfc20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72554 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416390, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72342 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf910, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78077 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fb080, 0xc00bdd2400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78156 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0121c2c00, 0xc00a186200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98c480?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69421 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01c966750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69420 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01a163738?, {0x5d9c8c0, 0xc01c93db90}, 0x1, 0xc01c9685a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01a1637b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01c966750) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72564 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca450, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdf40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69434 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01cbb8c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78023 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da7500, 0xc0058bff00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69560 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01d1de000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72785 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416b50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3821e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc140, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72088 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x732f6d6f632e6572?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72356 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69639 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417450, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x582ca85?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69640 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417450, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72106 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca250, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44dbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69663 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01d9521b0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72583 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf750, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f169c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71364 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0238cd320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70659 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc021e47560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69804 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01c9db738?, {0x5d9c8c0, 0xc01e4cf110}, 0x1, 0xc01e4b5320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01c9db7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc01e734900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 69805 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc01e734900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72261 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca210, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d980) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78942 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad4dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad4db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad4db0, {0xc0207ab600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207ab600?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f556f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f556f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f556f00, {0x4f3b7c0, 0xc01d610630}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafc4e0, {0xc00b470400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0062cadc0, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01df08300}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72160 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064160d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5c3a225c4c525563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71562 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca590, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71388 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0237ff9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77996 [select, 8 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4780, 0xc023461200) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc013b32d80?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71387 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc023ca4c60}, 0x1, 0xc0237dd020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0228f1fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0237ff9e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71506 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*Reflector).startResync(0xc01e82c9a0, 0xc00e227560, 0xc023cea5a0, 0xc0237dd080?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:370 +0x114 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/cache.(*Reflector).ListAndWatch +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/reflector.go:357 +0x32a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70028 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc020405d40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72384 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf850, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71155 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc022ef8f38?, {0x5d9c8c0, 0xc0230579e0}, 0x1, 0xc023038ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc02305cbd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78688 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad4f00, 0xc0058bfb00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f69e200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71221 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc0228eef38?, {0x5d9c8c0, 0xc0233c2f00}, 0x1, 0xc022fd4ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0228eefb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc0233caab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71561 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca590, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc009bd1800?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78655 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58a480, 0xc0237f1e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f5180?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71222 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0233caab0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72303 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf650, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70722 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc021bef320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78189 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013d84000, 0xc01f745500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023f50ec0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72542 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064178d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78810 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012980648, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f82d840?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012980630, {0xc000068601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc000068601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181900, {0x4f3b7c0, 0xc023b8b200}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78afc0, {0xc023dc5800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c066e0, 0xc00e26c480?, {0x5dbd7f0, 0xc01f3f5340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32fda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82d8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72148 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf5d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72397 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07610, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72154 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf210, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x756c43646567616e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102809c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71317 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01ee1e738?, {0x5d9c8c0, 0xc0234a65a0}, 0x1, 0xc0231ad680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01ee1e7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc023774e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70658 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e74bf38?, {0x5d9c8c0, 0xc021e451d0}, 0x1, 0xc021e66000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01e74bfb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc021e47560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72399 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf390, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72091 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79050 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc013745680, 0xc0058c6d00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d01880?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72325 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416810, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70901 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc00a410738?, {0x5d9c8c0, 0xc0228ec360}, 0x1, 0xc022899bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc00a4107b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc022953cb0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72195 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf450, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736275732f223a22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70837 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd90, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72628 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a076d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70838 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70839 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70840 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78281 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd8600, 0xc00a187a00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71318 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc023774e10) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71509 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc023cf2cc0}, 0x1, 0xc0240860c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc018e837b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc023cf4870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70933 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc022b9b8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72309 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf690, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010509b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130632c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70980 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01e74a738?, {0x5d9c8c0, 0xc022b27170}, 0x1, 0xc0221abbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01e74a7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc022b210e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 70981 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc022b210e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72427 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063f40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72196 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf450, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72157 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064160d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72036 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc01d11c738?, {0x5d9c8c0, 0xc01434c810}, 0x1, 0xc0140f6660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc01d11c7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc013034cf0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71633 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca150, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72159 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064160d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71510 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc023cf4870) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72690 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416dd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78532 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25b500, 0xc023df2c00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72197 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf450, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff9f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72093 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca050, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4114a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78135 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0234b8000, 0xc0057fa900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72395 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07610, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78219 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00f261c80, 0xc0057fbd00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71447 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0x4723a7?, {0x5d9c8c0, 0xc023bca300}, 0x1, 0xc023bce300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc022efd7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc023bb1dd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71448 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc023bb1dd0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72625 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416dd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72693 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064176d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72107 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca250, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44dbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71929 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc024017738?, {0x5d9c8c0, 0xc01ac2aed0}, 0x1, 0xc014e18ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc0240177b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00dbf6d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72153 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf210, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102809c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71984 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f736572223a226e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063e00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72158 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064160d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a3c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72149 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf5d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e7552223a226574?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71632 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca150, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72152 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf210, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x77223a226e6f6974?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102809c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71650 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca150, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71651 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca150, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c840) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71652 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc02401bf38?, {0x5d9c8c0, 0xc01f2e0d20}, 0x1, 0xc00bc4a1e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x0?, 0x0?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00c2a4630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71653 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00c2a4630) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72452 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416850, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71659 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca110, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44c600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71661 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca0d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71662 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca0d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71663 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca0d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71664 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca0d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411e60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71667 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca350, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71668 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca350, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71669 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca350, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476f60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71671 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca310, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cda40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71672 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca310, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cda40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71673 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca310, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cda40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71674 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca310, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cda40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71616 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca3d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b477920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cde00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71617 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca3d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b477920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cde00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71686 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaad0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5beea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d5040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71687 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaad0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5beea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d5040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71692 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca610, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe060) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d45a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78536 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25a780, 0xc023df2300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc012f86120?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72390 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72383 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf850, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71755 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc023a6e738?, {0x5d9c8c0, 0xc01f8a1410}, 0x1, 0xc00bffb1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc023a6e7b8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc00bd96360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71756 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00bd96360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72497 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417e10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4108a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72089 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfd10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181a000) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72392 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71985 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063e00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78236 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00ab1de00, 0xc00a186e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f98dcc0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72147 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf5d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508600) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72137 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063d60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71987 [chan receive, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:969 +0x57 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1(0x30?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:226 +0x3e +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.BackoffUntil(0xc024017f38?, {0x5d9c8c0, 0xc01c189230}, 0x1, 0xc010df9380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:227 +0xb6 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.JitterUntil(0x0?, 0x3b9aca00, 0x0, 0x50?, 0xc024017fb8?) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:204 +0x89 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.Until(...) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/backoff.go:161 +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).run(0xc014dea5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:968 +0x6b +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71930 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc00dbf6d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72394 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07610, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72227 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfbd0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7069726373627573?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71988 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc014dea5a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72679 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d10, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71991 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf090, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71992 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf090, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71993 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf090, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71994 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf090, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x65706f222c22746e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71998 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x90?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bf620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 71999 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6572507373657264?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bf620) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72108 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca250, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44dbc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72138 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063d60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72119 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca790, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72120 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca790, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffda0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72122 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416410, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72123 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416410, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72124 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416410, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2f73656361707365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72139 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063d60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72125 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416410, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2f6d6f632e657275?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d7c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72127 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417ed0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x222c7d7d7b3a2222?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72128 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417ed0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a226e6f69746172?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72129 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417ed0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6a6a747a67692d67?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72162 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417ed0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x656e696863614d6c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410ae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd360, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72141 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72142 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e65726566655274?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72143 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72144 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383ce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc320, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72164 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf290, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3166623730383322?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102815c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130628c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72165 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf290, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x227963696c6f5074?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102815c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130628c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72166 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf290, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72617453223a2265?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102815c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130628c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72167 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf290, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102815c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130628c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72169 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf250, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6972656e696174?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010280cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72178 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x657220726f662073?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72170 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf250, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x746f73612f737075?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010280cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72171 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf250, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f74617265706f65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010280cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72179 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e6572757a612e73?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72172 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf250, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010280cc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72180 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6f73616572222c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72181 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72174 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca1d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a7370747468225c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72175 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca1d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x37646666342d6461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72176 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca1d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72177 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca1d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6d6f632e6572757a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b44d200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd860, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72211 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417c50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72212 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417c50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72676f72506e4922?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72213 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417c50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f7270227b3a2273?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72214 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417c50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72216 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf310, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72217 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf310, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72218 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf310, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72219 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf310, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062a00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72201 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca010, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72202 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca010, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72228 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfbd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f63227b5b3a2273?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72229 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfbd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e227b3a22736e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72230 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfbd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9c780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72232 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf190, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102800c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72233 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf190, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102800c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72234 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf190, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7d7d225c73736572?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102800c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72235 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf190, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x657243227b3a2273?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102800c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72204 [select, 12 minutes]: +[controller:test-integration-envtest] k8s.io/client-go/tools/cache.(*processorListener).pop(0xc0158634d0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/cache/shared_informer.go:939 +0x119 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:72 +0x5a +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/util/wait.(*Group).Start +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/wait/wait.go:70 +0x85 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78427 [select, 6 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00fad5b00, 0xc023df2400) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72247 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063cc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72248 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063cc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72249 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063cc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72250 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063cc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72265 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a078d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3495c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72266 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a078d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3495c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72253 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca090, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72254 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca090, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72255 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca090, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b411c20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72268 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf0d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130625a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72269 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf0d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x707474682d6f4722?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130625a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72270 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf0d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130625a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72271 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf0d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fd6e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130625a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72208 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417cd0, 0x44) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01eace2e0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72209 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417cd0, 0x45) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a4ac2a0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8d80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccfa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72275 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf950, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109efec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063a40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72276 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf950, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109efec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063a40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72278 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417dd0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72279 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417dd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72280 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417dd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72281 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417dd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b410120) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd220, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72283 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07590, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011444de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197caa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72284 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07590, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011444de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197caa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72285 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07590, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011444de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197caa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72286 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07590, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011444de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197caa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72288 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416190, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72289 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416190, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72290 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416190, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72291 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416190, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d540, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72293 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416350, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72294 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416350, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72295 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416350, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72296 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416350, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72298 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d90, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72299 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72300 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72301 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72412 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca810, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72327 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416810, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4480) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72338 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca8d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5738c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72339 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca8d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5738c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72340 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca8d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5738c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4be0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72329 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca650, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72330 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca650, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72331 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca650, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72332 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca650, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fe7e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72334 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72343 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf910, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72344 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf910, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72345 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf910, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72335 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72336 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72337 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9500) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72347 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca4d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d40a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72348 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca4d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d40a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72349 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca4d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d40a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72350 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca4d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aecc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d40a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72357 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72358 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72353 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf8d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130637c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72370 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf8d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130637c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72371 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf8d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ef260) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130637c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72361 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07910, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3498c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72313 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf790, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f16d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130635e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72314 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf790, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f16d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130635e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72315 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf790, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f16d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130635e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72094 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca050, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4114a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72095 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca050, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4114a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72096 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca050, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4114a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd4a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72403 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf150, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130626e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72404 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf150, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130626e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72362 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07910, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646567616e616d65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3498c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72316 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf790, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6972656e696174?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f16d20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130635e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72405 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf150, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226567617373?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130626e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72803 [chan receive]: +[controller:test-integration-envtest] k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher.func1() +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:320 +0x73 +[controller:test-integration-envtest] created by k8s.io/client-go/tools/record.(*eventBroadcasterImpl).StartEventWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/tools/record/event.go:318 +0x13d +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72408 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07890, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72409 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07890, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6572222c7d5d7d7d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72410 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07890, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348c60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d2c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72414 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca810, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6b2e736e6f69736e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72374 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca890, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x303030302d303030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72375 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca890, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x44223a226e6f6974?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72376 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca890, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72377 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca890, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573140) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4c80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72385 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf850, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72547 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca410, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x617453223a22756b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae0c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdd60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72415 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca810, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572780) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72417 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca490, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72418 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca490, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72419 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca490, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72420 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca490, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4aea80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72423 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064168d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x656761726f747331?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197de00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72424 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064168d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x73627379652d6772?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197de00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72425 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064168d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7370756f72476563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea55c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197de00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72428 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e227b3a22736761?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063f40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72429 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6572656665527265?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063f40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72430 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfc50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x22656761726f7473?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011b9d0e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063f40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72433 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66227b3a22617461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72434 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x323032223a227441?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72435 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb02f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72438 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6b2e736e6f69736e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72439 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x617265706f656369?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72440 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfb50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f74617265706f65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf3b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063ea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78865 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00c8590c8, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007039bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00c8590b0, {0xc009036601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc009036601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b2a2a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b2a2a00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b2a2a00, {0x4f3b7c0, 0xc01d610378}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00a9bd7d0, {0xc00f71ac00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c07860, 0xc023d90120?, {0x5dbd7f0, 0xc01df08980}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e758a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16cb80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72453 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416850, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc007dea900?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72454 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416850, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6563697672657322?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72455 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416850, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2265707974222c5d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4c00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dcc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72457 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416890, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7331303230333230?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72458 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416890, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x656c69666f725079?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72459 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416890, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3766342d64653037?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72460 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416890, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6372756f7365722f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4e40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dea0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72465 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf590, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72467 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf4d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72468 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf4d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72469 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf4d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72470 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf4d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7ac60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062fa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72473 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a075d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7370756f72476563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0114453e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72474 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a075d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3152464e6b555639?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0114453e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72475 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a075d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x302d39302d333230?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0114453e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72478 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416650, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e65636976726573?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72479 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416650, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6172547473616c22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72480 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416650, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6372756f7365722f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea4240) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197dae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72483 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416550, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226563617073?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197db80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72484 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416550, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197db80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72485 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416550, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030303030302d30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33baa0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197db80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72488 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca750, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x302d39302d333230?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72489 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca750, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a226469222c5d7d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72490 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca750, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2232737574736577?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ffb60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72493 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfdd0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72494 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfdd0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e227b3a22736e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72495 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfdd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x732f6d6f632e6572?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181ac00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72498 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417e10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5673646c65696622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4108a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72499 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417e10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x757a612e746e656d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4108a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72500 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417e10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x636170736b726f77?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4108a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72110 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416510, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72111 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416510, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72112 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416510, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6967717574736574?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72113 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416510, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6967717574736574?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33b800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d9a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 77769 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012f2c7c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012f2c7b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012f2c7b0, {0xc01f2fe800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01f2fe800?, 0x3?, 0xc00b6ba400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b9132c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b9132c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b9132c0, {0x4f3b7c0, 0xc023c5a6f0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023cf2c00, {0xc01ead2400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019453310, 0x2?, {0x5dbd7f0, 0xc023bc4ec0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de720) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023bc4e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72530 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf850, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0109ee540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72532 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca550, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72533 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca550, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72534 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca550, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x616572633a66222c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72535 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca550, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x69646f4d7473616c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4af440) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72538 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416490, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a22794264656966?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72539 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416490, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72540 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416490, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030303030302d30?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d720, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72543 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064178d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72544 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064178d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226563617073?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72545 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064178d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e83c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cce60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72549 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf1d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7a612e656761726f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102802a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72550 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf1d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102802a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72551 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf1d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102802a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72552 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf1d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc0102802a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062820, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72565 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca450, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdf40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72566 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca450, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e653a66222c7d7b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ae300) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdf40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72568 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf550, 0x18) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01a5318c0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130630e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72569 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf550, 0x15) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc019cfe740?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130630e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72570 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf550, 0x16) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0191d6620?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130630e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72571 [sync.Cond.Wait, 10 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf550, 0x14) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018ac5960?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00ff7b920) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0130630e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72573 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca390, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a66227b3a223156?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4776e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdb80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72574 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca390, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72676f72506e4922?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4776e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdb80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72575 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca390, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4776e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdb80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72576 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca390, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4776e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdb80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72578 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca690, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fea20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72579 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca690, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fea20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72580 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca690, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fea20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72581 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca690, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4fea20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72594 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf390, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fff8ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062b40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72596 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f632e6572757a61?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72597 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72598 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72599 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417d50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e9740) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72601 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063b80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72602 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66227b3a22617461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063b80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72603 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063b80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72604 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfa10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010bf2b40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063b80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72585 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf750, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x62636433223a2264?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f169c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72586 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf750, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7331303230333230?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010f169c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063400, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72588 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x65706f6563697672?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72589 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x74735d676e697274?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72590 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x617453202c5d7964?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72591 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bfe50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7473207962206465?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01181b860) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197c640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72610 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07650, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x756f7365722f6333?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cdc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72611 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07650, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6974616572632d73?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cdc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72612 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07650, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x616e2f656761726f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc011445a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cdc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72615 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72616 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa10, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646e696865426e65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72617 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20737365636f7270?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be4e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4f00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72629 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a076d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72676f72506e4922?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72630 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a076d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f7270227b3a2273?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e660) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cf00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72632 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417810, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72676f72506e4922?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccaa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72633 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417810, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6564656563637553?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccaa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72634 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417810, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6b2e736e6f69736e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccaa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72635 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417810, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6573222c227d7d22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c57a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccaa0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72637 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064173d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7372656e6961746e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72638 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064173d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7473222c22676e69?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72639 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064173d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x75746174733a6622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72640 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064173d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6567616e616d656c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aba40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc6e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72643 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca5d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x70736b726f77656c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4afe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d43c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72644 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca5d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030303030303030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4afe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d43c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72645 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca5d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x302d39302d333230?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4afe00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d43c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72647 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417010, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a226563617073?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72648 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417010, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72649 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417010, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5673646c65696622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72650 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417010, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa6c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72607 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca910, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x22657079743a6622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72608 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca910, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72609 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca910, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6b2e736e6f69736e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b573b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4dc0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72659 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2c323a226e6f6974?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bfce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d50e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72660 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2073757461745320?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bfce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d50e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72661 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5673646c65696622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bfce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d50e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72662 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecab50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bfce0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d50e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72665 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca2d0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4765a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72666 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca2d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6f70746e656761?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4765a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72667 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca2d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x353332642d6e6174?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4765a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cdae0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72670 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca710, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x742d6f73612f7365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d48c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72671 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca710, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6d222c7d7d7d7b3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d48c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72672 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca710, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff3e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d48c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72674 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca9d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72675 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca9d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72676 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca9d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72677 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca9d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc006e6fe00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5be2a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4d20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72680 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d10, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72681 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d10, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72682 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d10, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7b3a2274656e5664?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc0a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72691 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416dd0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x66227b3a22617461?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383320) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc1e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72684 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416950, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x632e6572757a612e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72685 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416950, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72686 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416950, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f632e6572757a61?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72687 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416950, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5800) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc000, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72689 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416ed0, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030323032697061?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72706 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416ed0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a7370747468225c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72707 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416ed0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x707974222c226575?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72708 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416ed0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc3c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72711 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417210, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6967717574736574?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72712 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417210, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x67722d747365746f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72713 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417210, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7461646174656d3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3aa900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc640, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72715 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca6d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a22315673646c65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d46e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72716 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca6d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x223a22726567616e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d46e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72717 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca6d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x656966222c223156?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d46e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72718 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca6d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x222c225a32353a31?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b4ff1a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d46e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72721 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417350, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72722 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417350, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5673646c65696622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72723 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417350, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2d303030302d3030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc780, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72726 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca7d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x656563637553223a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72727 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca7d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6574617453676e69?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72728 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca7d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6372756f7365722f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b572540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72698 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417410, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x20737365636f7270?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3abc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc8c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72699 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417410, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3abc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc8c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72700 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417410, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3abc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc8c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72701 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417410, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3abc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc8c0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72732 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x707974222c226575?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72733 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416f50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3030302d30303030?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b383f20) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc500, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72735 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x222c323a226e6f69?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72736 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x9a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72737 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6d222c7d7d7d7b3a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72738 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416d50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b382ba0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc280, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72740 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07750, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72741 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07750, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5673646c65696622?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72742 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07750, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72743 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07750, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31f2c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d040, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72746 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07850, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72747 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07850, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72748 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07850, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b348960) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d0e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72751 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07690, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6b2e736e6f69736e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72752 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07690, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x722d72656c6c6f70?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72753 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc002a07690, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2c22315673646c65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b31e360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197cd20, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72756 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417310, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x55724f6574616572?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72757 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417310, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x706d6173223a2265?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72758 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417310, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2d656372756f7365?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3ab080) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc5a0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72761 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416a90, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197df40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72762 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416a90, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2f7370756f724772?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197df40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72763 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416a90, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6f63222c5d7d22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc019ea5f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197df40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72766 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417750, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6d6f632e6572757a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c5020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72767 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417750, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x647a563264696f6a?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c5020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72768 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417750, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c5020) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccb40, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72772 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417710, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f6e6e613a66227b?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72773 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417710, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2e74666f736f7263?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c4de0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc960, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72775 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417890, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x69636e6972506563?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72776 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417890, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x657473756c436465?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72777 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417890, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x312d636462392d32?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72778 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417890, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2231302d35302d31?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3e8180) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccbe0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72781 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf610, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x62313734225c3a22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72782 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf610, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x5c3a225c65707974?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72783 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf610, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6465656363755322?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc010508f00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013063180, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72786 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416b50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x224e4451466c6174?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3821e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc140, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72787 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416b50, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x203a22656c69666f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3821e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc140, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72788 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416b50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x2020200a5b203a22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3821e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cc140, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72790 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417850, 0x1) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72656c6c6f72746e?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72791 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417850, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72792 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417850, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646c656966222c22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72793 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006417850, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x747365746f736122?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b3c59e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158ccc80, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72795 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x757a612e65676172?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72796 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff50, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72797 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff50, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72798 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bff50, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x736572223a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00fb03200) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197ca00, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72557 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc006416390, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6f7270227b3a2273?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33a8a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d680, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72559 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064163d0, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x6e6567613a66222c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72560 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064163d0, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x63646567616e616d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72561 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064163d0, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x616572633a66222c?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72802 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0064163d0, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x646c656966222c22?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00f33aae0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc01197d5e0, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72801 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf110, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x72632d73656c706d?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72818 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf110, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x7b223a226e656b6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72819 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0040bf110, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x225c646574656c65?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc00c0fdb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc013062460, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72503 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca290, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3130393031323032?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd900, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72504 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca290, 0x4) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x3a22726567616e61?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd900, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72505 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003eca290, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x222c7d7b3a226e6f?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b476360) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc0158cd900, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 72834 [sync.Cond.Wait, 12 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc003ecaa50, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x682d6f47223a2272?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] k8s.io/client-go/util/workqueue.(*Type).Get(0xc01b5bec60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/util/workqueue/queue.go:200 +0xa5 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem(0xc00f0d4e60, {0x5dd1c70, 0xc0157e5450}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:248 +0x62 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:226 +0x85 +[controller:test-integration-envtest] created by sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2 +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/internal/controller/controller.go:222 +0x587 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78874 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc02394e948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0x888aca0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc02394e930, {0xc00a3aba00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aba00?, 0x3?, 0x37e743800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00aefcdc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00aefcdc0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00aefcdc0, {0x4f3b7c0, 0xc01d237c80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f580930, {0xc01f783c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d720, 0x2?, {0x5dbd7f0, 0xc0236b5380}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da8bc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b5340) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78619 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58a300, 0xc0057de300) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01e31a0c0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78978 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b14f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b14f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b14f30, {0xc0204ca400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0204ca400?, 0x3?, 0x7f7fe04aa300?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f557a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f557a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f557a40, {0x4f3b7c0, 0xc01d610be8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafdbf0, {0xc00b471800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019072190, 0xc023e5d8f0?, {0x5dbd7f0, 0xc01df08b40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff3a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08b00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78936 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023fd9b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023fd9b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023fd9b30, {0xc0207aac00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207aac00?, 0x3?, 0x7f7fe04a9500?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bdb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bdb80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bdb80, {0x4f3b7c0, 0xc01d610300}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023f4eed0, {0xc0115b3000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7e00, 0xc01f3bfad0?, {0x5dbd7f0, 0xc023e63580}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51ea0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023e63540) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78754 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58a648, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58a638?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58a630, {0xc00b0b8e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b8e00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe1e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe1e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe1e00, {0x4f3b7c0, 0xc00e380af8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0237db140, {0xc010d85800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c230, 0x5dd4e28?, {0x5dbd7f0, 0xc01f3f5ec0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c51400) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f5e80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78030 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fa048, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc018dd2bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fa030, {0xc00a3aa000, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a3aa000?, 0x3?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00bf05040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00bf05040) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00bf05040, {0x4f3b7c0, 0xc023abf800}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fc780, {0xc00b150c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01dfecfa0, 0x5dd4e28?, {0x5dbd7f0, 0xc023f50a00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc001da8a40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f509c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 73531 [IO wait]: +[controller:test-integration-envtest] internal/poll.runtime_pollWait(0x7f7fb84e8300, 0x72) +[controller:test-integration-envtest] /usr/local/go/src/runtime/netpoll.go:306 +0x89 +[controller:test-integration-envtest] internal/poll.(*pollDesc).wait(0xc007e55b80?, 0xc00541d300?, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32 +[controller:test-integration-envtest] internal/poll.(*pollDesc).waitRead(...) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_poll_runtime.go:89 +[controller:test-integration-envtest] internal/poll.(*FD).Read(0xc007e55b80, {0xc00541d300, 0x1980, 0x1980}) +[controller:test-integration-envtest] /usr/local/go/src/internal/poll/fd_unix.go:167 +0x299 +[controller:test-integration-envtest] net.(*netFD).Read(0xc007e55b80, {0xc00541d300?, 0xc00541d30d?, 0xf7?}) +[controller:test-integration-envtest] /usr/local/go/src/net/fd_posix.go:55 +0x29 +[controller:test-integration-envtest] net.(*conn).Read(0xc0211970e8, {0xc00541d300?, 0x1973?, 0xc00541d305?}) +[controller:test-integration-envtest] /usr/local/go/src/net/net.go:183 +0x45 +[controller:test-integration-envtest] crypto/tls.(*atLeastReader).Read(0xc023b8b0c8, {0xc00541d300?, 0xc023b8b0c8?, 0x0?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:788 +0x3d +[controller:test-integration-envtest] bytes.(*Buffer).ReadFrom(0xc008bbed10, {0x5d97be0, 0xc023b8b0c8}) +[controller:test-integration-envtest] /usr/local/go/src/bytes/buffer.go:202 +0x98 +[controller:test-integration-envtest] crypto/tls.(*Conn).readFromUntil(0xc008bbea80, {0x5d9cd20?, 0xc0211970e8}, 0x453ab6?) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:810 +0xe5 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecordOrCCS(0xc008bbea80, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:617 +0x116 +[controller:test-integration-envtest] crypto/tls.(*Conn).readRecord(...) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:583 +[controller:test-integration-envtest] crypto/tls.(*Conn).Read(0xc008bbea80, {0xc00b5cf000, 0x1000, 0x814b00?}) +[controller:test-integration-envtest] /usr/local/go/src/crypto/tls/conn.go:1316 +0x16f +[controller:test-integration-envtest] bufio.(*Reader).Read(0xc0130894a0, {0xc022d9d9a0, 0x9, 0x832785?}) +[controller:test-integration-envtest] /usr/local/go/src/bufio/bufio.go:237 +0x1bb +[controller:test-integration-envtest] io.ReadAtLeast({0x5d979e0, 0xc0130894a0}, {0xc022d9d9a0, 0x9, 0x9}, 0x9) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:332 +0x9a +[controller:test-integration-envtest] io.ReadFull(...) +[controller:test-integration-envtest] /usr/local/go/src/io/io.go:351 +[controller:test-integration-envtest] net/http.http2readFrameHeader({0xc022d9d9a0?, 0x9?, 0xc01f7a6db0?}, {0x5d979e0?, 0xc0130894a0?}) +[controller:test-integration-envtest] /usr/local/go/src/net/http/h2_bundle.go:1567 +0x6e +[controller:test-integration-envtest] net/http.(*http2Framer).ReadFrame(0xc022d9d960) +[controller:test-integration-envtest] /usr/local/go/src/net/http/h2_bundle.go:1831 +0x95 +[controller:test-integration-envtest] net/http.(*http2clientConnReadLoop).run(0xc01bc84f98) +[controller:test-integration-envtest] /usr/local/go/src/net/http/h2_bundle.go:9187 +0x12e +[controller:test-integration-envtest] net/http.(*http2ClientConn).readLoop(0xc00af94000) +[controller:test-integration-envtest] /usr/local/go/src/net/http/h2_bundle.go:9082 +0x6f +[controller:test-integration-envtest] created by net/http.(*http2Transport).newClientConn +[controller:test-integration-envtest] /usr/local/go/src/net/http/h2_bundle.go:7779 +0xc3c +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78645 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f381c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f381b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f381b0, {0xc01e26e200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01e26e200?, 0x3?, 0x3824e6d00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00d6bda40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00d6bda40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00d6bda40, {0x4f3b7c0, 0xc023e5fb78}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f346c60, {0xc00073d800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0194535e0, 0x2?, {0x5dbd7f0, 0xc01f3f48c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023c50160) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3f4880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78922 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0124236c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0124236b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0124236b0, {0xc0238fda00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fda00?, 0x3?, 0x40f700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c73de00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c73de00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c73de00, {0x4f3b7c0, 0xc023b8a528}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f5a3530, {0xc009bc0c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13090, 0x6f3a66222c7d7b3a?, {0x5dbd7f0, 0xc023cad900}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a4ac560) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023cad8c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78697 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f632348, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f795f00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f632330, {0xc001a85801, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001a85801?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b912000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b912000) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b912000, {0x4f3b7c0, 0xc023dc7f80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023fd7770, {0xc00c188800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073b80, 0xc0198fa480?, {0x5dbd7f0, 0xc01f98d340}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fef40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f795f80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78846 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58b848, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58b838?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58b830, {0xc00b0b9c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00b0b9c00?, 0x3?, 0xc002c73ce8?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e30f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e30f00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e30f00, {0x4f3b7c0, 0xc01d2371a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc00a7344e0, {0xc01a7b9c00, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835ce60, 0x2?, {0x5dbd7f0, 0xc0236b4080}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80d6a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023b11fc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78812 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0129807c8, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01f82db00?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0129807b0, {0xc006b2ec01, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc006b2ec01?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010181e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010181e00) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010181e00, {0x4f3b7c0, 0xc023b8b128}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f78b740, {0xc02391c000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c068c0, 0xc0116e0000?, {0x5dbd7f0, 0xc01f3f4e40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e74100) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82db80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79047 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013744338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744330, {0xc00e6d1c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e6d1c00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc0101817c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc0101817c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc0101817c0, {0x4f3b7c0, 0xc023e5f9c8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f740060, {0xc024089000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835db80, 0x2?, {0x5dbd7f0, 0xc01f82dcc0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f32eb00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f82dc80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78365 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b14948, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023b14938?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b14930, {0xc0064db200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0064db200?, 0x3?, 0x7f7fe04a9a00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46c780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46c780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46c780, {0x4f3b7c0, 0xc023f47140}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc02326d4a0, {0xc002a80400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc009ab7db0, 0xc01d4aeab0?, {0x5dbd7f0, 0xc01e31ac00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80dd40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e31abc0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78455 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad5b48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00fad5b38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad5b30, {0xc001408600, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001408600?, 0x3?, 0x100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf17c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf17c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf17c0, {0x4f3b7c0, 0xc023cc8318}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f0ee060, {0xc0101d4000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13e50, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32f6c0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32f680) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78667 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023f38ac8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f38ab8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023f38ab0, {0xc0238fd200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0238fd200?, 0x3?, 0xc009c37c00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2d400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2d400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2d400, {0x4f3b7c0, 0xc01d6117d0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafc5a0, {0xc013566000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f54dc0, 0x2?, {0x5dbd7f0, 0xc0234c6a00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023939820) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0234c6880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78432 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f0501c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f0501b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f0501b0, {0xc00a741c00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a741c00?, 0x3?, 0x37eb41900?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00ce3b400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00ce3b400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00ce3b400, {0x4f3b7c0, 0xc023c5bc38}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f2e1170, {0xc00b0c5800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835de50, 0x2?, {0x5dbd7f0, 0xc01dc6bac0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023f8bd00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01dc6ba00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78482 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012422348, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012422338?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012422330, {0xc00c5f4400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00c5f4400?, 0x3?, 0x380332800?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc010180640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc010180640) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc010180640, {0x4f3b7c0, 0xc023cc9080}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3e2600, {0xc0101d5400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018c06460, 0x2?, {0x5dbd7f0, 0xc01f378800}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01ab802c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f3787c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78638 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0120fb980, 0xc00a187700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc0213187e0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78387 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00f6330c8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00f6330b8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00f6330b0, {0xc00aa36a00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00aa36a00?, 0x3?, 0x37e930400?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddc3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddc3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddc3c0, {0x4f3b7c0, 0xc0237f9560}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023c67470, {0xc003b61800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc018f55a40, 0x2?, {0x5dbd7f0, 0xc023fa1200}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023e75b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023fa11c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78719 [sync.Cond.Wait, 4 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf6db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6db0, {0xc01267ce00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc01267ce00?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc022da63c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc022da63c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc022da63c0, {0x4f3b7c0, 0xc00b080ca8}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023bca750, {0xc00f71b800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb720, 0xc02393e000?, {0x5dbd7f0, 0xc023d00f00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca30a0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023d00ec0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78763 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012eb8300, 0xc00bdd2b00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 79011 [select]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc0136a6a80, 0xc023f29e00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861ce6?, 0xc02393a5a0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78849 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00b58bb48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc00b58bb38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00b58bb30, {0xc001ccda00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001ccda00?, 0x3?, 0xc002c73c00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023e31900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023e31900) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023e31900, {0x4f3b7c0, 0xc01d237350}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f3fc480, {0xc01f782800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835d0e0, 0x2?, {0x5dbd7f0, 0xc0236b4740}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f80db00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc0236b4700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78574 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012871080, 0xc023460500) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x861d46?, 0xc023d97200?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78791 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc013744dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc013744db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc013744db0, {0xc004d1d200, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc004d1d200?, 0x3?, 0x862700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc023ddcc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc023ddcc80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc023ddcc80, {0x4f3b7c0, 0xc00e380948}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0237db8f0, {0xc0086a1000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12460, 0x5dd4e28?, {0x5dbd7f0, 0xc01f69eb40}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc019cfe5e0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f69eac0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78856 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012981b00, 0xc02043c800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c7540?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78657 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58a600, 0xc0237f1f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f3f5c00?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78539 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00e25b380, 0xc023df2800) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023cad100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78213 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0234b9548, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0234b9538?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0234b9530, {0xc0207ab400, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0207ab400?, 0x3?, 0x7f7fe04a9f00?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00fbe1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00fbe1a40) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00fbe1a40, {0x4f3b7c0, 0xc023946f18}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01eafd0b0, {0xc009942800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0190727d0, 0xc01d287b90?, {0x5dbd7f0, 0xc01f3f5d00}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca3420) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df095c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78893 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc022201680, 0xc0057e4700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc01f794000?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78457 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023cf6f48, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023cf6f38?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023cf6f30, {0xc001408800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc001408800?, 0x3?, 0x100?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00edf1b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00edf1b80) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00edf1b80, {0x4f3b7c0, 0xc023cc83c0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f0ee450, {0xc0101d4400, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c13ef0, 0xc01d0899b0?, {0x5dbd7f0, 0xc01e32fa80}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01f2de880) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01e32fa40) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78707 [sync.Cond.Wait]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc00fad50c8, 0x3) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc023f51c80?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc00fad50b0, {0xc00e685801, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00e685801?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00f5568c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00f5568c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00f5568c0, {0x4f3b7c0, 0xc023e5ff20}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc0230e5f80, {0xc00f71a800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc0231cb270, 0xc0069a1d00?, {0x5dbd7f0, 0xc023d00400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc023ca21c0) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f51d00) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78933 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023fd9680, 0xc00bdd3900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0xffffffffffffffff?, 0xffffffffffffffff?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78837 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc00b58b200, 0xc0057def00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023b11100?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78113 [sync.Cond.Wait, 8 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc012870dc8, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc012870db8?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc012870db0, {0xc00a741800, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc00a741800?, 0x3?, 0x5be79600?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00b4b5400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00b4b5400) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00b4b5400, {0x4f3b7c0, 0xc00d126a80}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc01f90ac00, {0xc0079b2800, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc023c12000, 0x2?, {0x5dbd7f0, 0xc01f16d680}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc01a5e7b60) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01f16d640) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78702 [sync.Cond.Wait, 2 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc023b150c8, 0x2) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc01df08640?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc023b150b0, {0xc012040601, 0x5ff, 0x5ff}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc012040601?, 0x0?, 0x0?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00c46c3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00c46c3c0) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00c46c3c0, {0x4f3b7c0, 0xc0234ca690}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023e5c600, {0xc00c189000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc019073db0, 0xc01932dc80?, {0x5dbd7f0, 0xc01f98dac0}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231ff380) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc01df08700) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78720 [select, 4 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc023cf7680, 0xc005791f00) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc023d00ec0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78816 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc012980f00, 0xc004d0b900) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x97b246?, 0xc0234c6180?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78080 [sync.Cond.Wait, 6 minutes]: +[controller:test-integration-envtest] sync.runtime_notifyListWait(0xc0120fb248, 0x0) +[controller:test-integration-envtest] /usr/local/go/src/runtime/sema.go:527 +0x14c +[controller:test-integration-envtest] sync.(*Cond).Wait(0xc0014f6bb0?) +[controller:test-integration-envtest] /usr/local/go/src/sync/cond.go:70 +0x8c +[controller:test-integration-envtest] golang.org/x/net/http2.(*pipe).Read(0xc0120fb230, {0xc0122b4e00, 0x200, 0x200}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/pipe.go:76 +0xeb +[controller:test-integration-envtest] golang.org/x/net/http2.transportResponseBody.Read({0x0?}, {0xc0122b4e00?, 0x3?, 0x37e89e700?}) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:2537 +0x75 +[controller:test-integration-envtest] encoding/json.(*Decoder).refill(0xc00df2c780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:165 +0x188 +[controller:test-integration-envtest] encoding/json.(*Decoder).readValue(0xc00df2c780) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:140 +0xbb +[controller:test-integration-envtest] encoding/json.(*Decoder).Decode(0xc00df2c780, {0x4f3b7c0, 0xc00b0808a0}) +[controller:test-integration-envtest] /usr/local/go/src/encoding/json/stream.go:63 +0x78 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/util/framer.(*jsonFrameReader).Read(0xc023aeec30, {0xc0191e7000, 0x400, 0x400}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/util/framer/framer.go:152 +0x1a5 +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/runtime/serializer/streaming.(*decoder).Decode(0xc01835c460, 0x2?, {0x5dbd7f0, 0xc023f50980}) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/runtime/serializer/streaming/streaming.go:77 +0xa7 +[controller:test-integration-envtest] k8s.io/client-go/rest/watch.(*Decoder).Decode(0xc0231fec80) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/client-go@v0.28.1/rest/watch/decoder.go:49 +0x4f +[controller:test-integration-envtest] k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc023f50900) +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:105 +0xdc +[controller:test-integration-envtest] created by k8s.io/apimachinery/pkg/watch.NewStreamWatcher +[controller:test-integration-envtest] /go/pkg/mod/k8s.io/apimachinery@v0.28.1/pkg/watch/streamwatcher.go:76 +0x130 +[controller:test-integration-envtest] +[controller:test-integration-envtest] goroutine 78759 [select, 2 minutes]: +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).writeRequest(0xc010da6480, 0xc00bdd2700) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1464 +0xb27 +[controller:test-integration-envtest] golang.org/x/net/http2.(*clientStream).doRequest(0x8420a6?, 0xc00cd257d0?) +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1326 +0x1e +[controller:test-integration-envtest] created by golang.org/x/net/http2.(*ClientConn).RoundTrip +[controller:test-integration-envtest] /go/pkg/mod/golang.org/x/net@v0.13.0/http2/transport.go:1232 +0x34a +[controller:test-integration-envtest] FAIL github.com/Azure/azure-service-operator/v2/internal/controllers 900.809s +[controller:test-integration-envtest] FAIL diff --git a/testing_2.txt b/testing_2.txt new file mode 100644 index 00000000000..fb6bc0caa14 --- /dev/null +++ b/testing_2.txt @@ -0,0 +1,36317 @@ +[controller:test-integration-envtest] 2023/09/08 21:45:23 Running test setup +[controller:test-integration-envtest] 2023/09/08 21:45:23 Done with test setup +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] === RUN Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === PAUSE Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:45:23Z] "msg"="Starting envtest" +[controller:test-integration-envtest] 2023/09/08 21:45:23 Creating shared envtest environment: SubscriptionID:8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/TenantID:72f988bf-86f1-41af-91ab-2d7cd011db47/ClientID:954d4203-089b-43a8-b725-0e8fd05d5ced/PodNamespace:/OperatorMode:watchers-and-webhooks/TargetNamespaces:/SyncPeriod:/ResourceManagerEndpoint:https://management.azure.com/ResourceManagerAudience:https://management.core.windows.net//AzureAuthorityHost:https://login.microsoftonline.com//UseWorkloadIdentityAuth:false/Replaying:true +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:45:23 Starting envtest +[controller:test-integration-envtest] [controller-runtime] log.SetLogger(...) was never called, logs will not be displayed: +[controller:test-integration-envtest] goroutine 66 [running]: +[controller:test-integration-envtest] runtime/debug.Stack() +[controller:test-integration-envtest] /usr/local/go/src/runtime/debug/stack.go:24 +0x65 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/log.eventuallyFulfillRoot() +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/log/log.go:59 +0xbd +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/log.(*delegatingLogSink).Enabled(0xc0001e1b00, 0x10?) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/log/deleg.go:111 +0x3d +[controller:test-integration-envtest] github.com/go-logr/logr.Logger.Enabled(...) +[controller:test-integration-envtest] /go/pkg/mod/github.com/go-logr/logr@v1.2.4/logr.go:261 +[controller:test-integration-envtest] github.com/go-logr/logr.Logger.Info({{0x5dd4e28?, 0xc0001e1b00?}, 0xc0001a6008?}, {0x58249cf, 0xe}, {0xc006004420, 0x2, 0x2}) +[controller:test-integration-envtest] /go/pkg/mod/github.com/go-logr/logr@v1.2.4/logr.go:274 +0x78 +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/envtest.CreateCRDs(0xc00089cae0?, {0xc0004cef00, 0xa0, 0xc000c02bd0?}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/envtest/crd.go:255 +0x1ee +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/envtest.InstallCRDs(_, {0xc0007225b0, {0xc0008a45c0, 0x1, 0x1}, {0xc0004cef00, 0xa0, 0xa0}, 0x1, 0x2540be400, ...}) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/envtest/crd.go:106 +0x16e +[controller:test-integration-envtest] sigs.k8s.io/controller-runtime/pkg/envtest.(*Environment).Start(0xc0004cc000) +[controller:test-integration-envtest] /go/pkg/mod/sigs.k8s.io/controller-runtime@v0.15.0/pkg/envtest/server.go:296 +0xb87 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.createSharedEnvTest({{{0xc000076096, 0x24}, {0xc0000760d0, 0x24}, {0xc000076010, 0x24}, {0x0, 0x0}, 0x3, {0x0, ...}, ...}, ...}, ...) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:91 +0x41a +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.(*sharedEnvTests).getEnvTestForConfig(0xc00002fa00, {0x5dd1ca8, 0xc0001a6000}, {{{0xc000076096, 0x24}, {0xc0000760d0, 0x24}, {0xc000076010, 0x24}, {0x0, ...}, ...}, ...}, ...) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:387 +0x2e5 +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.createEnvtestContext.func1({{0xc0003cca40, 0xc000469cc0, 0x1}, 0xc000029380, {{0x5dd4498, 0xc0003a6000}, 0x0}, 0xc000117340, 0xc000117680, {0xc00071c0f0, ...}, ...}, ...) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_test_context_envtest.go:466 +0x1ef +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.KubeGlobalContext.forTestWithConfig({{0xc0003cca40, 0xc000469cc0, 0x1}, 0xc0000134e8, 0xc0003cca10}, 0xc000029380, {{0xc000076096, 0x24}, {0xc0000760d0, 0x24}, ...}, ...) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_per_test_context.go:157 +0x23e +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/testcommon.KubeGlobalContext.ForTest({{0xc0003cca40, 0xc000469cc0, 0x1}, 0xc0000134e8, 0xc0003cca10}, 0xc000029380) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/testcommon/kube_per_test_context.go:123 +0x19c +[controller:test-integration-envtest] github.com/Azure/azure-service-operator/v2/internal/controllers_test.Test_Samples_CreationAndDeletion.func1.1(0xc0000291e0?) +[controller:test-integration-envtest] /workspaces/azure-service-operator/v2/internal/controllers/samples_test.go:68 +0x5d +[controller:test-integration-envtest] testing.tRunner(0xc000029380, 0xc000013638) +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1576 +0x10b +[controller:test-integration-envtest] created by testing.(*T).Run +[controller:test-integration-envtest] /usr/local/go/src/testing/testing.go:1629 +0x3ea +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:159: unable to create shared envtest environment: starting envtest environment: unable to install CRDs onto control plane: something went wrong waiting for CRDs to appear as API resources: context deadline exceeded +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:46:27Z] "msg"="Starting envtest" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:46:27 Creating shared envtest environment: SubscriptionID:8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/TenantID:72f988bf-86f1-41af-91ab-2d7cd011db47/ClientID:954d4203-089b-43a8-b725-0e8fd05d5ced/PodNamespace:/OperatorMode:watchers-and-webhooks/TargetNamespaces:/SyncPeriod:/ResourceManagerEndpoint:https://management.azure.com/ResourceManagerAudience:https://management.core.windows.net//AzureAuthorityHost:https://login.microsoftonline.com//UseWorkloadIdentityAuth:false/Replaying:true +[controller:test-integration-envtest] 2023/09/08 21:46:27 Starting envtest +[controller:test-integration-envtest] 2023/09/08 21:47:31 Creating & starting controller-runtime manager +[controller:test-integration-envtest] 2023/09/08 21:47:31 Waiting for webhook server to start +[controller:test-integration-envtest] 2023/09/08 21:47:31 Webhook server started +[controller:test-integration-envtest] 2023/09/08 21:47:31 Waiting for watchers to start +[controller:test-integration-envtest] 2023/09/08 21:47:34 Watchers started +[controller:test-integration-envtest] 2023/09/08 21:47:35 http: TLS handshake error from 127.0.0.1:33528: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="881" generation=1 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="879" generation=1 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="880" generation=1 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="874" generation=1 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="876" generation=1 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="883" generation=1 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="882" generation=1 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="885" generation=1 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="886" generation=1 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="887" generation=1 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns\",\"location\":\"westus2\",\"name\":\"asotest-rg-hjxcns\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw\",\"location\":\"westus2\",\"name\":\"asotest-rg-ycutlw\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr\",\"location\":\"westus2\",\"name\":\"asotest-rg-ardjnr\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri\",\"location\":\"westus2\",\"name\":\"asotest-rg-qqarri\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja\",\"location\":\"westus2\",\"name\":\"asotest-rg-xvqdja\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="897" generation=1 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="875" generation=1 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="898" generation=1 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="896" generation=1 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="877" generation=1 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="901" generation=1 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="902" generation=1 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="878" generation=1 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="903" generation=1 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk\",\"location\":\"westus2\",\"name\":\"asotest-rg-bywqwk\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="905" generation=1 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg\",\"location\":\"westus2\",\"name\":\"asotest-rg-qvtfsg\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] 2023/09/08 21:47:40 http: TLS handshake error from 127.0.0.1:33562: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="907" generation=1 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="914" generation=1 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk\",\"location\":\"westus2\",\"name\":\"asotest-rg-mkcsgk\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="910" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] 2023/09/08 21:47:40 http: TLS handshake error from 127.0.0.1:33584: EOF +[controller:test-integration-envtest] 2023/09/08 21:47:40 http: TLS handshake error from 127.0.0.1:33590: EOF +[controller:test-integration-envtest] 2023/09/08 21:47:40 http: TLS handshake error from 127.0.0.1:33606: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="912" generation=1 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="applying ownership" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Owner does not yet exist" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" NamespacedName="aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="911" generation=1 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="applying ownership" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Set owner reference" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qqarri" +[controller:test-integration-envtest] 2023/09/08 21:47:40 http: TLS handshake error from 127.0.0.1:33682: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="916" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] 2023/09/08 21:47:40 http: TLS handshake error from 127.0.0.1:33658: read tcp 127.0.0.1:37369->127.0.0.1:33658: read: connection reset by peer +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="918" generation=1 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Set owner reference" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="920" generation=1 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="919" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] WorkspaceController "msg"="Reconcile invoked" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="921" generation=1 uid="f13e484e-9fb3-4332-a52b-170c8412eacb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] WorkspaceController "msg"="applying ownership" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="923" generation=1 uid="b7b44608-8224-41db-b556-7e855008cd51" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ServerFarmController "msg"="applying ownership" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="adding finalizer" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="925" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="adding finalizer" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SignalRController "msg"="applying ownership" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] WorkspaceController "msg"="Set owner reference" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ServerFarmController "msg"="Set owner reference" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="924" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SignalRController "msg"="Set owner reference" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bywqwk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="926" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ServerFarmController "msg"="adding finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] WorkspaceController "msg"="adding finalizer" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SignalRController "msg"="adding finalizer" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="929" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="932" generation=1 uid="fc3b6aa5-6c65-448c-bb4b-f0770bc7938b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SiteController "msg"="applying ownership" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="933" generation=1 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="930" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="936" generation=1 uid="b7b44608-8224-41db-b556-7e855008cd51" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="935" generation=1 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SiteController "msg"="Set owner reference" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SignalRController "msg"="updated resource in etcd" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="937" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="944" generation=1 uid="f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ServerFarmController "msg"="Determined CreateOrUpdate action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="945" generation=1 uid="eda75ec7-32f8-45e7-8102-8a80f129f0ca" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] WorkspaceController "msg"="updated resource in etcd" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="938" generation=1 uid="f13e484e-9fb3-4332-a52b-170c8412eacb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"eec1d704-ec92-4ddc-8b96-42a94961df93", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="About to send resource to Azure" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:40Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:40Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="About to send resource to Azure" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ServerFarmController "msg"="About to send resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ServerFarmController "msg"="Successfully sent resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ServerFarmController "msg"="Resource successfully created/updated" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ServerFarmController "msg"="Got ARM status" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-appservice\",\"properties\":{\"elasticScaleEnabled\":false,\"geoRegion\":\"West US\",\"hyperV\":false,\"isSpot\":false,\"isXenon\":false,\"maximumElasticWorkerCount\":1,\"maximumNumberOfWorkers\":1,\"numberOfSites\":0,\"numberOfWorkers\":0,\"perSiteScaling\":false,\"provisioningState\":\"Succeeded\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-ardjnr\",\"status\":\"Ready\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"zoneRedundant\":false},\"sku\":{\"capacity\":0,\"family\":\"F\",\"name\":\"F1\",\"size\":\"F1\",\"tier\":\"Free\"},\"type\":\"Microsoft.Web/serverfarms\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="About to send resource to Azure" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Successfully sent resource to Azure" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="adding finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="959" generation=1 uid="b7b44608-8224-41db-b556-7e855008cd51" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ServerFarmController "msg"="Done with reconcile" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="958" generation=1 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/68b3c772-d220-4795-be53-c65d3d70bbb9?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="updated resource in etcd" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="956" generation=1 uid="fc3b6aa5-6c65-448c-bb4b-f0770bc7938b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="957" generation=1 uid="eda75ec7-32f8-45e7-8102-8a80f129f0ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="963" generation=1 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/451b4ea5-798e-4fb7-b580-7958f7f13889?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="958" generation=1 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/68b3c772-d220-4795-be53-c65d3d70bbb9?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="updated resource in etcd" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="966" generation=1 uid="f13e484e-9fb3-4332-a52b-170c8412eacb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"eec1d704-ec92-4ddc-8b96-42a94961df93", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="Done with reconcile" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Resource not created yet, will check again" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="958" generation=1 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/68b3c772-d220-4795-be53-c65d3d70bbb9?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="Reconcile invoked" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="966" generation=1 uid="f13e484e-9fb3-4332-a52b-170c8412eacb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"eec1d704-ec92-4ddc-8b96-42a94961df93", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="963" generation=1 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/451b4ea5-798e-4fb7-b580-7958f7f13889?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="Resource creation/update failure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE UNAVAILABLE\n--------------------------------------------------------------------------------\n{\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\",\n \"Target\": null,\n \"Details\": [\n {\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n },\n {\n \"Code\": \"NotFound\"\n },\n {\n \"ErrorEntity\": {\n \"ExtendedCode\": \"51004\",\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\n \"Parameters\": [\n \"ServerFarm\",\n \"aso-sample-appservice\"\n ],\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n }\n }\n ],\n \"Innererror\": null\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] SiteController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE UNAVAILABLE +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice.", +[controller:test-integration-envtest] "Target": null, +[controller:test-integration-envtest] "Details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound" +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "ErrorEntity": { +[controller:test-integration-envtest] "ExtendedCode": "51004", +[controller:test-integration-envtest] "MessageTemplate": "Cannot find {0} with name {1}.", +[controller:test-integration-envtest] "Parameters": [ +[controller:test-integration-envtest] "ServerFarm", +[controller:test-integration-envtest] "aso-sample-appservice" +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Innererror": null +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] WorkspaceController "msg"="Got ARM status" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj\",\"location\":\"westcentralus\",\"name\":\"asotestipyygj\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"f1f5c451-a77d-412d-a883-2e315b694c13\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Resource successfully created/updated" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Got ARM status" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"samplekubestoragealpha\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://samplekubestoragealpha.blob.core.windows.net/\",\"dfs\":\"https://samplekubestoragealpha.dfs.core.windows.net/\",\"file\":\"https://samplekubestoragealpha.file.core.windows.net/\",\"queue\":\"https://samplekubestoragealpha.queue.core.windows.net/\",\"table\":\"https://samplekubestoragealpha.table.core.windows.net/\",\"web\":\"https://samplekubestoragealpha.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Resource not created yet, will check again" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="964" generation=1 uid="f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="963" generation=1 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/451b4ea5-798e-4fb7-b580-7958f7f13889?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Resource successfully created/updated" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Got ARM status" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"samplekubestoragebeta\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://samplekubestoragebeta.blob.core.windows.net/\",\"dfs\":\"https://samplekubestoragebeta.dfs.core.windows.net/\",\"file\":\"https://samplekubestoragebeta.file.core.windows.net/\",\"queue\":\"https://samplekubestoragebeta.queue.core.windows.net/\",\"table\":\"https://samplekubestoragebeta.table.core.windows.net/\",\"web\":\"https://samplekubestoragebeta.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="974" generation=1 uid="eda75ec7-32f8-45e7-8102-8a80f129f0ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="974" generation=1 uid="eda75ec7-32f8-45e7-8102-8a80f129f0ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="976" generation=1 uid="fc3b6aa5-6c65-448c-bb4b-f0770bc7938b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SiteController "msg"="Encountered error, re-queuing..." name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:41Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:41Z] StorageAccountController "msg"="Successfully created resource" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="981" generation=1 uid="f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="976" generation=1 uid="fc3b6aa5-6c65-448c-bb4b-f0770bc7938b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"2b33c9ed-219e-48f6-8a3f-b7ae3ebf7b43\",\"principalId\":\"84685fdf-f478-42cf-90c9-69503b295e80\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="979" generation=1 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] WorkspaceController "msg"="updated resource in etcd" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="980" generation=1 uid="f13e484e-9fb3-4332-a52b-170c8412eacb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"eec1d704-ec92-4ddc-8b96-42a94961df93", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] WorkspaceController "msg"="Done with reconcile" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="981" generation=1 uid="f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"250f3aae-ef87-463a-9384-39d2cf94bbc2\",\"principalId\":\"df2a8435-df64-4803-abf7-436cc3779660\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="986" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SiteController "msg"="Successfully sent resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SiteController "msg"="Resource successfully created/updated" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SiteController "msg"="Got ARM status" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-function\",\"properties\":{\"availabilityState\":\"Normal\",\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"containerSize\":0,\"customDomainVerificationId\":\"D75F6A26BF768430F1101BCA50DCDA98D6BC7038EE0BEC81098E0102BE82AD25\",\"dailyMemoryTimeQuota\":0,\"defaultHostName\":\"aso-sample-function.azurewebsites.net\",\"enabled\":true,\"enabledHostNames\":[\"aso-sample-function.azurewebsites.net\",\"aso-sample-function.scm.azurewebsites.net\"],\"hostNameSslStates\":[{\"hostType\":\"Standard\",\"name\":\"aso-sample-function.azurewebsites.net\",\"sslState\":\"Disabled\"},{\"hostType\":\"Repository\",\"name\":\"aso-sample-function.scm.azurewebsites.net\",\"sslState\":\"Disabled\"}],\"hostNames\":[\"aso-sample-function.azurewebsites.net\"],\"hostNamesDisabled\":false,\"httpsOnly\":false,\"hyperV\":false,\"isXenon\":false,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"lastModifiedTimeUtc\":\"2022-10-19T19:46:01.2066667\",\"outboundIpAddresses\":\"138.91.247.218,23.99.91.136,104.209.35.1,104.40.24.117,104.40.31.43,104.40.28.13,40.112.243.59\",\"possibleOutboundIpAddresses\":\"138.91.247.218,23.99.91.136,104.209.35.1,104.40.24.117,104.40.31.43,104.40.28.13,104.209.35.73,23.99.94.29,104.209.39.62,104.209.32.196,104.209.32.219,104.209.33.74,104.209.42.243,104.209.43.117,40.112.190.217,40.112.185.192,40.118.212.2,40.118.134.196,40.118.131.102,40.118.131.255,40.118.129.38,40.118.212.93,104.40.19.83,40.112.190.96,40.83.184.22,104.40.18.82,40.83.188.42,40.83.189.34,138.91.158.176,104.40.24.239,40.112.243.59\",\"redundancyMode\":\"None\",\"repositorySiteName\":\"aso-sample-function\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-ardjnr\",\"scmSiteAlsoStopped\":false,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"siteConfig\":{\"acrUseManagedIdentityCreds\":false,\"alwaysOn\":false,\"functionAppScaleLimit\":0,\"http20Enabled\":false,\"linuxFxVersion\":\"\",\"minimumElasticInstanceCount\":0,\"numberOfWorkers\":1},\"state\":\"Running\",\"storageAccountRequired\":false,\"usageState\":\"Normal\",\"vnetContentShareEnabled\":false,\"vnetImagePullEnabled\":false,\"vnetRouteAllEnabled\":false},\"type\":\"Microsoft.Web/sites\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="941" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="960" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationStatuses/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz/operationResults/20622cb1-cf64-41a9-a839-e3cdb73694f3?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountController "msg"="updated resource in etcd" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="989" generation=1 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountController "msg"="Done with reconcile" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="942" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Resource successfully created/updated" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] SignalRController "msg"="Got ARM status" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/SignalR/asotestrhnmqz\",\"identity\":{\"principalId\":\"072ea900-5143-4339-9c2c-863829b02879\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"kind\":\"SignalR\",\"location\":\"westcentralus\",\"name\":\"asotestrhnmqz\",\"properties\":{\"cors\":{\"allowedOrigins\":[\"https://foo.com\",\"https://bar.com\"]},\"disableAadAuth\":false,\"disableLocalAuth\":false,\"externalIP\":\"20.69.0.206\",\"features\":[{\"flag\":\"ServiceMode\",\"value\":\"Classic\"},{\"flag\":\"EnableConnectivityLogs\",\"value\":\"True\"},{\"flag\":\"EnableMessagingLogs\",\"value\":\"True\"},{\"flag\":\"EnableLiveTrace\",\"value\":\"True\"}],\"hostName\":\"asotestrhnmqz.service.signalr.net\",\"hostNamePrefix\":\"asotestrhnmqz\",\"networkACLs\":{\"defaultAction\":\"Deny\",\"publicNetwork\":{\"allow\":[\"ClientConnection\"]}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"publicPort\":443,\"serverPort\":443,\"tls\":{\"clientCertEnabled\":false},\"upstream\":{\"templates\":[{\"categoryPattern\":\"*\",\"eventPattern\":\"connect,disconnect\",\"hubPattern\":\"*\",\"urlTemplate\":\"https://example.com/chat/api/connect\"}]},\"version\":\"1.0\"},\"sku\":{\"capacity\":1,\"name\":\"Standard_S1\",\"size\":\"S1\",\"tier\":\"Standard\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.SignalRService/SignalR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="samplekubestoragealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:42Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="992" generation=1 uid="eda75ec7-32f8-45e7-8102-8a80f129f0ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="996" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="997" generation=1 uid="f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:42Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="996" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="999" generation=1 uid="fc3b6aa5-6c65-448c-bb4b-f0770bc7938b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SiteController "msg"="Done with reconcile" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SignalRController "msg"="updated resource in etcd" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1002" generation=1 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SignalRController "msg"="Done with reconcile" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1005" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1003" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="996" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Owner does not yet exist" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1006" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragebeta", UID:"a8f51317-16ab-4670-aa98-25286b700257", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1001" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragealpha", UID:"3ecb397e-9721-49c7-ad3b-dc8851d986d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1008" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Owner does not yet exist" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1009" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner does not yet exist" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="996" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Owner does not yet exist" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1011" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1013" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1012" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1015" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Owner does not yet exist" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="996" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Owner does not yet exist" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="969" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7658fdef-ead5-4b5d-8740-4c26aec58768?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1020" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="applying ownership" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner does not yet exist" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1023" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="applying ownership" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="996" generation=2 uid="eec1d704-ec92-4ddc-8b96-42a94961df93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYVlFESkEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1027" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1030" generation=1 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragealpha", UID:"3ecb397e-9721-49c7-ad3b-dc8851d986d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1029" generation=1 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragebeta", UID:"a8f51317-16ab-4670-aa98-25286b700257", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster\",\"identity\":{\"principalId\":\"6d079ce0-7752-4247-b2c8-2eb2c3b6b9f8\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-2023.01.20\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-171236a1.portal.hcp.westus3.azmk8s.io\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-171236a1.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"42bd1597-1c9f-4455-bbee-3977b0cae64f\",\"objectId\":\"b29a4bed-dba0-4053-8d34-d0426e12f4d7\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-ycutlw_samplemanagedcluster_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster-agentpool\"}},\"kubernetesVersion\":\"1.24.9\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"loadBalancerProfile\":{\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-ycutlw_samplemanagedcluster_westus3/providers/Microsoft.Network/publicIPAddresses/2ece7df4-2c51-4e3a-b56c-87bcec6e7bea\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"serviceCidr\":\"10.0.0.0/16\"},\"nodeResourceGroup\":\"MC_asotest-rg-ycutlw_samplemanagedcluster_westus3\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"servicePrincipalProfile\":{\"clientId\":\"msi\"}},\"sku\":{\"name\":\"Basic\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1028" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1031" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Set owner reference" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1032" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotest-rg-xvqdja" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Owner does not yet exist" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="948" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Set owner reference" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1032" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1037" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1031" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="adding finalizer" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1038" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="samplekubestoragequeuesbeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1031" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="adding finalizer" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="940" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotest-rg-xvqdja aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotestipyygj]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotest-rg-xvqdja resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-xvqdja": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotest-rg-xvqdja, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eec1d704-ec92-4ddc-8b96-42a94961df93, UID in object meta: " name="asotest-rg-xvqdja" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1032" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1031" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1048" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="samplekubestoragequeuesalpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1045" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1053" generation=1 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Owner does not yet exist" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" NamespacedName="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1032" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1044" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1054" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1047" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1031" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] WorkspaceController "msg"="Reconcile invoked" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="1056" generation=2 uid="f13e484e-9fb3-4332-a52b-170c8412eacb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xvqdja", UID:"eec1d704-ec92-4ddc-8b96-42a94961df93", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xvqdja/providers/Microsoft.OperationalInsights/workspaces/asotestipyygj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-xvqdja, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1032" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1057" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] WorkspaceController "msg"="Determined Delete action" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] WorkspaceController "msg"="Starting delete of resource" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" azureName="asotestipyygj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1063" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="931" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1061" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesbeta", UID:"486797fb-7abd-4338-b3a0-6a1e4dd6dded", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1064" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1031" generation=2 uid="f2af3e81-2fb4-42e5-b314-876f4dea4767" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWVdRV0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1032" generation=2 uid="4fe1ec6a-a85f-4124-a03d-e658c5831f03" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBUkRKTlItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotest-rg-bywqwk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:43Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:43Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="asotest-rg-ardjnr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1069" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesalpha", UID:"fda17d6f-b989-4dda-b12e-8dec38593e5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotestipyygj resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "asotestipyygj": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-operationalinsi-dba27/asotestipyygj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f13e484e-9fb3-4332-a52b-170c8412eacb, UID in object meta: " name="asotestipyygj" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-dba27" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta\",\"name\":\"samplequeuebeta\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotest-rg-bywqwk aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotestrhnmqz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/asotest-rg-ardjnr resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ardjnr": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/asotest-rg-ardjnr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4fe1ec6a-a85f-4124-a03d-e658c5831f03, UID in object meta: " name="asotest-rg-ardjnr" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotest-rg-bywqwk resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bywqwk": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotest-rg-bywqwk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f2af3e81-2fb4-42e5-b314-876f4dea4767, UID in object meta: " name="asotest-rg-bywqwk" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha\",\"name\":\"samplequeuealpha\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/asotest-rg-ardjnr aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-appservice aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-function]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1088" generation=1 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesbeta", UID:"486797fb-7abd-4338-b3a0-6a1e4dd6dded", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1085" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1090" generation=1 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesalpha", UID:"fda17d6f-b989-4dda-b12e-8dec38593e5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SignalRController "msg"="Reconcile invoked" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="1091" generation=2 uid="248acd88-1ff2-449d-adeb-60b9e702937b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bywqwk", UID:"f2af3e81-2fb4-42e5-b314-876f4dea4767", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bywqwk/providers/Microsoft.SignalRService/signalR/asotestrhnmqz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-bywqwk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1089" generation=1 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SignalRController "msg"="Determined Delete action" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SignalRController "msg"="Starting delete of resource" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SignalRController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" azureName="asotestrhnmqz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SignalRController "msg"="Delete succeeded, removing finalizer" name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1095" generation=2 uid="b7b44608-8224-41db-b556-7e855008cd51" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ServerFarmController "msg"="Determined Delete action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ServerFarmController "msg"="Starting delete of resource" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ServerFarmController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ServerFarmController "msg"="Delete succeeded, removing finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1097" generation=1 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw\",\"location\":\"westus2\",\"name\":\"asotest-rg-tizurw\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1075" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/operationResults/de9dacaf-3890-413e-9234-5e8e983b26d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="1100" generation=2 uid="fc3b6aa5-6c65-448c-bb4b-f0770bc7938b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ardjnr", UID:"4fe1ec6a-a85f-4124-a03d-e658c5831f03", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ardjnr/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-ardjnr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1103" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] ServerFarmController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-appservice resource status: Operation cannot be fulfilled on serverfarms.web.azure.com "aso-sample-appservice": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/serverfarms/aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-appservice, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b7b44608-8224-41db-b556-7e855008cd51, UID in object meta: " name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1109" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SiteController "msg"="Determined Delete action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SiteController "msg"="Starting delete of resource" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SiteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SiteController "msg"="Delete succeeded, removing finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="Reconcile invoked" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1108" generation=1 uid="4ba91ed3-30b4-4fe0-9a95-6ecff39747aa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="applying ownership" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="Reconcile invoked" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1110" generation=1 uid="8cae125f-909a-431d-82b7-c8a6207bdc7f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="applying ownership" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Got ARM status" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta\",\"identity\":{\"type\":\"None\"},\"kind\":\"GlobalDocumentDB\",\"location\":\"East US\",\"name\":\"sample-sqldb-account-beta\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"WellDefined\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-sqldb-account-beta.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1112" generation=1 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1114" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="Set owner reference" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1077" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/operationResults/29d9c3f6-5040-453e-8e68-f71a7aa4a951?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="Set owner reference" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="Reconcile invoked" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1119" generation=1 uid="38982b9e-7468-475e-9701-d44df48fd378" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="applying ownership" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="Reconcile invoked" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1117" generation=1 uid="6b651c49-4d47-41fb-b540-6270b9314093" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="applying ownership" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Got ARM status" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account\",\"identity\":{\"type\":\"None\"},\"kind\":\"GlobalDocumentDB\",\"location\":\"East US\",\"name\":\"sample-sqldb-account\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"WellDefined\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-sqldb-account.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-sqldb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-sqldb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="adding finalizer" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1078" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="adding finalizer" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1125" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="Set owner reference" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="Set owner reference" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1127" generation=1 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] 2023/09/08 21:47:44 http: TLS handshake error from 127.0.0.1:48790: read tcp 127.0.0.1:37369->127.0.0.1:48790: read: connection reset by peer +[controller:test-integration-envtest] 2023/09/08 21:47:44 http: TLS handshake error from 127.0.0.1:48806: read tcp 127.0.0.1:37369->127.0.0.1:48806: read: connection reset by peer +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1124" generation=1 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Owner exists but is not ready. Current condition" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="adding finalizer" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Set owner reference" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="adding finalizer" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="updated resource in etcd" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1130" generation=1 uid="8cae125f-909a-431d-82b7-c8a6207bdc7f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1138" generation=1 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1134" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="updated resource in etcd" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1132" generation=1 uid="4ba91ed3-30b4-4fe0-9a95-6ecff39747aa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseController "msg"="adding finalizer" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" NamespacedName="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1035" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] DomainController "msg"="updated resource in etcd" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1137" generation=1 uid="6b651c49-4d47-41fb-b540-6270b9314093" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="Encountered error, re-queuing..." name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] TopicController "msg"="updated resource in etcd" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1135" generation=1 uid="38982b9e-7468-475e-9701-d44df48fd378" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:44Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1141" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1066" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="applying ownership" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="About to send resource to Azure" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Encountered error, re-queuing..." name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Successfully sent resource to Azure" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="About to send resource to Azure" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="About to send resource to Azure" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Successfully sent resource to Azure" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Set owner reference" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1142" generation=1 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1034" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="applying ownership" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Successfully sent resource to Azure" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" NamespacedName="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1145" generation=1 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="applying ownership" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1144" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="About to send resource to Azure" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Successfully sent resource to Azure" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1149" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv\",\"location\":\"westus2\",\"name\":\"asotest-rg-ytsfwv\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Set owner reference" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Set owner reference" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="updated resource in etcd" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1156" generation=1 uid="8cae125f-909a-431d-82b7-c8a6207bdc7f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A785745-4CF3-4DD7-AE7F-111D765F7D47?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Done with reconcile" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1106" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/13505f04-e729-4503-9445-456f94cf080b?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1154" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Set owner reference" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="About to send resource to Azure" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Successfully sent resource to Azure" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1160" generation=1 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105\",\"name\":\"pool202105\",\"properties\":{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-2023.01.20\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Reconcile invoked" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1156" generation=1 uid="8cae125f-909a-431d-82b7-c8a6207bdc7f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/3A785745-4CF3-4DD7-AE7F-111D765F7D47?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="updated resource in etcd" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1164" generation=1 uid="38982b9e-7468-475e-9701-d44df48fd378" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AAACDE4D-C19B-49B6-B4A6-4F910DE6FEE4?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Done with reconcile" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="updated resource in etcd" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1163" generation=1 uid="6b651c49-4d47-41fb-b540-6270b9314093" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A0A95CC-4B54-4BBE-89B6-998497A848D3?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Done with reconcile" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1165" generation=1 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" cannot be found. Progress is blocked until the owner is created." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="adding finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Resource successfully created/updated" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Got ARM status" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv\",\"location\":\"westcentralus\",\"name\":\"asotestiollvv\",\"properties\":{\"endpoint\":\"https://asotestiollvv.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"36d43eca-3830-418c-a385-07d87cddd3b0\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Reconcile invoked" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1163" generation=1 uid="6b651c49-4d47-41fb-b540-6270b9314093" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/1A0A95CC-4B54-4BBE-89B6-998497A848D3?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="updated resource in etcd" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1168" generation=1 uid="4ba91ed3-30b4-4fe0-9a95-6ecff39747aa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/727D58E8-0E40-478F-B3B5-48166BFCA6C1?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Done with reconcile" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="adding finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Reconcile invoked" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1164" generation=1 uid="38982b9e-7468-475e-9701-d44df48fd378" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/AAACDE4D-C19B-49B6-B4A6-4F910DE6FEE4?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="adding finalizer" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="adding finalizer" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Determined CreateOrUpdate action" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Resource successfully created/updated" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Resource successfully created/updated" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Reconcile invoked" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1168" generation=1 uid="4ba91ed3-30b4-4fe0-9a95-6ecff39747aa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/727D58E8-0E40-478F-B3B5-48166BFCA6C1?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Got ARM status" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu\",\"location\":\"westcentralus\",\"name\":\"asotestltoilu\",\"properties\":{\"endpoint\":\"https://asotestltoilu.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"4ad7064e-0758-4f86-a7a5-cdc162e62e27\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/domains\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Got ARM status" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck\",\"location\":\"westcentralus\",\"name\":\"asotestgjnlck\",\"properties\":{\"endpoint\":\"https://asotestgjnlck.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"ae00228c-0bf2-433e-8c6c-d0b462f78199\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1175" generation=1 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1177" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Determined CreateOrUpdate action" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Resource successfully created/updated" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Got ARM status" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel\",\"location\":\"westcentralus\",\"name\":\"asotestuuzwel\",\"properties\":{\"endpoint\":\"https://asotestuuzwel.westcentralus-1.eventgrid.azure.net/api/events\",\"inputSchema\":\"EventGridSchema\",\"metricResourceId\":\"925f3d4b-aa74-4d75-938c-7e55debbf6fd\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.EventGrid/domains\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1177" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1171" generation=1 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr\",\"location\":\"westus2\",\"name\":\"asotest-rg-flkxkr\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1174" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1178" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1181" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1179" generation=1 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"d433b584-bc14-4c3e-946b-15833e45bf2e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="updated resource in etcd" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1184" generation=1 uid="8cae125f-909a-431d-82b7-c8a6207bdc7f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Done with reconcile" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1182" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" NamespacedName="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="updated resource in etcd" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1189" generation=1 uid="38982b9e-7468-475e-9701-d44df48fd378" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] TopicController "msg"="Done with reconcile" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1121" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="applying ownership" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1177" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1188" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" cannot be found. Progress is blocked until the owner is created." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="updated resource in etcd" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1190" generation=1 uid="6b651c49-4d47-41fb-b540-6270b9314093" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Done with reconcile" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Encountered error, re-queuing..." name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" NamespacedName="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="About to send resource to Azure" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Successfully sent resource to Azure" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="updated resource in etcd" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1192" generation=1 uid="4ba91ed3-30b4-4fe0-9a95-6ecff39747aa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainController "msg"="Done with reconcile" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Set owner reference" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Topic" ownerName="asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1140" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1177" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1126" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="applying ownership" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1196" generation=1 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1197" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="About to send resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Successfully sent resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1194" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="applying ownership" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="About to send resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Successfully sent resource to Azure" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Set owner reference" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Domain" ownerName="asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="Set owner reference" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Domain" ownerName="asotestltoilu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1200" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner does not yet exist" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" NamespacedName="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Encountered error, re-queuing..." name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="adding finalizer" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1177" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/operationResults/5cb816f6-869e-446a-8329-833a31f0031b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1205" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Set owner reference" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1208" generation=1 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"d433b584-bc14-4c3e-946b-15833e45bf2e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/operationResults/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1204" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Resource successfully created/updated" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Got ARM status" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta\",\"name\":\"sample-sql-db-beta\",\"properties\":{\"resource\":{\"_colls\":\"colls/\",\"_etag\":\"\\\"00009603-0000-0100-0000-6493315b0000\\\"\",\"id\":\"sample-sql-db-beta\",\"_rid\":\"gzEGAA==\",\"_ts\":1687368027,\"_users\":\"users/\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="adding finalizer" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1208" generation=1 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"d433b584-bc14-4c3e-946b-15833e45bf2e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/operationResults/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1133" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="applying ownership" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1205" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DomainsTopicController "msg"="adding finalizer" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="adding finalizer" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1211" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1215" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] IotHubController "msg"="applying ownership" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] EventSubscriptionController "msg"="Set owner reference" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" ownerGvk="eventgrid.azure.com/v1api20200601storage, Kind=Domain" ownerName="asotestuuzwel" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1208" generation=1 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"d433b584-bc14-4c3e-946b-15833e45bf2e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/operationResults/6e314c09-350c-4ec5-808b-695063820837?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1219" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1211" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1205" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:45Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Got ARM status" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta\",\"identity\":{\"type\":\"None\"},\"kind\":\"MongoDB\",\"location\":\"East US\",\"name\":\"sample-mongodb-account-beta\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"FullFidelity\"},\"apiProperties\":{\"serverVersion\":\"3.6\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"capabilities\":[{\"name\":\"EnableMongo\"}],\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-mongodb-account-beta.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-beta-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-beta-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1219" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1226" generation=1 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1223" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1217" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Set owner reference" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1214" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"8cae125f-909a-431d-82b7-c8a6207bdc7f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestiollvv, Group/Kind: eventgrid.azure.com/Topic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1218" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"6b651c49-4d47-41fb-b540-6270b9314093", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestltoilu, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1211" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1205" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Successfully created resource" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" name="db-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="adding finalizer" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="adding finalizer" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="About to send resource to Azure" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Successfully sent resource to Azure" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Resource not created yet, will check again" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1219" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1211" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="About to send resource to Azure" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Successfully sent resource to Azure" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1219" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1205" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/operationResults/341b9289-bb93-4e7b-aaa6-28a49a7b6b2f?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="About to send resource to Azure" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Successfully sent resource to Azure" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1043" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="About to send resource to Azure" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Successfully sent resource to Azure" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1082" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource not created yet, will check again" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Didn't commit obj as there was no change" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1211" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583/operationResults/f690a94a-de23-4f13-97f6-5c0e356940f2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Resource successfully created/updated" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Got ARM status" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db\",\"name\":\"sample-sql-db\",\"properties\":{\"resource\":{\"_colls\":\"colls/\",\"_etag\":\"\\\"0000c60a-0000-0100-0000-6493315b0000\\\"\",\"id\":\"sample-sql-db\",\"_rid\":\"iaNKAA==\",\"_ts\":1687368027,\"_users\":\"users/\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1231" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1219" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0/operationResults/de705bf0-f429-4cd1-936d-484c974585b7?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Set owner reference" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource successfully created/updated" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Got ARM status" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583\",\"name\":\"2bffb017-2385-5855-9fac-9984a599e583\",\"properties\":{\"principalId\":\"df2a8435-df64-4803-abf7-436cc3779660\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleDefinitions/00000000-0000-0000-0000-000000000002\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta\"},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Determined CreateOrUpdate action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Resource successfully created/updated" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Got ARM status" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0\",\"name\":\"b6377656-c9aa-5bfb-b845-160126af8fa0\",\"properties\":{\"principalId\":\"84685fdf-f478-42cf-90c9-69503b295e80\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleDefinitions/00000000-0000-0000-0000-000000000002\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account\"},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlRoleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1242" generation=1 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"d433b584-bc14-4c3e-946b-15833e45bf2e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="updated resource in etcd" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1235" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1021" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="applying ownership" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="About to send resource to Azure" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Successfully sent resource to Azure" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="adding finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1251" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"6b651c49-4d47-41fb-b540-6270b9314093", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4412E274-89EF-46E5-9766-F1762E046A24?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Done with reconcile" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1249" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/674DC806-8D7A-413A-B0E4-9BE76B6BD1FB?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Done with reconcile" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1250" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"8cae125f-909a-431d-82b7-c8a6207bdc7f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89C4173B-EA8D-44D2-B477-09F9D32DD996?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1253" generation=1 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="updated resource in etcd" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1248" generation=1 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseController "msg"="Done with reconcile" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="updated resource in etcd" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1255" generation=1 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlRoleAssignmentController "msg"="Done with reconcile" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="About to send resource to Azure" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Successfully sent resource to Azure" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Encountered error, re-queuing..." name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1250" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"8cae125f-909a-431d-82b7-c8a6207bdc7f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/89C4173B-EA8D-44D2-B477-09F9D32DD996?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1251" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"6b651c49-4d47-41fb-b540-6270b9314093", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/4412E274-89EF-46E5-9766-F1762E046A24?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1249" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/674DC806-8D7A-413A-B0E4-9BE76B6BD1FB?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1170" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Resource successfully created/updated" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Got ARM status" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp\",\"name\":\"asotestzfzwyp\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.EventGrid/domains/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Determined CreateOrUpdate action" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Resource successfully created/updated" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Got ARM status" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh\",\"name\":\"asotesthdrkoh\",\"properties\":{\"destination\":{\"endpointType\":\"StorageQueue\",\"properties\":{\"queueName\":\"samplequeuealpha\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha\"}},\"eventDeliverySchema\":\"EventGridSchema\",\"filter\":{\"subjectBeginsWith\":\"\",\"subjectEndsWith\":\"\"},\"provisioningState\":\"Succeeded\",\"retryPolicy\":{\"eventTimeToLiveInMinutes\":1440,\"maxDeliveryAttempts\":30},\"topic\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/microsoft.eventgrid/topics/asotestiollvv\"},\"type\":\"Microsoft.EventGrid/eventSubscriptions\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Resource successfully created/updated" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Got ARM status" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu\",\"name\":\"asotestrjhntu\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.EventGrid/domains/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1019" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="applying ownership" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseController "msg"="Set owner reference" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-mongodb-account-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="updated resource in etcd" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="Set owner reference" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabase" ownerName="sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1268" generation=1 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] DomainsTopicController "msg"="Done with reconcile" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1260" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:46Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1258" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1267" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FC0BD75D-991F-46C4-93B2-0406A2078092?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:46Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1267" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.EventGrid/locations/westcentralus/operationsStatus/FC0BD75D-991F-46C4-93B2-0406A2078092?api-version=2020-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="adding finalizer" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1273" generation=1 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"8cae125f-909a-431d-82b7-c8a6207bdc7f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DomainsTopicController "msg"="updated resource in etcd" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1271" generation=1 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"6b651c49-4d47-41fb-b540-6270b9314093", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DomainsTopicController "msg"="Done with reconcile" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="Resource successfully created/updated" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="Got ARM status" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo\",\"name\":\"asotesteoyquo\",\"properties\":{\"destination\":{\"endpointType\":\"StorageQueue\",\"properties\":{\"queueName\":\"samplequeuebeta\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta\"}},\"eventDeliverySchema\":\"EventGridSchema\",\"filter\":{\"subjectBeginsWith\":\"\",\"subjectEndsWith\":\"\"},\"provisioningState\":\"Succeeded\",\"retryPolicy\":{\"eventTimeToLiveInMinutes\":1440,\"maxDeliveryAttempts\":30},\"topic\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/microsoft.eventgrid/domains/asotestuuzwel\"},\"type\":\"Microsoft.EventGrid/eventSubscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="adding finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1272" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="About to send resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Successfully sent resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1278" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="updated resource in etcd" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1281" generation=1 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] EventSubscriptionController "msg"="Done with reconcile" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1284" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1275" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"b37690f5-58a2-41ac-bcba-f585a496e27b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1285" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1286" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Resource not created yet, will check again" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Didn't commit obj as there was no change" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1286" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1285" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1240" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/operationResults/ce815390-e739-47e4-8021-8c73173716d2?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="About to send resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Successfully sent resource to Azure" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="About to send resource to Azure" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseController "msg"="Successfully sent resource to Azure" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1286" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Determined CreateOrUpdate action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Resource successfully created/updated" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Got ARM status" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account\",\"identity\":{\"type\":\"None\"},\"kind\":\"MongoDB\",\"location\":\"East US\",\"name\":\"sample-mongodb-account\",\"properties\":{\"analyticalStorageConfiguration\":{\"schemaType\":\"FullFidelity\"},\"apiProperties\":{\"serverVersion\":\"3.6\"},\"backupPolicy\":{\"periodicModeProperties\":{\"backupIntervalInMinutes\":240,\"backupRetentionIntervalInHours\":8},\"type\":\"Periodic\"},\"capabilities\":[{\"name\":\"EnableMongo\"}],\"consistencyPolicy\":{\"defaultConsistencyLevel\":\"Session\",\"maxIntervalInSeconds\":5,\"maxStalenessPrefix\":100},\"databaseAccountOfferType\":\"Standard\",\"defaultIdentity\":\"FirstPartyIdentity\",\"disableKeyBasedMetadataWriteAccess\":false,\"documentEndpoint\":\"https://sample-mongodb-account.documents.azure.com:443/\",\"enableAnalyticalStorage\":false,\"enableAutomaticFailover\":false,\"enableFreeTier\":false,\"enableMultipleWriteLocations\":false,\"failoverPolicies\":[{\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"locationName\":\"East US\"}],\"isVirtualNetworkFilterEnabled\":false,\"locations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"networkAclBypass\":\"None\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"readLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}],\"writeLocations\":[{\"documentEndpoint\":\"https://sample-mongodb-account-eastus.documents.azure.com:443/\",\"failoverPriority\":0,\"id\":\"sample-mongodb-account-eastus\",\"isZoneRedundant\":false,\"locationName\":\"East US\",\"provisioningState\":\"Succeeded\"}]},\"type\":\"Microsoft.DocumentDB/databaseAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Getting Kubernetes resources for export" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] DatabaseAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1285" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Resource not created yet, will check again" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Didn't commit obj as there was no change" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1292" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:47Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:47Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1293" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1286" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default/operationResults/9e7a9279-039d-4433-8228-1ea5f68e9057?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1263" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzUxMTNiMzYtZTJlMi00NmNlLTllNTgtNGJiZDllYWUwNzNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02\\u0026operationSource=other\\u0026asyncinfo\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl?api-version=2021-07-02\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Accepted\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1292" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1285" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Determined CreateOrUpdate action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Resource successfully created/updated" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default\",\"name\":\"auGv\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Got ARM status" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" status="{\"etag\":\"AAAADH4Hv2g=\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl\",\"identity\":{\"type\":\"None\"},\"location\":\"westus2\",\"name\":\"asotestkzeorl\",\"properties\":{\"cloudToDevice\":{\"defaultTtlAsIso8601\":\"PT1H\",\"feedback\":{\"lockDurationAsIso8601\":\"PT1M\",\"maxDeliveryCount\":10,\"ttlAsIso8601\":\"PT1H\"},\"maxDeliveryCount\":10},\"enableFileUploadNotifications\":false,\"eventHubEndpoints\":{\"events\":{\"endpoint\":\"sb://iothub-ns-asotestkze-25041430-1a7563c663.servicebus.windows.net/\",\"partitionCount\":4,\"partitionIds\":[\"0\",\"1\",\"2\",\"3\"],\"path\":\"asotestkzeorl\",\"retentionTimeInDays\":1}},\"features\":\"None\",\"hostName\":\"asotestkzeorl.azure-devices.net\",\"locations\":[{\"location\":\"West US 2\",\"role\":\"primary\"},{\"location\":\"West Central US\",\"role\":\"secondary\"}],\"messagingEndpoints\":{\"fileNotifications\":{\"lockDurationAsIso8601\":\"PT1M\",\"maxDeliveryCount\":10,\"ttlAsIso8601\":\"PT1H\"}},\"provisioningState\":\"Succeeded\",\"routing\":{\"endpoints\":{},\"fallbackRoute\":{\"condition\":\"true\",\"endpointNames\":[\"events\"],\"isEnabled\":true,\"name\":\"$fallback\",\"source\":\"DeviceMessages\"}},\"state\":\"Active\",\"storageEndpoints\":{\"$default\":{\"containerName\":\"\",\"sasTtlAsIso8601\":\"PT1H\"}}},\"sku\":{\"capacity\":5,\"name\":\"B1\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Devices/IotHubs\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Getting Kubernetes resources for export" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1292" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1285" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/operationResults/e7b8c925-1ae0-43ad-b0c2-02ecddb85ad8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1300" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Owner exists but is not ready. Current condition" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" cannot be found. Progress is blocked until the owner is created." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource successfully created/updated" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Got ARM status" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container\",\"name\":\"sample-sql-container\",\"properties\":{\"resource\":{\"conflictResolutionPolicy\":{\"conflictResolutionPath\":\"/_ts\",\"conflictResolutionProcedure\":\"\",\"mode\":\"LastWriterWins\"},\"defaultTtl\":200,\"_etag\":\"\\\"00009d03-0000-0100-0000-649331960000\\\"\",\"id\":\"sample-sql-container\",\"indexingPolicy\":{\"automatic\":true,\"excludedPaths\":[{\"path\":\"/myPathToNotIndex/*\"},{\"path\":\"/\\\"_etag\\\"/?\"}],\"includedPaths\":[{\"path\":\"/*\"}],\"indexingMode\":\"consistent\"},\"partitionKey\":{\"kind\":\"Hash\",\"paths\":[\"/myPartitionKey\"]},\"_rid\":\"gzEGAPyQbq4=\",\"_ts\":1687368086,\"uniqueKeyPolicy\":{}}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Successfully created resource" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" name="iothubkeyssecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1301" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"b37690f5-58a2-41ac-bcba-f585a496e27b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/operationResults/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1300" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] DatabaseAccountController "msg"="updated resource in etcd" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1306" generation=1 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] DatabaseAccountController "msg"="Done with reconcile" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1300" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1292" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default/operationResults/bab7bce0-bed8-4a7b-83ff-970416f94068?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1309" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1301" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"b37690f5-58a2-41ac-bcba-f585a496e27b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/operationResults/eb611129-37e0-4abb-9e93-8291362c4ba4?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1311" generation=1 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1309" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default\",\"name\":\"mJ02\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Encountered error, re-queuing..." name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1313" generation=1 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1300" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Resource successfully created/updated" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Got ARM status" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta\",\"name\":\"sample-db-mongodb-beta\",\"properties\":{\"resource\":{\"id\":\"sample-db-mongodb-beta\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1222" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="applying ownership" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1309" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource not created yet, will check again" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Didn't commit obj as there was no change" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="updated resource in etcd" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1318" generation=1 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] IotHubController "msg"="Done with reconcile" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Set owner reference" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=DatabaseAccount" ownerName="sample-mongodb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1016" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1018" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1309" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1176" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1321" generation=1 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"b37690f5-58a2-41ac-bcba-f585a496e27b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1300" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/operationResults/dab55bd3-8960-4a2a-97ea-cc68546467d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1067" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Determined CreateOrUpdate action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Resource successfully created/updated" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Got ARM status" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container\",\"name\":\"sample-sql-container\",\"properties\":{\"resource\":{\"conflictResolutionPolicy\":{\"conflictResolutionPath\":\"/_ts\",\"conflictResolutionProcedure\":\"\",\"mode\":\"LastWriterWins\"},\"defaultTtl\":200,\"_etag\":\"\\\"0000d10a-0000-0100-0000-649331950000\\\"\",\"id\":\"sample-sql-container\",\"indexingPolicy\":{\"automatic\":true,\"excludedPaths\":[{\"path\":\"/myPathToNotIndex/*\"},{\"path\":\"/\\\"_etag\\\"/?\"}],\"includedPaths\":[{\"path\":\"/*\"}],\"indexingMode\":\"consistent\"},\"partitionKey\":{\"kind\":\"Hash\",\"paths\":[\"/myPartitionKey\"]},\"_rid\":\"iaNKAIgaj+I=\",\"_ts\":1687368085,\"uniqueKeyPolicy\":{}}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Set owner reference" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1322" generation=1 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Set owner reference" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Set owner reference" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1309" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="adding finalizer" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1058" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1325" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1309" generation=2 uid="3a9f15f9-cf2a-4000-bb06-fe477d552272" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:36 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRUUFSUkktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Owner exists but is not ready. Current condition" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" cannot be found. Progress is blocked until the owner is created." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1159" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotest-rg-qqarri" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Set owner reference" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="updated resource in etcd" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1331" generation=1 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerController "msg"="Done with reconcile" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="adding finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="adding finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="adding finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Encountered error, re-queuing..." name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1051" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="applying ownership" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Encountered error, re-queuing..." name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1330" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1072" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="applying ownership" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1080" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1213" generation=2 uid="bdee6888-2caa-4353-b536-47eb2756cecc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZQ1VUTFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="adding finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Encountered error, re-queuing..." name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Set owner reference" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="asotest-rg-ycutlw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1336" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1337" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotest-rg-qqarri resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-qqarri": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotest-rg-qqarri, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3a9f15f9-cf2a-4000-bb06-fe477d552272, UID in object meta: " name="asotest-rg-qqarri" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1046" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="applying ownership" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="Set owner reference" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1339" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotest-rg-qqarri aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragebeta aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragequeuesbeta aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplequeuebeta aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestuuzwel aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestzfzwyp aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotesteoyquo aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestgjnlck]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1298" generation=2 uid="682afba8-19ad-41c1-a3f8-b53cfb73c914" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRISlhDTlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-1670c/asotest-rg-ycutlw aso-test-samples-creationanddeletion-test-containerservic-1670c/pool202105 aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1345" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1346" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="About to send resource to Azure" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotest-rg-hjxcns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] MongodbDatabaseController "msg"="Successfully sent resource to Azure" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:48Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Set owner reference" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=SqlDatabaseContainer" ownerName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1347" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1670c/asotest-rg-ycutlw resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ycutlw": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-1670c/asotest-rg-ycutlw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bdee6888-2caa-4353-b536-47eb2756cecc, UID in object meta: " name="asotest-rg-ycutlw" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="adding finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="About to send resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Successfully sent resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1352" generation=2 uid="a8f51317-16ab-4670-aa98-25286b700257" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="About to send resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="About to send resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Successfully sent resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotest-rg-hjxcns aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragealpha aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplequeuealpha aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotesthdrkoh aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestltoilu aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestrjhntu]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully sent resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="adding finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1359" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotest-rg-hjxcns resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-hjxcns": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotest-rg-hjxcns, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 682afba8-19ad-41c1-a3f8-b53cfb73c914, UID in object meta: " name="asotest-rg-hjxcns" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Determined Delete action" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Starting delete of resource" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplekubestoragebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1357" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="About to send resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] DomainController "msg"="Reconcile invoked" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1358" generation=2 uid="4ba91ed3-30b4-4fe0-9a95-6ecff39747aa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully sent resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="adding finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] DomainController "msg"="Determined Delete action" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] DomainController "msg"="Starting delete of resource" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] DomainController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestuuzwel" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] DomainController "msg"="Delete succeeded, removing finalizer" name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1364" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/operationResults/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1363" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1359" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1360" generation=2 uid="9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ycutlw", UID:"bdee6888-2caa-4353-b536-47eb2756cecc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="asotest-rg-ycutlw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1364" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/operationResults/6b09b260-f8c5-436f-9b4a-c6076d9101c0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1367" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1372" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default/operationResults/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1375" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Resource not created yet, will check again" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Reconcile invoked" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1368" generation=2 uid="38982b9e-7468-475e-9701-d44df48fd378" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qqarri", UID:"3a9f15f9-cf2a-4000-bb06-fe477d552272", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/topics/asotestgjnlck"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-qqarri, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragebeta resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "samplekubestoragebeta": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragebeta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a8f51317-16ab-4670-aa98-25286b700257, UID in object meta: " name="samplekubestoragebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Resource successfully created/updated" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Got ARM status" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection\",\"name\":\"sample-mongo-collection\",\"properties\":{\"resource\":{\"id\":\"sample-mongo-collection\",\"indexes\":[{\"key\":{\"keys\":[\"_id\"]}},{\"key\":{\"keys\":[\"col1\",\"col2\"]}}]}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1378" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] DomainController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestuuzwel resource status: Operation cannot be fulfilled on domains.eventgrid.azure.com "asotestuuzwel": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domains/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestuuzwel, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4ba91ed3-30b4-4fe0-9a95-6ecff39747aa, UID in object meta: " name="asotestuuzwel" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Reconcile invoked" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1376" generation=2 uid="3ecb397e-9721-49c7-ad3b-dc8851d986d8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:41 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1372" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default/operationResults/f0e2b806-c1f2-462c-8830-2150d30dc9d0?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1359" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1375" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Determined Delete action" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Starting delete of resource" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplekubestoragealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="About to send resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Determined Delete action" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Starting delete of resource" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestgjnlck" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Delete succeeded, removing finalizer" name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1378" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully sent resource to Azure" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default\",\"name\":\"JwJy\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Resource not created yet, will check again" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Didn't commit obj as there was no change" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1385" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1388" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1379" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1385" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1359" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/operationResults/275f5d3a-593d-4c4d-8a5d-fd9f8dca742c?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Reconcile invoked" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Topic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1383" generation=2 uid="8cae125f-909a-431d-82b7-c8a6207bdc7f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1375" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-1670c/samplemanagedcluster, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a, UID in object meta: " name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Determined Delete action" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] TopicController "msg"="Starting delete of resource" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1388" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] SqlDatabaseContainerStoredProcedureController "msg"="About to send resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully sent resource to Azure" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] TopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestgjnlck resource status: Operation cannot be fulfilled on topics.eventgrid.azure.com "asotestgjnlck": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/topics/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestgjnlck, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 38982b9e-7468-475e-9701-d44df48fd378, UID in object meta: " name="asotestgjnlck" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1147" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1378" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] TopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestiollvv" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:49Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragealpha resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "samplekubestoragealpha": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragealpha, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3ecb397e-9721-49c7-ad3b-dc8851d986d8, UID in object meta: " name="samplekubestoragealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseController "msg"="Determined CreateOrUpdate action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] TopicController "msg"="Delete succeeded, removing finalizer" name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseController "msg"="Resource successfully created/updated" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseController "msg"="Got ARM status" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb\",\"name\":\"sample-db-mongodb\",\"properties\":{\"resource\":{\"id\":\"sample-db-mongodb\"}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1395" generation=1 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1398" generation=1 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1375" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/f83532c5-395d-446a-9b32-a027dd6dac7a?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1397" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1397" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabaseCollection" ownerName="sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1385" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Resource successfully created/updated" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Got ARM status" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger\",\"name\":\"sample-sql-trigger\",\"properties\":{\"resource\":{\"body\":\"function validateToDoItemTimestamp(){\\n var context=getContext();\\n var request=context.getRequest();\\n var itemToCreate=request.getBody();\\n if(!('timestamp' in itemToCreate)) {\\n var ts=new Date();\\n itemToCreate['timestamp']=ts.getTime();\\n }\\n request.setBody(itemToCreate);\\n}\\n\",\"_etag\":\"\\\"2f00b5d9-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-trigger\",\"_rid\":\"gzEGAPyQbq4BAAAAAAAAcA==\",\"triggerOperation\":\"Create\",\"triggerType\":\"Pre\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainController "msg"="Reconcile invoked" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:Domain,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1396" generation=2 uid="6b651c49-4d47-41fb-b540-6270b9314093" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-hjxcns", UID:"682afba8-19ad-41c1-a3f8-b53cfb73c914", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:49 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="asotest-rg-hjxcns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="About to send resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Successfully sent resource to Azure" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainController "msg"="Determined Delete action" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainController "msg"="Starting delete of resource" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestltoilu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainController "msg"="Delete succeeded, removing finalizer" name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1402" generation=2 uid="486797fb-7abd-4338-b3a0-6a1e4dd6dded" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragebeta", UID:"a8f51317-16ab-4670-aa98-25286b700257", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="samplekubestoragebeta, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1388" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1378" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/0d82d864-2481-4c57-bbe4-963ea75a1cda?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="1405" generation=2 uid="e875bb48-c205-451c-a3e6-a2acf8a2b873" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"9d727d94-5cf9-4846-8cc4-e4fd5dff5b4a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ycutlw/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool202105"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1408" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default/operationResults/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1408" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default/operationResults/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1397" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1410" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" azureName="pool202105" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1385" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default/operationResults/d3e5f10b-c312-4130-aaa8-abf346f3c5d3?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource successfully created/updated" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Got ARM status" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function\",\"name\":\"sample-sql-function\",\"properties\":{\"resource\":{\"body\":\"function tax(income) {\\n if (income == undefined)\\n throw 'no input';\\n if (income \\u003c 1000)\\n return income*0.1;\\n else if(income \\u003c 10000)\\n return income*0.2;\\n else\\n return income*0.4;\\n}\\n\",\"_etag\":\"\\\"2f00b2d9-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-function\",\"_rid\":\"gzEGAPyQbq4BAAAAAAAAYA==\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseController "msg"="updated resource in etcd" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1414" generation=1 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseController "msg"="Done with reconcile" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1412" generation=2 uid="834b1edc-87b4-48b0-9089-853eedf4d79d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/topics/asotestzfzwyp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] DomainController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestltoilu resource status: Operation cannot be fulfilled on domains.eventgrid.azure.com "asotestltoilu": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domains/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestltoilu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6b651c49-4d47-41fb-b540-6270b9314093, UID in object meta: " name="asotestltoilu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1338" generation=2 uid="5e3b08b1-d723-471b-a530-a9d81ac1e084" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGTEtYS1ItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1388" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/33ae1bee-9749-4c08-b930-843d0d0f7d82?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1410" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Encountered error, re-queuing..." name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1417" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource successfully created/updated" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Got ARM status" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure\",\"name\":\"sample-sql-stored-procedure\",\"properties\":{\"resource\":{\"body\":\"function () {\\n var context = getContext();\\n var response = context.getResponse();\\n response.setBody('Hello, World');\\n}\\n\",\"_etag\":\"\\\"2f00b3d9-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-stored-procedure\",\"_rid\":\"gzEGAPyQbq4BAAAAAAAAgA==\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotest-rg-flkxkr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1228" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="applying ownership" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] TopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv resource status: Operation cannot be fulfilled on topics.eventgrid.azure.com "asotestiollvv": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/topics/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestiollvv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8cae125f-909a-431d-82b7-c8a6207bdc7f, UID in object meta: " name="asotestiollvv" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Determined Delete action" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Starting delete of resource" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default\",\"name\":\"2-9D\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotestzfzwyp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Delete succeeded, removing finalizer" name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource not created yet, will check again" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Didn't commit obj as there was no change" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1417" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1408" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default/operationResults/2a7db730-a9ab-4258-bdd1-ce705fcc5332?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1397" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function/operationResults/62fdb436-4eff-49ec-be2a-47d8f07ee31e?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1418" generation=2 uid="54233c21-bc64-492a-bc4a-8c1829c95637" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestuuzwel", UID:"4ba91ed3-30b4-4fe0-9a95-6ecff39747aa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.EventGrid/domains/asotestuuzwel/providers/Microsoft.EventGrid/eventSubscriptions/asotesteoyquo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="asotestuuzwel, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1410" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragequeuesbeta resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "samplekubestoragequeuesbeta": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplekubestoragequeuesbeta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 486797fb-7abd-4338-b3a0-6a1e4dd6dded, UID in object meta: " name="samplekubestoragequeuesbeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1423" generation=1 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined CreateOrUpdate action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Resource successfully created/updated" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource not created yet, will check again" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Didn't commit obj as there was no change" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1202" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1427" generation=1 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Got ARM status" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function\",\"name\":\"sample-sql-function\",\"properties\":{\"resource\":{\"body\":\"function tax(income) {\\n if (income == undefined)\\n throw 'no input';\\n if (income \\u003c 1000)\\n return income*0.1;\\n else if(income \\u003c 10000)\\n return income*0.2;\\n else\\n return income*0.4;\\n}\\n\",\"_etag\":\"\\\"290acec6-0000-0100-0000-649331ce0000\\\"\",\"id\":\"sample-sql-function\",\"_rid\":\"iaNKAIgaj+IBAAAAAAAAYA==\",\"_ts\":1687368142}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1417" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Set owner reference" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Determined Delete action" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Starting delete of resource" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="asotesteoyquo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default\",\"name\":\"Vy1X\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1432" generation=2 uid="fda17d6f-b989-4dda-b12e-8dec38593e5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"samplekubestoragealpha", UID:"3ecb397e-9721-49c7-ad3b-dc8851d986d8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:43 +0000 UTC\"]" owner="samplekubestoragealpha, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Resource not created yet, will check again" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Didn't commit obj as there was no change" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabase" ownerName="sample-db-mongodb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1410" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure/operationResults/13d50a86-c96a-46ef-be00-b6f420e6341b?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotest-rg-flkxkr resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-flkxkr": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotest-rg-flkxkr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5e3b08b1-d723-471b-a530-a9d81ac1e084, UID in object meta: " name="asotest-rg-flkxkr" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotest-rg-flkxkr aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotestkzeorl]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1435" generation=1 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1434" generation=1 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestzfzwyp resource status: Operation cannot be fulfilled on domainstopics.eventgrid.azure.com "asotestzfzwyp": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domainstopics/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotestzfzwyp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 834b1edc-87b4-48b0-9089-853eedf4d79d, UID in object meta: " name="asotestzfzwyp" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1424" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"7853eba9-3d10-40ae-9dc4-1fdd13e3403a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined CreateOrUpdate action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Resource successfully created/updated" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Got ARM status" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure\",\"name\":\"sample-sql-stored-procedure\",\"properties\":{\"resource\":{\"body\":\"function () {\\n var context = getContext();\\n var response = context.getResponse();\\n response.setBody('Hello, World');\\n}\\n\",\"_etag\":\"\\\"290ad3c6-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-stored-procedure\",\"_rid\":\"iaNKAIgaj+IBAAAAAAAAgA==\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Reconcile invoked" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:EventSubscription,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1437" generation=2 uid="e6ca6ec3-87cc-467d-a10e-1c4bc818fd52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Topic", Name:"asotestiollvv", UID:"8cae125f-909a-431d-82b7-c8a6207bdc7f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/topics/asotestiollvv/providers/Microsoft.EventGrid/eventSubscriptions/asotesthdrkoh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestiollvv, Group/Kind: eventgrid.azure.com/Topic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1417" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger/operationResults/d8bfbcc5-b78d-4aab-b511-92309258cb21?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Determined CreateOrUpdate action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Resource successfully created/updated" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Got ARM status" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger\",\"name\":\"sample-sql-trigger\",\"properties\":{\"resource\":{\"body\":\"function validateToDoItemTimestamp(){\\n var context=getContext();\\n var request=context.getRequest();\\n var itemToCreate=request.getBody();\\n if(!('timestamp' in itemToCreate)) {\\n var ts=new Date();\\n itemToCreate['timestamp']=ts.getTime();\\n }\\n request.setBody(itemToCreate);\\n}\\n\",\"_etag\":\"\\\"290ad4c6-0000-0100-0000-649331cf0000\\\"\",\"id\":\"sample-sql-trigger\",\"_rid\":\"iaNKAIgaj+IBAAAAAAAAcA==\",\"triggerOperation\":\"Create\",\"triggerType\":\"Pre\",\"_ts\":1687368143}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotesteoyquo resource status: Operation cannot be fulfilled on eventsubscriptions.eventgrid.azure.com "asotesteoyquo": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/eventsubscriptions/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/asotesteoyquo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 54233c21-bc64-492a-bc4a-8c1829c95637, UID in object meta: " name="asotesteoyquo" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="adding finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Determined Delete action" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Starting delete of resource" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotesthdrkoh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="updated resource in etcd" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1442" generation=1 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Done with reconcile" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Reconcile invoked" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:DomainsTopic,APIVersion:eventgrid.azure.com/v1api20200601storage,}" resourceVersion="1445" generation=2 uid="d1aade40-19ca-457b-898e-643257f6d9bc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventgrid.azure.com/v1api20200601storage", Kind:"Domain", Name:"asotestltoilu", UID:"6b651c49-4d47-41fb-b540-6270b9314093", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.EventGrid/domains/asotestltoilu/topics/asotestrjhntu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotestltoilu, Group/Kind: eventgrid.azure.com/Domain" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Determined Delete action" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Starting delete of resource" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="asotestrjhntu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Delete succeeded, removing finalizer" name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1450" generation=1 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="updated resource in etcd" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1449" generation=1 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerStoredProcedureController "msg"="Done with reconcile" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "samplekubestoragequeuesalpha": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplekubestoragequeuesalpha, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fda17d6f-b989-4dda-b12e-8dec38593e5d, UID in object meta: " name="samplekubestoragequeuesalpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] IotHubController "msg"="Reconcile invoked" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" kind="&TypeMeta{Kind:IotHub,APIVersion:devices.azure.com/v1api20210702storage,}" resourceVersion="1451" generation=2 uid="30bbc0db-0d86-41d8-80e1-5f5e60f3485e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-flkxkr", UID:"5e3b08b1-d723-471b-a530-a9d81ac1e084", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-flkxkr/providers/Microsoft.Devices/IotHubs/asotestkzeorl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="asotest-rg-flkxkr, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] EventSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotesthdrkoh resource status: Operation cannot be fulfilled on eventsubscriptions.eventgrid.azure.com "asotesthdrkoh": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/eventsubscriptions/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotesthdrkoh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6ca6ec3-87cc-467d-a10e-1c4bc818fd52, UID in object meta: " name="asotesthdrkoh" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="updated resource in etcd" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1459" generation=1 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] SqlDatabaseContainerTriggerController "msg"="Done with reconcile" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] IotHubController "msg"="Determined Delete action" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] IotHubController "msg"="Starting delete of resource" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] DomainsTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestrjhntu resource status: Operation cannot be fulfilled on domainstopics.eventgrid.azure.com "asotestrjhntu": StorageError: invalid object, Code: 4, Key: /registry/eventgrid.azure.com/domainstopics/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/asotestrjhntu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d1aade40-19ca-457b-898e-643257f6d9bc, UID in object meta: " name="asotestrjhntu" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] IotHubController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" azureName="asotestkzeorl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] IotHubController "msg"="Delete succeeded, removing finalizer" name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1461" generation=2 uid="40cc0703-5b09-4f8e-8df9-181ef6c23312" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesbeta", UID:"486797fb-7abd-4338-b3a0-6a1e4dd6dded", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qqarri/providers/Microsoft.Storage/storageAccounts/samplekubestoragebeta/queueServices/default/queues/samplequeuebeta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplekubestoragequeuesbeta, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1460" generation=1 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1453" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1454" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" azureName="samplequeuebeta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1463" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1466" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"7853eba9-3d10-40ae-9dc4-1fdd13e3403a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default/operationResults/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="About to send resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Successfully sent resource to Azure" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1466" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"7853eba9-3d10-40ae-9dc4-1fdd13e3403a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default/operationResults/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] IotHubController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotestkzeorl resource status: Operation cannot be fulfilled on iothubs.devices.azure.com "asotestkzeorl": StorageError: invalid object, Code: 4, Key: /registry/devices.azure.com/iothubs/aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044/asotestkzeorl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 30bbc0db-0d86-41d8-80e1-5f5e60f3485e, UID in object meta: " name="asotestkzeorl" namespace="aso-test-samples-creationanddeletion-test-devices-v1api-c-4a044" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplequeuebeta resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "samplequeuebeta": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc/samplequeuebeta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 40cc0703-5b09-4f8e-8df9-181ef6c23312, UID in object meta: " name="samplequeuebeta" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1bet-aa8fc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1466" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"7853eba9-3d10-40ae-9dc4-1fdd13e3403a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default/operationResults/68cacacf-4369-4b60-bb20-8eead60362d6?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1465" generation=1 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default\",\"name\":\"CGkg\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-ttfvaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1477" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1477" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1482" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:40 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Resource not created yet, will check again" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Didn't commit obj as there was no change" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1484" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1485" generation=1 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="1483" generation=2 uid="87195e68-7652-4cec-bc00-afb4145c0621" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"samplekubestoragequeuesalpha", UID:"fda17d6f-b989-4dda-b12e-8dec38593e5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-hjxcns/providers/Microsoft.Storage/storageAccounts/samplekubestoragealpha/queueServices/default/queues/samplequeuealpha"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="samplekubestoragequeuesalpha, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" action="BeginDelete" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" azureName="samplequeuealpha" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1487" generation=1 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"7853eba9-3d10-40ae-9dc4-1fdd13e3403a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1477" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1484" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Resource not created yet, will check again" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Didn't commit obj as there was no change" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplequeuealpha resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "samplequeuealpha": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050/samplequeuealpha, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 87195e68-7652-4cec-bc00-afb4145c0621, UID in object meta: " name="samplequeuealpha" namespace="aso-test-samples-creationanddeletion-test-eventgrid-v1api-e9050" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1484" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1477" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/operationResults/3eee57c7-bebe-415c-bf9a-7d175e6091c8?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Determined CreateOrUpdate action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Resource not created yet, will check again" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Didn't commit obj as there was no change" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Resource successfully created/updated" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1496" generation=1 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionController "msg"="Got ARM status" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection\",\"name\":\"sample-mongo-collection\",\"properties\":{\"resource\":{\"id\":\"sample-mongo-collection\",\"indexes\":[{\"key\":{\"keys\":[\"_id\"]}},{\"key\":{\"keys\":[\"col1\",\"col2\"]}}]}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Owner exists but is not ready. Current condition" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" cannot be found. Progress is blocked until the owner is created." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1498" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] FlexibleServerController "msg"="applying ownership" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1484" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default/operationResults/80bc7671-e340-47d4-9245-2e523202ca89?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default\",\"name\":\"V6Py\",\"properties\":{\"resource\":{\"autoscaleSettings\":{\"maxThroughput\":4000},\"minimumThroughput\":\"1000\",\"throughput\":400}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1505" generation=1 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] FlexibleServerController "msg"="Set owner reference" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Encountered error, re-queuing..." name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1509" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:50Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1195" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="applying ownership" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionController "msg"="updated resource in etcd" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1512" generation=1 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionController "msg"="Done with reconcile" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1503" generation=1 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="adding finalizer" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu\",\"location\":\"westus2\",\"name\":\"asotest-rg-vnwpnu\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1514" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1517" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1515" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Set owner reference" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" ownerGvk="documentdb.azure.com/v1api20210515storage, Kind=MongodbDatabaseCollection" ownerName="sample-mongo-collection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1521" generation=1 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1518" generation=1 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1519" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1528" generation=1 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="adding finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1529" generation=1 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc\",\"location\":\"westus2\",\"name\":\"asotest-rg-rwovwc\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1536" generation=1 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1533" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"9f991d7c-4502-4bb4-8206-d315464b051a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1535" generation=1 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb\",\"location\":\"westus2\",\"name\":\"asotest-rg-ipnebb\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="About to send resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully sent resource to Azure" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1548" generation=1 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1543" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner does not yet exist" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" NamespacedName="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1547" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner does not yet exist" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" NamespacedName="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1550" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="applying ownership" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1554" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"9f991d7c-4502-4bb4-8206-d315464b051a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default/operationResults/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1553" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="applying ownership" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1555" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Set owner reference" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1559" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1554" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"9f991d7c-4502-4bb4-8206-d315464b051a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/eastus/operationsStatus/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default/operationResults/8afdd2de-5105-497c-9213-51272ade4fa1?api-version=2021-05-15\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default?api-version=2021-05-15\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1561" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined CreateOrUpdate action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Resource successfully created/updated" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Got ARM status" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default\",\"name\":\"zLJw\",\"properties\":{\"resource\":{\"minimumThroughput\":\"400\",\"throughput\":500}},\"type\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Set owner reference" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="adding finalizer" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="adding finalizer" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1565" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:51Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1572" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] MongodbDatabaseCollectionThroughputSettingController "msg"="updated resource in etcd" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1575" generation=1 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"9f991d7c-4502-4bb4-8206-d315464b051a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Done with reconcile" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1568" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner does not yet exist" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" NamespacedName="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1544" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/89653263-3aeb-437e-950d-00fe8f56e7b8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1578" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="applying ownership" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Got ARM status" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl\",\"location\":\"East US\",\"name\":\"asotestmbsdcl\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"3\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-02-03T05:26:05.6832021+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestmbsdcl.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1569" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Set owner reference" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Successfully created resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" name="serverconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1582" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="adding finalizer" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1587" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1532" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1590" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1593" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1530" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:52Z] FlexibleServerController "msg"="Extension pre-reconcile check running" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1599" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Extension pre-reconcile check succeeded" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1598" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1599" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1525" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1601" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1599" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1611" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1599" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1611" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1609" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1618" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1599" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/97448a9c-e2b4-4b60-8493-207bc15cbaaf?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1615" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1611" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Got ARM status" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd\",\"location\":\"East US\",\"name\":\"asotestntkbpd\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"1\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-03-23T22:51:11.4965368+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestntkbpd.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1618" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1595" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/93ffd227-3efd-4379-96f2-4b435c11f2fd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Got ARM status" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg\",\"location\":\"East US\",\"name\":\"asotestgpnzhg\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"2\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-02-03T05:05:37.7478474+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestgpnzhg.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Successfully created resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" name="serverconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1611" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1618" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/afcbf970-1181-441f-9729-3c5b3b0408ab?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw\",\"name\":\"asotestmpwlzw\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1611" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/f203e7b4-6386-462f-a17b-b98924a04b93?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:53Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Got ARM status" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp\",\"location\":\"East US\",\"name\":\"asotestxykhmp\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"1\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-03-23T22:51:15.7955334+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestxykhmp.postgres.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"minorVersion\":\"9\",\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"state\":\"Ready\",\"storage\":{\"storageSizeGB\":128},\"version\":\"13\"},\"sku\":{\"name\":\"Standard_D4s_v3\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1634" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1635" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1638" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1636" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1560" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1558" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1635" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/8cd88519-65d0-40e1-b50f-2be43e51224b?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1574" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1638" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/81edd9dc-18fe-4fd0-bf68-d8936773e9a8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1576" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1641" generation=1 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1600" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc\",\"name\":\"asotestrmkcoc\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1570" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1642" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServerController "msg"="Done with reconcile" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1584" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1571" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1591" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1648" generation=1 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" ownerGvk="dbforpostgresql.azure.com/v1api20210601storage, Kind=FlexibleServer" ownerName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1650" generation=1 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1653" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1654" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1657" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1661" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Refreshing Status of resource" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1656" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1658" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1664" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check running" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Extension pre-reconcile check succeeded" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1659" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1662" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Refreshing Status of resource" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1669" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check running" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Extension pre-reconcile check succeeded" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1675" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1675" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/effe2cc4-c0b2-41da-9594-d870c08ff5c4?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1680" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1682" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm\",\"name\":\"asotestklrtxm\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1682" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d77bb4b-35ae-4c3d-90a8-2ebbcbd22bf8?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1680" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur\",\"name\":\"asotestqycmur\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" requeueAfter="1m0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1689" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1688" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] 2023/09/08 21:47:54 http: TLS handshake error from 127.0.0.1:54266: EOF +[controller:test-integration-envtest] 2023/09/08 21:47:54 http: TLS handshake error from 127.0.0.1:54260: EOF +[controller:test-integration-envtest] 2023/09/08 21:47:54 http: TLS handshake error from 127.0.0.1:54276: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1694" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1689" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/4ab34322-8b11-4eda-9d59-fcf69fe15b65?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1680" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/90e6d22f-1e34-4010-a0ec-318924e726af?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1695" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1688" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/d30b1a4b-1b26-41fb-b47f-958ffeae42f2?api-version=2022-01-20-preview\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log?api-version=2022-01-20-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids\",\"name\":\"asotestfbeids\",\"properties\":{\"charset\":\"UTF8\",\"collation\":\"en_US.utf8\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1696" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1697" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv\",\"name\":\"asotestdepkwv\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1695" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/7d49a131-8233-4186-9b6d-4290455cd120?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1694" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1700" generation=1 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1697" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/2da12d85-c802-45b2-97d8-c847364dbfdd?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi\",\"name\":\"asotestdbrmhi\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1696" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/feea6e91-f94f-492a-b828-124949394d3d?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log\",\"name\":\"pgaudit.log\",\"properties\":{\"allowedValues\":\"none,read,write,function,role,ddl,misc,all\",\"dataType\":\"Set\",\"defaultValue\":\"none\",\"description\":\"Specifies which classes of statements will be logged by session audit logging.\",\"documentationLink\":\"https://github.com/pgaudit/pgaudit/blob/master/README.md\",\"isConfigPendingRestart\":false,\"isDynamicConfig\":true,\"isReadOnly\":false,\"source\":\"user-override\",\"value\":\"READ\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1694" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/azureAsyncOperation/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/eastus/operationResults/c875d8e7-9ae0-4927-a226-0c00b7c49838?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1703" generation=1 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo\",\"name\":\"asotestpalneo\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforPostgreSQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1706" generation=1 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1475" generation=2 uid="0299fb17-db72-46d9-bf1d-2af5b58b66e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRRVlRGU0ctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="asotest-rg-qvtfsg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1713" generation=1 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1715" generation=1 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1716" generation=1 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1714" generation=1 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1718" generation=1 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1719" generation=1 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/asotest-rg-qvtfsg resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-qvtfsg": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/asotest-rg-qvtfsg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0299fb17-db72-46d9-bf1d-2af5b58b66e7, UID in object meta: " name="asotest-rg-qvtfsg" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/asotest-rg-qvtfsg aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-trigger aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-function aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-role-assignment aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-stored-procedure aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-mongo-throughput aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-throughput]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1727" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="1732" generation=2 uid="f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1737" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1738" generation=2 uid="116874ea-680e-4b21-8d90-947ed943db72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-qvtfsg", UID:"0299fb17-db72-46d9-bf1d-2af5b58b66e7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-qvtfsg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sqldb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1737" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1742" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1692" generation=2 uid="4fba9f35-c574-4e12-8452-3ae00532c2d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUVEZWQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f15e1dfd-b5d4-4621-8f1c-f9c515dc9e58, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1499" generation=2 uid="71f4733e-74a6-4e24-a22f-5c96ff8b1aa5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:35 +0000 UTC" deletionTimestamp="2023-09-08 21:47:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRNS0NTR0stV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotest-rg-ttfvaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="asotest-rg-mkcsgk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1737" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1746" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-sqldb-account-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sqldb-account-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 116874ea-680e-4b21-8d90-947ed943db72, UID in object meta: " name="sample-sqldb-account-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/asotest-rg-mkcsgk resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-mkcsgk": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/asotest-rg-mkcsgk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 71f4733e-74a6-4e24-a22f-5c96ff8b1aa5, UID in object meta: " name="asotest-rg-mkcsgk" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1752" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1737" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ttfvaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4fba9f35-c574-4e12-8452-3ae00532c2d1, UID in object meta: " name="asotest-rg-ttfvaa" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/asotest-rg-mkcsgk aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-container aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-throughput aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-trigger aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-function aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-role-assignment aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-stored-procedure aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-mongo-throughput]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1752" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1737" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestdzsdcy aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestrmkcoc aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmpwlzw]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1737" generation=2 uid="1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJUE5FQkItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1534" generation=2 uid="d433b584-bc14-4c3e-946b-15833e45bf2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUSVpVUlctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotest-rg-ipnebb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1590" generation=1 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1752" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="1763" generation=2 uid="eda75ec7-32f8-45e7-8102-8a80f129f0ca" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:40 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:42 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="asotest-rg-tizurw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1761" generation=2 uid="cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlRoleAssignments/2bffb017-2385-5855-9fac-9984a599e583"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Determined Delete action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Starting delete of resource" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="2bffb017-2385-5855-9fac-9984a599e583" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotest-rg-ttfvaa does not exist (resourcegroups.resources.azure.com "asotest-rg-ttfvaa" not found)" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1752" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1766" generation=2 uid="53292ce2-3999-4cd2-b3cc-c77171fb314c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-mkcsgk", UID:"71f4733e-74a6-4e24-a22f-5c96ff8b1aa5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:44 +0000 UTC\"]" owner="asotest-rg-mkcsgk, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1767" generation=2 uid="36122d69-2d37-4227-a204-88473e5ccae5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account-beta", UID:"116874ea-680e-4b21-8d90-947ed943db72", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:45 +0000 UTC\"]" owner="sample-sqldb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/asotest-rg-tizurw aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongodb-account-beta aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/asotest-rg-tizurw resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-tizurw": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/asotest-rg-tizurw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d433b584-bc14-4c3e-946b-15833e45bf2e, UID in object meta: " name="asotest-rg-tizurw" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Determined Delete action" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Starting delete of resource" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sqldb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eda75ec7-32f8-45e7-8102-8a80f129f0ca, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-role-assignment resource status: Operation cannot be fulfilled on sqlroleassignments.documentdb.azure.com "sample-role-assignment": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqlroleassignments/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-role-assignment, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: cd7dbd53-c820-4e3c-a12f-a2f2ea0b01ec, UID in object meta: " name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-db-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestpalneo aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestmruzby aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestklrtxm]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ipnebb": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae, UID in object meta: " name="asotest-rg-ipnebb" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1769" generation=2 uid="84ddee0a-f92e-4c36-b0d1-6b818a74a49a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ttfvaa", UID:"4fba9f35-c574-4e12-8452-3ae00532c2d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:52 +0000 UTC\"]" owner="asotest-rg-ttfvaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1752" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Determined Delete action" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmbsdcl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1752" generation=2 uid="7642002e-96a1-49b5-97c4-f447a44064c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRSV09WV0MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta resource status: Operation cannot be fulfilled on sqldatabases.documentdb.azure.com "sample-sql-db-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabases/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-db-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 36122d69-2d37-4227-a204-88473e5ccae5, UID in object meta: " name="sample-sql-db-beta" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1781" generation=2 uid="b37690f5-58a2-41ac-bcba-f585a496e27b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tizurw", UID:"d433b584-bc14-4c3e-946b-15833e45bf2e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="asotest-rg-tizurw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotest-rg-rwovwc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-sqldb-account": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sqldb-account, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 53292ce2-3999-4cd2-b3cc-c77171fb314c, UID in object meta: " name="sample-sqldb-account" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestmbsdcl": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmbsdcl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 84ddee0a-f92e-4c36-b0d1-6b818a74a49a, UID in object meta: " name="asotestmbsdcl" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongodb-account-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1642" generation=1 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1787" generation=2 uid="4af26ac3-3e21-4d30-9ca3-fbe9dd77050d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-rwovwc": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7642002e-96a1-49b5-97c4-f447a44064c5, UID in object meta: " name="asotest-rg-rwovwc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Reconcile invoked" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1789" generation=2 uid="40d17849-863c-4227-a7e3-18ade2aadc5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Determined Delete action" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Starting delete of resource" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-db" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotest-rg-ipnebb does not exist (resourcegroups.resources.azure.com "asotest-rg-ipnebb" not found)" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1791" generation=2 uid="23789fc0-8802-4e45-a640-2899a6f21579" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseContainerController "msg"="Determined Delete action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseContainerController "msg"="Starting delete of resource" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestntkbpd aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestipsheq aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestqycmur aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestdepkwv]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseContainerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1792" generation=2 uid="22ad2127-7a2a-40fa-9c7a-883eb8368117" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/databases/asotestrmkcoc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongodb-account-beta resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-mongodb-account-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongodb-account-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b37690f5-58a2-41ac-bcba-f585a496e27b, UID in object meta: " name="sample-mongodb-account-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestrmkcoc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1796" generation=2 uid="d2922235-8d5a-4db4-96ae-ecf4928ab993" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestmbsdcl", UID:"84ddee0a-f92e-4c36-b0d1-6b818a74a49a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ttfvaa/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestmbsdcl/firewallRules/asotestmpwlzw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotestmbsdcl, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Reconcile invoked" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlRoleAssignment,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1795" generation=2 uid="b6e25d4d-008a-4d1f-b797-569585fc2b75" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-sqldb-account", UID:"53292ce2-3999-4cd2-b3cc-c77171fb314c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlRoleAssignments/b6377656-c9aa-5bfb-b845-160126af8fa0"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:46 +0000 UTC\"]" owner="sample-sqldb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" azureName="asotestmpwlzw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1756" generation=2 uid="e38ed26d-e8ac-401e-b8bd-eeecd96ccd35" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:50 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWTldQTlUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:55 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] SqlDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db resource status: Operation cannot be fulfilled on sqldatabases.documentdb.azure.com "sample-sql-db": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabases/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-db, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 40d17849-863c-4227-a7e3-18ade2aadc5d, UID in object meta: " name="sample-sql-db" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1799" generation=2 uid="702d6c33-ab3d-451c-8f45-20f2db429cff" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db-beta", UID:"36122d69-2d37-4227-a204-88473e5ccae5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db-beta, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Determined Delete action" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Starting delete of resource" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="b6377656-c9aa-5bfb-b845-160126af8fa0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1786" generation=2 uid="007fd76b-8abf-40da-81b9-4a5b6bce4c5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ipnebb", UID:"1f5e4043-fdd4-47d7-a9ea-606eefeaf3ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotest-rg-ipnebb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Determined Delete action" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestxykhmp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] SqlDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestdzsdcy resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestdzsdcy": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestdzsdcy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4af26ac3-3e21-4d30-9ca3-fbe9dd77050d, UID in object meta: " name="asotestdzsdcy" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotest-rg-vnwpnu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1804" generation=2 uid="3f8f448c-a7e7-4ecd-8f2a-817529b7004f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account-beta", UID:"b37690f5-58a2-41ac-bcba-f585a496e27b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-mongodb-account-beta, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestrmkcoc resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestrmkcoc": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestrmkcoc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 22ad2127-7a2a-40fa-9c7a-883eb8368117, UID in object meta: " name="asotestrmkcoc" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] SqlDatabaseContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container resource status: Operation cannot be fulfilled on sqldatabasecontainers.documentdb.azure.com "sample-sql-container": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainers/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-container, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 23789fc0-8802-4e45-a640-2899a6f21579, UID in object meta: " name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1634" generation=1 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] MongodbDatabaseController "msg"="Determined Delete action" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] MongodbDatabaseController "msg"="Starting delete of resource" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] MongodbDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-db-mongodb-beta" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] MongodbDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmpwlzw resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestmpwlzw": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0/asotestmpwlzw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d2922235-8d5a-4db4-96ae-ecf4928ab993, UID in object meta: " name="asotestmpwlzw" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-1a8c0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] SqlRoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-role-assignment resource status: Operation cannot be fulfilled on sqlroleassignments.documentdb.azure.com "sample-role-assignment": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqlroleassignments/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-role-assignment, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b6e25d4d-008a-4d1f-b797-569585fc2b75, UID in object meta: " name="sample-role-assignment" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotest-rg-rwovwc does not exist (resourcegroups.resources.azure.com "asotest-rg-rwovwc" not found)" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestxykhmp": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestxykhmp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 007fd76b-8abf-40da-81b9-4a5b6bce4c5d, UID in object meta: " name="asotestxykhmp" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] SqlDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-throughput resource status: Operation cannot be fulfilled on sqldatabasethroughputsettings.documentdb.azure.com "sample-sql-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasethroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 702d6c33-ab3d-451c-8f45-20f2db429cff, UID in object meta: " name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/server-admin-pw aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestfbeids aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestdbrmhi aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestwrynaf]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vnwpnu": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e38ed26d-e8ac-401e-b8bd-eeecd96ccd35, UID in object meta: " name="asotest-rg-vnwpnu" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:55Z] MongodbDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta resource status: Operation cannot be fulfilled on mongodbdatabases.documentdb.azure.com "sample-db-mongodb-beta": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabases/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-db-mongodb-beta, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3f8f448c-a7e7-4ecd-8f2a-817529b7004f, UID in object meta: " name="sample-db-mongodb-beta" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1636" generation=1 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerController "msg"="Reconcile invoked" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainer,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1820" generation=2 uid="e57384db-4b76-4564-b772-3fc198de3225" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1815" generation=2 uid="6b0334f3-3ca0-4b42-80d7-963eee13f4f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-rwovwc", UID:"7642002e-96a1-49b5-97c4-f447a44064c5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotest-rg-rwovwc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Refreshing Status of resource" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Determined Delete action" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestntkbpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1824" generation=2 uid="7e722ebd-2036-4f5b-b4fd-b563d42048b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: []... +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: Failed, Severity: Warning, RetryClassification: RetrySlow, Cause: aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotest-rg-vnwpnu does not exist (resourcegroups.resources.azure.com "asotest-rg-vnwpnu" not found)" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1823" generation=2 uid="db2d2893-516e-49d4-aca9-9ad4c1dbae6f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabase", Name:"sample-sql-db", UID:"40d17849-863c-4227-a7e3-18ade2aadc5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:48 +0000 UTC\"]" owner="sample-sql-db, Group/Kind: documentdb.azure.com/SqlDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1821" generation=2 uid="1f6d12b9-d70a-42f8-97d7-4a002fd05208" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerController "msg"="Determined Delete action" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerController "msg"="Starting delete of resource" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-container" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1822" generation=2 uid="e634a6ad-5fc6-49ee-83ee-5d419c716c3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/firewallRules/asotestpalneo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestpalneo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Determined Delete action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Starting delete of resource" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1830" generation=2 uid="94c9ae69-e963-444e-a55b-7b62a7dbd50b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1828" generation=2 uid="7853eba9-3d10-40ae-9dc4-1fdd13e3403a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb-beta", UID:"3f8f448c-a7e7-4ecd-8f2a-817529b7004f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:49 +0000 UTC\"]" owner="sample-db-mongodb-beta, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined Delete action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Starting delete of resource" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Delete succeeded, removing finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1833" generation=2 uid="d0a36f27-aaee-4c3b-963c-f5c533a53c72" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionController "msg"="Determined Delete action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionController "msg"="Starting delete of resource" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestpalneo resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestpalneo": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestpalneo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e634a6ad-5fc6-49ee-83ee-5d419c716c3b, UID in object meta: " name="asotestpalneo" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1829" generation=2 uid="84bd720a-5205-40d8-9b9c-dfe76c694615" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vnwpnu", UID:"e38ed26d-e8ac-401e-b8bd-eeecd96ccd35", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner="asotest-rg-vnwpnu, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-throughput resource status: Operation cannot be fulfilled on sqldatabasethroughputsettings.documentdb.azure.com "sample-sql-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasethroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: db2d2893-516e-49d4-aca9-9ad4c1dbae6f, UID in object meta: " name="sample-sql-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] MongodbDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasethroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasethroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7e722ebd-2036-4f5b-b4fd-b563d42048b2, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1840" generation=2 uid="5411d46a-1add-4e93-bd09-8a252814d06a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestntkbpd resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestntkbpd": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestntkbpd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6b0334f3-3ca0-4b42-80d7-963eee13f4f2, UID in object meta: " name="asotestntkbpd" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Determined Delete action" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestgpnzhg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined Delete action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Starting delete of resource" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Delete succeeded, removing finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-container resource status: Operation cannot be fulfilled on sqldatabasecontainers.documentdb.azure.com "sample-sql-container": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainers/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-container, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e57384db-4b76-4564-b772-3fc198de3225, UID in object meta: " name="sample-sql-container" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1844" generation=2 uid="828c51e2-1022-489f-a320-a8a9ab1579d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-trigger resource status: Operation cannot be fulfilled on sqldatabasecontainertriggers.documentdb.azure.com "sample-sql-trigger": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainertriggers/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-trigger, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1f6d12b9-d70a-42f8-97d7-4a002fd05208, UID in object meta: " name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1847" generation=1 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-function resource status: Operation cannot be fulfilled on sqldatabasecontaineruserdefinedfunctions.documentdb.azure.com "sample-sql-function": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontaineruserdefinedfunctions/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-function, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 94c9ae69-e963-444e-a55b-7b62a7dbd50b, UID in object meta: " name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1849" generation=2 uid="910fc4c1-465e-4b21-986c-b028e0b4a5de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestxykhmp", UID:"007fd76b-8abf-40da-81b9-4a5b6bce4c5d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:52 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ipnebb/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestxykhmp/databases/asotestklrtxm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestxykhmp, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1846" generation=2 uid="7b5b22e1-991e-41e8-b894-f2f6e4516fd9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"23789fc0-8802-4e45-a640-2899a6f21579", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-qvtfsg/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account-beta/sqlDatabases/sample-sql-db-beta/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1853" generation=2 uid="7b5d4bed-f639-4372-acea-830b00ec3ad3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/databases/asotestqycmur"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestmruzby resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestmruzby": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestmruzby, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d0a36f27-aaee-4c3b-963c-f5c533a53c72, UID in object meta: " name="asotestmruzby" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection resource status: Operation cannot be fulfilled on mongodbdatabasecollections.documentdb.azure.com "sample-mongo-collection": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollections/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-collection, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7853eba9-3d10-40ae-9dc4-1fdd13e3403a, UID in object meta: " name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestqycmur" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" azureName="asotestklrtxm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Reconcile invoked" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerTrigger,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1854" generation=2 uid="9e1b48fc-c192-4990-9e99-500cdf176a71" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/triggers/sample-sql-trigger"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Determined Delete action" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Starting delete of resource" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-trigger" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Delete succeeded, removing finalizer" name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-stored-procedure resource status: Operation cannot be fulfilled on sqldatabasecontainerstoredprocedures.documentdb.azure.com "sample-sql-stored-procedure": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerstoredprocedures/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-sql-stored-procedure, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5411d46a-1add-4e93-bd09-8a252814d06a, UID in object meta: " name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1608" generation=2 uid="99e62186-9eed-48eb-93aa-e72137a3badc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZVFNGV1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1859" generation=2 uid="48f21a86-6f6d-42d6-a2ce-63543783eeeb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"7853eba9-3d10-40ae-9dc4-1fdd13e3403a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:44 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tizurw/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account-beta/mongodbDatabases/sample-db-mongodb-beta/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Reconcile invoked" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerUserDefinedFunction,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1863" generation=2 uid="41a3603b-f39e-4b54-8d22-1bd66250d04f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/userDefinedFunctions/sample-sql-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1864" generation=2 uid="66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestntkbpd", UID:"6b0334f3-3ca0-4b42-80d7-963eee13f4f2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-rwovwc/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestntkbpd/firewallRules/asotestdepkwv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestntkbpd, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestipsheq resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestipsheq": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestipsheq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 828c51e2-1022-489f-a320-a8a9ab1579d7, UID in object meta: " name="asotestipsheq" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="asotest-rg-ytsfwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Determined Delete action" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Starting delete of resource" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg resource status: Operation cannot be fulfilled on flexibleservers.dbforpostgresql.azure.com "asotestgpnzhg": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestgpnzhg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 84bd720a-5205-40d8-9b9c-dfe76c694615, UID in object meta: " name="asotestgpnzhg" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Delete succeeded, removing finalizer" name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestqycmur resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestqycmur": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestqycmur, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7b5d4bed-f639-4372-acea-830b00ec3ad3, UID in object meta: " name="asotestqycmur" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" azureName="asotestdepkwv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1861" generation=1 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-mongo-throughput resource status: Operation cannot be fulfilled on sqldatabasecontainerthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerthroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7b5b22e1-991e-41e8-b894-f2f6e4516fd9, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1b-c256c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Reconcile invoked" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerStoredProcedure,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1869" generation=2 uid="0cb0787a-59f4-4564-a86a-8eba6f78c9ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/storedProcedures/sample-sql-stored-procedure"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo\",\"location\":\"westus2\",\"name\":\"asotest-rg-kymszo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerTriggerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-trigger resource status: Operation cannot be fulfilled on sqldatabasecontainertriggers.documentdb.azure.com "sample-sql-trigger": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainertriggers/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-trigger, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9e1b48fc-c192-4990-9e99-500cdf176a71, UID in object meta: " name="sample-sql-trigger" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasecollectionthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollectionthroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 48f21a86-6f6d-42d6-a2ce-63543783eeeb, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1beta--1f8bb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Determined Delete action" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Starting delete of resource" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="sample-sql-stored-procedure" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Delete succeeded, removing finalizer" name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/asotest-rg-ytsfwv aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongodb-account aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection]... +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/asotest-rg-ytsfwv resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ytsfwv": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/asotest-rg-ytsfwv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 99e62186-9eed-48eb-93aa-e72137a3badc, UID in object meta: " name="asotest-rg-ytsfwv" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerUserDefinedFunctionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-function resource status: Operation cannot be fulfilled on sqldatabasecontaineruserdefinedfunctions.documentdb.azure.com "sample-sql-function": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontaineruserdefinedfunctions/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-function, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 41a3603b-f39e-4b54-8d22-1bd66250d04f, UID in object meta: " name="sample-sql-function" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1874" generation=2 uid="a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/databases/asotestfbeids"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" kind="&TypeMeta{Kind:SqlDatabaseContainerThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1873" generation=2 uid="c9493028-641c-43de-9665-57f9db1fd07e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"SqlDatabaseContainer", Name:"sample-sql-container", UID:"e57384db-4b76-4564-b772-3fc198de3225", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:43 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-mkcsgk/providers/Microsoft.DocumentDB/databaseAccounts/sample-sqldb-account/sqlDatabases/sample-sql-db/containers/sample-sql-container/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-sql-container, Group/Kind: documentdb.azure.com/SqlDatabaseContainer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestfbeids" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestklrtxm resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestklrtxm": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236/asotestklrtxm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 910fc4c1-465e-4b21-986c-b028e0b4a5de, UID in object meta: " name="asotestklrtxm" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-0b236" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1883" generation=1 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestdepkwv resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestdepkwv": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44/asotestdepkwv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 66e6f7eb-e2d0-45e4-b5a5-2cd3df57766a, UID in object meta: " name="asotestdepkwv" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-fdc44" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerStoredProcedureController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-stored-procedure resource status: Operation cannot be fulfilled on sqldatabasecontainerstoredprocedures.documentdb.azure.com "sample-sql-stored-procedure": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerstoredprocedures/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-sql-stored-procedure, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0cb0787a-59f4-4564-a86a-8eba6f78c9ef, UID in object meta: " name="sample-sql-stored-procedure" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1881" generation=2 uid="20cf620e-69f5-4f0d-84d4-a0643e4deba0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/firewallRules/asotestdbrmhi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="asotestdbrmhi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1889" generation=1 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:56Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestfbeids resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbforpostgresql.azure.com "asotestfbeids": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestfbeids, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a23cdb72-37d7-4b46-92d9-a3fbf0ba3e9a, UID in object meta: " name="asotestfbeids" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseAccountController "msg"="Reconcile invoked" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:DatabaseAccount,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1886" generation=2 uid="1fa0b2ff-c3ed-4d61-a185-c3283d605a79" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ytsfwv", UID:"99e62186-9eed-48eb-93aa-e72137a3badc", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:47 +0000 UTC\"]" owner="asotest-rg-ytsfwv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseAccountController "msg"="Determined Delete action" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseAccountController "msg"="Starting delete of resource" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongodb-account" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseAccountController "msg"="Delete succeeded, removing finalizer" name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbforpostgresql.azure.com/v1api20210601storage,}" resourceVersion="1892" generation=2 uid="754d4afb-4585-4f74-984f-5bf9c379f195" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbforpostgresql.azure.com/v1api20210601storage", Kind:"FlexibleServer", Name:"asotestgpnzhg", UID:"84bd720a-5205-40d8-9b9c-dfe76c694615", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:51 +0000 UTC" deletionTimestamp="2023-09-08 21:47:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vnwpnu/providers/Microsoft.DBforPostgreSQL/flexibleServers/asotestgpnzhg/configurations/pgaudit.log"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:54 +0000 UTC\"]" owner="asotestgpnzhg, Group/Kind: dbforpostgresql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1897" generation=1 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" azureName="pgaudit.log" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestdbrmhi resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbforpostgresql.azure.com "asotestdbrmhi": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestdbrmhi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 20cf620e-69f5-4f0d-84d4-a0643e4deba0, UID in object meta: " name="asotestdbrmhi" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1899" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1902" generation=1 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Owner does not yet exist" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1901" generation=1 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1907" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="applying ownership" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1909" generation=1 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] DatabaseAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongodb-account resource status: Operation cannot be fulfilled on databaseaccounts.documentdb.azure.com "sample-mongodb-account": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/databaseaccounts/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongodb-account, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1fa0b2ff-c3ed-4d61-a185-c3283d605a79, UID in object meta: " name="sample-mongodb-account" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec\",\"location\":\"westus2\",\"name\":\"asotest-rg-ihkvec\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestwrynaf resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbforpostgresql.azure.com "asotestwrynaf": StorageError: invalid object, Code: 4, Key: /registry/dbforpostgresql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac/asotestwrynaf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 754d4afb-4585-4f74-984f-5bf9c379f195, UID in object meta: " name="asotestwrynaf" namespace="aso-test-samples-creationanddeletion-test-dbforpostgresql-d67ac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1911" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1912" generation=1 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1906" generation=1 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm\",\"location\":\"westus2\",\"name\":\"asotest-rg-kzergm\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Set owner reference" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1921" generation=1 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1916" generation=1 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1914" generation=1 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseController "msg"="Reconcile invoked" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabase,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1924" generation=2 uid="8f63728b-ea60-4337-a42d-23f08051e3b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"DatabaseAccount", Name:"sample-mongodb-account", UID:"1fa0b2ff-c3ed-4d61-a185-c3283d605a79", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-mongodb-account, Group/Kind: documentdb.azure.com/DatabaseAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1919" generation=1 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1922" generation=1 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="adding finalizer" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv\",\"location\":\"westus2\",\"name\":\"asotest-rg-frjrtv\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseController "msg"="Determined Delete action" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseController "msg"="Starting delete of resource" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-db-mongodb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseController "msg"="Delete succeeded, removing finalizer" name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh\",\"location\":\"westus2\",\"name\":\"asotest-rg-bzazxh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo\",\"location\":\"westus2\",\"name\":\"asotest-rg-utxnvo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1935" generation=1 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] MongodbDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb resource status: Operation cannot be fulfilled on mongodbdatabases.documentdb.azure.com "sample-db-mongodb": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabases/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-db-mongodb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8f63728b-ea60-4337-a42d-23f08051e3b6, UID in object meta: " name="sample-db-mongodb" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1930" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1938" generation=1 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1941" generation=1 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1937" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Owner does not yet exist" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" NamespacedName="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="1939" generation=1 uid="19ee3d8f-cca3-432f-85c6-b2746f84b253" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] UserAssignedIdentityController "msg"="applying ownership" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1942" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="Owner does not yet exist" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" NamespacedName="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] UserAssignedIdentityController "msg"="Set owner reference" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FactoryController "msg"="Reconcile invoked" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="1945" generation=1 uid="4296cbf1-219d-4adb-9ccc-1f30f2870e1e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FactoryController "msg"="applying ownership" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1946" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ServerController "msg"="applying ownership" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FactoryController "msg"="Set owner reference" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1950" generation=1 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ServerController "msg"="Set owner reference" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1947" generation=2 uid="94f64dc1-e0ca-4724-9839-545a7de48fc5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] UserAssignedIdentityController "msg"="adding finalizer" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] BackupVaultController "msg"="Reconcile invoked" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1952" generation=1 uid="e5d1173c-25a4-42ea-ad18-061ea996b98f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] BackupVaultController "msg"="applying ownership" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseCollectionController "msg"="Reconcile invoked" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollection,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1956" generation=2 uid="9f991d7c-4502-4bb4-8206-d315464b051a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabase", Name:"sample-db-mongodb", UID:"8f63728b-ea60-4337-a42d-23f08051e3b6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:50 +0000 UTC\"]" owner="sample-db-mongodb, Group/Kind: documentdb.azure.com/MongodbDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FactoryController "msg"="adding finalizer" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseCollectionController "msg"="Determined Delete action" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseCollectionController "msg"="Starting delete of resource" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseCollectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="sample-mongo-collection" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] MongodbDatabaseCollectionController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ServerController "msg"="adding finalizer" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1959" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] BackupVaultController "msg"="Set owner reference" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] BackupVaultsBackupPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] BackupVaultsBackupPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] BackupVaultsBackupPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1966" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] ServerController "msg"="applying ownership" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:57Z] MongodbDatabaseThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasethroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasethroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 94f64dc1-e0ca-4724-9839-545a7de48fc5, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="1960" generation=1 uid="19ee3d8f-cca3-432f-85c6-b2746f84b253" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:57Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1965" generation=1 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="adding finalizer" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc\",\"location\":\"westus2\",\"name\":\"asotest-rg-ilxitc\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1969" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Set owner reference" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection resource status: Operation cannot be fulfilled on mongodbdatabasecollections.documentdb.azure.com "sample-mongo-collection": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollections/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-collection, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9f991d7c-4502-4bb4-8206-d315464b051a, UID in object meta: " name="sample-mongo-collection" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="updated resource in etcd" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="1962" generation=1 uid="4296cbf1-219d-4adb-9ccc-1f30f2870e1e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-frjrtv", UID:"bf9e64f0-b577-4650-bcdc-d4285bbbecb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun"} conditions="[]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1972" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="updated resource in etcd" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1968" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="Determined CreateOrUpdate action" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="About to send resource to Azure" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="Successfully sent resource to Azure" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="Resource successfully created/updated" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="Got ARM status" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" status="{\"eTag\":\"\\\"0600f72f-0000-0200-0000-64407a430000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun\",\"identity\":{\"principalId\":\"77fcaf68-04b1-478b-bc33-13e487400948\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"eastus2\",\"name\":\"asotestfehhun\",\"properties\":{\"createTime\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"version\":\"2018-06-01\"},\"type\":\"Microsoft.DataFactory/factories\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1976" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Encountered error, re-queuing..." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="updated resource in etcd" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1974" generation=1 uid="e5d1173c-25a4-42ea-ad18-061ea996b98f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"9c0194b6-e510-48cd-936d-5def17eec0f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="About to send resource to Azure" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Successfully sent resource to Azure" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="adding finalizer" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1976" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="1979" generation=1 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Determined CreateOrUpdate action" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Reconcile invoked" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" kind="&TypeMeta{Kind:MongodbDatabaseCollectionThroughputSetting,APIVersion:documentdb.azure.com/v1api20210515storage,}" resourceVersion="1980" generation=2 uid="3378b93f-ba5c-46d5-96f2-24015558c1f8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"documentdb.azure.com/v1api20210515storage", Kind:"MongodbDatabaseCollection", Name:"sample-mongo-collection", UID:"9f991d7c-4502-4bb4-8206-d315464b051a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:45 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ytsfwv/providers/Microsoft.DocumentDB/databaseAccounts/sample-mongodb-account/mongodbDatabases/sample-db-mongodb/collections/sample-mongo-collection/throughputSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:51 +0000 UTC\"]" owner="sample-mongo-collection, Group/Kind: documentdb.azure.com/MongodbDatabaseCollection" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="About to send resource to Azure" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Successfully sent resource to Azure" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Determined Delete action" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Starting delete of resource" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Delete succeeded, removing finalizer" name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1955" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/45cdf571-e223-4cd6-9f0f-cc0fa7eb9a91?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="updated resource in etcd" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="1989" generation=1 uid="4296cbf1-219d-4adb-9ccc-1f30f2870e1e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-frjrtv", UID:"bf9e64f0-b577-4650-bcdc-d4285bbbecb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FactoryController "msg"="Done with reconcile" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="updated resource in etcd" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1987" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Done with reconcile" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="updated resource in etcd" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1983" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="1986" generation=1 uid="19ee3d8f-cca3-432f-85c6-b2746f84b253" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Got ARM status" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx\",\"location\":\"East US\",\"name\":\"asotestlnsbgx\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"3\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2022-10-19T18:24:39.1811224+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestlnsbgx.mysql.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"standbyAvailabilityZone\":\"\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"replicaCapacity\":10,\"replicationRole\":\"None\",\"state\":\"Ready\",\"storage\":{\"autoGrow\":\"Enabled\",\"iops\":684,\"storageSizeGB\":128,\"storageSku\":\"Premium_LRS\"},\"version\":\"8.0.21\"},\"sku\":{\"name\":\"Standard_D4ds_v4\",\"tier\":\"GeneralPurpose\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1976" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Encountered error, re-queuing..." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] MongodbDatabaseCollectionThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput resource status: Operation cannot be fulfilled on mongodbdatabasecollectionthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/mongodbdatabasecollectionthroughputsettings/aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3378b93f-ba5c-46d5-96f2-24015558c1f8, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-mongodb-v1api-c-4675d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1987" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1976" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="1986" generation=1 uid="19ee3d8f-cca3-432f-85c6-b2746f84b253" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] "msg"="Starting envtest" +[controller:test-integration-envtest] 2023/09/08 21:47:58 Creating shared envtest environment: SubscriptionID:8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/TenantID:72f988bf-86f1-41af-91ab-2d7cd011db47/ClientID:954d4203-089b-43a8-b725-0e8fd05d5ced/PodNamespace:/OperatorMode:watchers-and-webhooks/TargetNamespaces:/SyncPeriod:/ResourceManagerEndpoint:https://management.azure.com/ResourceManagerAudience:https://management.core.windows.net//AzureAuthorityHost:https://login.microsoftonline.com//UseWorkloadIdentityAuth:false/Replaying:false +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="updated resource in etcd" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1994" generation=1 uid="e5d1173c-25a4-42ea-ad18-061ea996b98f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"9c0194b6-e510-48cd-936d-5def17eec0f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/operationStatus/NWU5ODNkOGQtNzg5MC00MjhiLWIxZjMtNjVmZGEwMzQzZjdiOzdiY2E2NThhLWFiMmItNDA2Ny05MmFmLTQwY2JmM2VhNWEzZg==?api-version=2023-01-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo?api-version=2023-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Done with reconcile" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Resource not created yet, will check again" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Didn't commit obj as there was no change" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Done with reconcile" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" cannot be found. Progress is blocked until the owner is created." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Reconcile invoked" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1994" generation=1 uid="e5d1173c-25a4-42ea-ad18-061ea996b98f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"9c0194b6-e510-48cd-936d-5def17eec0f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/operationStatus/NWU5ODNkOGQtNzg5MC00MjhiLWIxZjMtNjVmZGEwMzQzZjdiOzdiY2E2NThhLWFiMmItNDA2Ny05MmFmLTQwY2JmM2VhNWEzZg==?api-version=2023-01-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo?api-version=2023-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Got ARM status" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\",\"location\":\"eastus\",\"name\":\"adminidentity\",\"properties\":{\"clientId\":\"c1b02d3e-fa64-4377-b8cf-20f20777e0aa\",\"principalId\":\"82c92628-80be-4955-b16e-5b472340f13c\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Determined CreateOrUpdate action" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Resource successfully created/updated" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1926" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="About to send resource to Azure" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1987" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/ccc08d86-4603-465a-8c2e-7cb22d3f7cbb?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Successfully sent resource to Azure" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Got ARM status" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo\",\"identity\":{\"principalId\":\"391626e0-d6b5-4e1e-967b-70d48318c159\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"eastus\",\"name\":\"asotestybbdoo\",\"properties\":{\"isVaultProtectedByResourceGuard\":false,\"provisioningState\":\"Succeeded\",\"securitySettings\":{\"softDeleteSettings\":{\"retentionDurationInDays\":14,\"state\":\"On\"}},\"storageSettings\":[{\"datastoreType\":\"VaultStore\",\"type\":\"LocallyRedundant\"}]},\"type\":\"Microsoft.DataProtection/backupVaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1997" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Done with reconcile" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Successfully created resource" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" name="admin-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Resource successfully created/updated" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Got ARM status" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv\",\"location\":\"eastus\",\"name\":\"asotestehjndv\",\"properties\":{\"administratorLogin\":\"hellouser\",\"earliestRestoreDate\":\"2022-10-19T18:42:22.797+00:00\",\"fullyQualifiedDomainName\":\"asotestehjndv.mariadb.database.azure.com\",\"masterServerId\":\"\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"publicNetworkAccess\":\"Enabled\",\"replicaCapacity\":5,\"replicationRole\":\"None\",\"sslEnforcement\":\"Enabled\",\"storageProfile\":{\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\",\"storageMB\":5120},\"userVisibleState\":\"Ready\",\"version\":\"10.2\"},\"sku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5_2\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforMariaDB/servers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Getting Kubernetes resources for export" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" ResourcesToWrite=0 +[controller:test-integration-envtest] 2023/09/08 21:47:58 Starting envtest +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestlnsbgx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2000" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1949" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="updated resource in etcd" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="2009" generation=1 uid="e5d1173c-25a4-42ea-ad18-061ea996b98f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"9c0194b6-e510-48cd-936d-5def17eec0f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultController "msg"="Done with reconcile" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1976" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Encountered error, re-queuing..." name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="updated resource in etcd" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2010" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Done with reconcile" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Set owner reference" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1918" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1958" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2015" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2017" generation=1 uid="19ee3d8f-cca3-432f-85c6-b2746f84b253" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] UserAssignedIdentityController "msg"="Done with reconcile" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="1976" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="applying ownership" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="updated resource in etcd" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2016" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Done with reconcile" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Set owner reference" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestehjndv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestlnsbgx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="adding finalizer" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2020" generation=1 uid="7669530c-6742-4cd6-8fae-bb122fd6a7ce" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2016" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Set owner reference" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" ownerGvk="dataprotection.azure.com/v1api20230101storage, Kind=BackupVault" ownerName="asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Resource not created yet, will check again" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Didn't commit obj as there was no change" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Done with reconcile" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2019" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2025" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2026" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2016" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/5d04b245-bf28-4d09-9e90-27d2aa406559?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="adding finalizer" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2024" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="adding finalizer" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2023" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Resource successfully created/updated" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Got ARM status" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm\",\"location\":\"eastus\",\"name\":\"asotestrdmhdm\",\"properties\":{\"administratorLogin\":\"hellouser\",\"earliestRestoreDate\":\"2023-03-23T23:07:52.9+00:00\",\"fullyQualifiedDomainName\":\"asotestrdmhdm.mariadb.database.azure.com\",\"masterServerId\":\"\",\"minimalTlsVersion\":\"TLSEnforcementDisabled\",\"publicNetworkAccess\":\"Enabled\",\"replicaCapacity\":5,\"replicationRole\":\"None\",\"sslEnforcement\":\"Enabled\",\"storageProfile\":{\"backupRetentionDays\":7,\"geoRedundantBackup\":\"Disabled\",\"storageAutogrow\":\"Enabled\",\"storageMB\":5120},\"userVisibleState\":\"Ready\",\"version\":\"10.2\"},\"sku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5_2\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.DBforMariaDB/servers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Getting Kubernetes resources for export" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Owner does not yet exist" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2026" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2028" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet1" not found)" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2031" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Owner does not yet exist" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="About to send resource to Azure" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Successfully sent resource to Azure" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2034" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestehjndv, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="2035" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dataprotection.azure.com/v1api20230101storage", Kind:"BackupVault", Name:"asotestybbdoo", UID:"e5d1173c-25a4-42ea-ad18-061ea996b98f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2036" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2026" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2033" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2043" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2039" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2048" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersAdministratorController "msg"="Owner does not yet exist" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Owner does not yet exist" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersConfigurationController "msg"="Owner does not yet exist" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" NamespacedName="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2047" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] BackupVaultsBackupPolicyController "msg"="Determined CreateOrUpdate action" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2041" generation=1 uid="7669530c-6742-4cd6-8fae-bb122fd6a7ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2047" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet1\\\" not found)\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Encountered error, re-queuing..." name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2048" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="updated resource in etcd" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2051" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ServerController "msg"="Done with reconcile" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2053" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ConfigurationController "msg"="Done with reconcile" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2050" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2026" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2057" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2058" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="About to send resource to Azure" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] DatabaseController "msg"="Successfully sent resource to Azure" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2055" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServerController "msg"="applying ownership" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:58Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] BackupVaultsBackupPolicyController "msg"="About to send resource to Azure" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] BackupVaultsBackupPolicyController "msg"="Successfully sent resource to Azure" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] BackupVaultsBackupPolicyController "msg"="Resource successfully created/updated" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] BackupVaultsBackupPolicyController "msg"="Got ARM status" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso\",\"name\":\"asotestirwaso\",\"properties\":{\"datasourceTypes\":[\"Microsoft.ContainerService/managedClusters\"],\"objectType\":\"BackupPolicy\",\"policyRules\":[{\"backupParameters\":{\"backupType\":\"Incremental\",\"objectType\":\"AzureBackupParams\"},\"dataStore\":{\"dataStoreType\":\"OperationalStore\",\"objectType\":\"DataStoreInfoBase\"},\"name\":\"BackupHourly\",\"objectType\":\"AzureBackupRule\",\"trigger\":{\"objectType\":\"ScheduleBasedTriggerContext\",\"schedule\":{\"repeatingTimeIntervals\":[\"R/2023-06-07T10:26:32+00:00/PT4H\"],\"timeZone\":\"UTC\"},\"taggingCriteria\":[{\"isDefault\":true,\"tagInfo\":{\"id\":\"Default_\",\"tagName\":\"Default\"},\"taggingPriority\":99}]}},{\"isDefault\":true,\"lifecycles\":[{\"deleteAfter\":{\"duration\":\"P9D\",\"objectType\":\"AbsoluteDeleteOption\"},\"sourceDataStore\":{\"dataStoreType\":\"OperationalStore\",\"objectType\":\"DataStoreInfoBase\"}}],\"name\":\"Default\",\"objectType\":\"AzureRetentionRule\"}]},\"type\":\"Microsoft.DataProtection/backupVaults/backupPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1985" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="applying ownership" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2059" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Encountered error, re-queuing..." name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2053" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e00fbd5e-b968-41b5-b1ad-698aaf04c6ed?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2059" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2026" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Set owner reference" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2058" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Set owner reference" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Resource successfully created/updated" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Got ARM status" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size\",\"name\":\"query_cache_size\",\"properties\":{\"allowedValues\":\"0,102400-16777216\",\"dataType\":\"Integer\",\"defaultValue\":\"0\",\"description\":\"The amount of memory allocated for caching query results.\",\"source\":\"user-override\",\"value\":\"102400\"},\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="1978" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="applying ownership" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2067" generation=1 uid="89148eca-0e95-4781-8053-e471c72a7704" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Set owner reference" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" ownerGvk="dbformariadb.azure.com/v1api20180601storage, Kind=Server" ownerName="asotestrdmhdm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2074" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2071" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Done with reconcile" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2048" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2026" generation=2 uid="bf9e64f0-b577-4650-bcdc-d4285bbbecb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGUkpSVFYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2058" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/c04a7559-8509-4126-8d44-337fc34cec3f?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotest-rg-frjrtv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu\",\"name\":\"asotestdnnqvu\",\"properties\":{\"charset\":\"utf8mb4\",\"collation\":\"utf8mb4_0900_ai_ci\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2073" generation=1 uid="ad16f227-362d-4877-8b62-0ce83dbccc88" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="adding finalizer" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2076" generation=1 uid="7669530c-6742-4cd6-8fae-bb122fd6a7ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9f476256-756e-4f95-ae60-07ab7bebed0c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet" not found)" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com "samplesubnet" not found)" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2074" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/9454feae-295c-4235-a593-9c88bf3a6f31?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2048" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2071" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/de83ebec-f82e-4464-a471-3fca5cd48c59?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2078" generation=1 uid="154ccf4b-3940-4314-8730-42c0261043d5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2076" generation=1 uid="7669530c-6742-4cd6-8fae-bb122fd6a7ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9f476256-756e-4f95-ae60-07ab7bebed0c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Resource successfully created/updated" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Got ARM status" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct\",\"name\":\"asotestctpcct\",\"properties\":{\"charset\":\"latin1\",\"collation\":\"latin1_swedish_ci\"},\"type\":\"Microsoft.DBforMariaDB/servers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="adding finalizer" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="adding finalizer" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" status="{\"etag\":\"W/\\\"b8f8b2dc-6f9d-4f85-863e-40e3ac96de76\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss\",\"location\":\"westus3\",\"name\":\"samplevnetvmss\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c6ef20f6-fa5f-443b-87c7-aaff70d4d2a9\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe\",\"name\":\"asotestalhzfe\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="updated resource in etcd" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2079" generation=1 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Done with reconcile" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] BackupVaultsBackupPolicyController "msg"="updated resource in etcd" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="2080" generation=1 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dataprotection.azure.com/v1api20230101storage", Kind:"BackupVault", Name:"asotestybbdoo", UID:"e5d1173c-25a4-42ea-ad18-061ea996b98f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] BackupVaultsBackupPolicyController "msg"="Done with reconcile" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2081" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotest-rg-frjrtv aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotestfehhun]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2089" generation=1 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotest-rg-frjrtv resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-frjrtv": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotest-rg-frjrtv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bf9e64f0-b577-4650-bcdc-d4285bbbecb6, UID in object meta: " name="asotest-rg-frjrtv" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2094" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2048" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2094" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2088" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2100" generation=1 uid="7669530c-6742-4cd6-8fae-bb122fd6a7ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2059" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2048" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2092" generation=1 uid="4fdb4485-3d9d-47af-8d44-aa0ae0505ba9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2086" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="About to send resource to Azure" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2093" generation=1 uid="89148eca-0e95-4781-8053-e471c72a7704" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="updated resource in etcd" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2099" generation=1 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Done with reconcile" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Successfully sent resource to Azure" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2096" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2101" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2096" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2059" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2104" generation=1 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="About to send resource to Azure" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2105" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2097" generation=1 uid="ad16f227-362d-4877-8b62-0ce83dbccc88" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Successfully sent resource to Azure" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="About to send resource to Azure" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Successfully sent resource to Azure" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FactoryController "msg"="Reconcile invoked" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" kind="&TypeMeta{Kind:Factory,APIVersion:datafactory.azure.com/v1api20180601storage,}" resourceVersion="2106" generation=2 uid="4296cbf1-219d-4adb-9ccc-1f30f2870e1e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-frjrtv", UID:"bf9e64f0-b577-4650-bcdc-d4285bbbecb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-frjrtv/providers/Microsoft.DataFactory/factories/asotestfehhun"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-frjrtv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2109" generation=1 uid="0a305491-d00a-4064-abb0-0786c4e119f5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FactoryController "msg"="Determined Delete action" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FactoryController "msg"="Starting delete of resource" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FactoryController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" azureName="asotestfehhun" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FactoryController "msg"="Delete succeeded, removing finalizer" name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2107" generation=1 uid="154ccf4b-3940-4314-8730-42c0261043d5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2120" generation=1 uid="a635aa5d-e996-4fcd-8ece-69c01dbdc459" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2119" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2121" generation=1 uid="89148eca-0e95-4781-8053-e471c72a7704" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e5a77fd1-1d51-48c5-9da1-cfd8b5224537?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2117" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2119" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FactoryController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotestfehhun resource status: Operation cannot be fulfilled on factories.datafactory.azure.com "asotestfehhun": StorageError: invalid object, Code: 4, Key: /registry/datafactory.azure.com/factories/aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f/asotestfehhun, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4296cbf1-219d-4adb-9ccc-1f30f2870e1e, UID in object meta: " name="asotestfehhun" namespace="aso-test-samples-creationanddeletion-test-datafactory-v1a-c3f4f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2121" generation=1 uid="89148eca-0e95-4781-8053-e471c72a7704" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e5a77fd1-1d51-48c5-9da1-cfd8b5224537?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2128" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2129" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Done with reconcile" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2132" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Done with reconcile" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2133" generation=1 uid="ad16f227-362d-4877-8b62-0ce83dbccc88" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/0be04cfe-935e-4955-90a0-d9a7a2aa54df?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2125" generation=1 uid="4fdb4485-3d9d-47af-8d44-aa0ae0505ba9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" status="{\"etag\":\"W/\\\"e9773c31-c641-4f09-b283-768605e47819\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.25.158.152\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"0cf7fb31-04de-45ad-9758-33bc3972d70f\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2129" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2130" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2128" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2123" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"7669530c-6742-4cd6-8fae-bb122fd6a7ce", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2119" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2132" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/aeb858d6-f646-4ddb-8217-6300da382eae?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Resource not created yet, will check again" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" requeueAfter="15s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2133" generation=1 uid="ad16f227-362d-4877-8b62-0ce83dbccc88" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/0be04cfe-935e-4955-90a0-d9a7a2aa54df?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2096" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Done with reconcile" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Determined CreateOrUpdate action" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Resource successfully created/updated" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] DatabaseController "msg"="Got ARM status" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc\",\"name\":\"asotestzudnrc\",\"properties\":{\"charset\":\"latin1\",\"collation\":\"latin1_swedish_ci\"},\"type\":\"Microsoft.DBforMariaDB/servers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" status="{\"etag\":\"W/\\\"697a7fcd-e6a8-407e-bcfa-d0ba28fec2db\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss1\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.163.96.81\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"dbf86741-c367-4ec5-a1bf-19230259473e\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2140" generation=1 uid="80079a88-3a79-4585-961c-1fe5d6140cdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2143" generation=1 uid="154ccf4b-3940-4314-8730-42c0261043d5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/f175d00c-44c9-4613-9745-a5d1f42062d4?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2096" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2129" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/azureAsyncOperation/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMariaDB/locations/eastus/operationResults/e84850de-8f67-410f-a992-f91af7df18ab?api-version=2018-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size?api-version=2018-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Resource successfully created/updated" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ConfigurationController "msg"="Got ARM status" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size\",\"name\":\"query_cache_size\",\"properties\":{\"allowedValues\":\"0,102400-16777216\",\"dataType\":\"Integer\",\"defaultValue\":\"0\",\"description\":\"The amount of memory allocated for caching query results.\",\"source\":\"user-override\",\"value\":\"102400\"},\"type\":\"Microsoft.DBforMariaDB/servers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2135" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2128" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2119" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2145" generation=1 uid="89148eca-0e95-4781-8053-e471c72a7704" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2143" generation=1 uid="154ccf4b-3940-4314-8730-42c0261043d5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/f175d00c-44c9-4613-9745-a5d1f42062d4?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2139" generation=1 uid="0a305491-d00a-4064-abb0-0786c4e119f5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" status="{\"etag\":\"W/\\\"b1de0464-3599-4332-904e-ca93a4f0b58e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1\",\"location\":\"westus3\",\"name\":\"samplevnet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"bd2b3d9f-043d-42c3-bf98-31766a1efd16\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:59Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:47:59Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2119" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2144" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2155" generation=1 uid="4fdb4485-3d9d-47af-8d44-aa0ae0505ba9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8ca8368-4d60-4523-a24c-30c1ec8de82b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] DatabaseController "msg"="updated resource in etcd" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2156" generation=1 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2128" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] DatabaseController "msg"="Done with reconcile" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" status="{\"etag\":\"W/\\\"a34bc6b2-d860-4586-9c06-b1108cdc04a3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"a34bc6b2-d860-4586-9c06-b1108cdc04a3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"a34bc6b2-d860-4586-9c06-b1108cdc04a3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\",\"name\":\"samplenatpoolvmss\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"33f37d27-4d49-4189-b318-4f9d180dbcb9\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" status="{\"etag\":\"W/\\\"125f4f47-8a19-4b38-8a4d-64168c925e87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss\",\"location\":\"westus3\",\"name\":\"samplenicvmss\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"4yqo5rs55i3ujb4hvl5xbvgsvb.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"125f4f47-8a19-4b38-8a4d-64168c925e87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e42bd92c-f167-423e-a51a-ef6e2b63f668\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2158" generation=1 uid="ad16f227-362d-4877-8b62-0ce83dbccc88" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2152" generation=1 uid="a635aa5d-e996-4fcd-8ece-69c01dbdc459" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2119" generation=2 uid="9c0194b6-e510-48cd-936d-5def17eec0f0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCWkFaWEgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2155" generation=1 uid="4fdb4485-3d9d-47af-8d44-aa0ae0505ba9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8ca8368-4d60-4523-a24c-30c1ec8de82b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2162" generation=1 uid="154ccf4b-3940-4314-8730-42c0261043d5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ConfigurationController "msg"="updated resource in etcd" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2161" generation=1 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ConfigurationController "msg"="Done with reconcile" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2128" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotest-rg-bzazxh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" status="{\"etag\":\"W/\\\"8a44ffbf-593e-4e2d-965b-4fbb5ecd36c8\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1\",\"location\":\"westus3\",\"name\":\"samplevnetvmss1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3b7f3a85-7fbc-4c99-9fbe-7b0df9d44c75\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2066" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Resource not created yet, will check again" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Didn't commit obj as there was no change" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2128" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/fc017f51-2607-48d8-b64e-abd9230bdbcf?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2163" generation=1 uid="80079a88-3a79-4585-961c-1fe5d6140cdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": [\n {\n \"code\": \"NotFound\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2169" generation=1 uid="0a305491-d00a-4064-abb0-0786c4e119f5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2167" generation=1 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2166" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"7669530c-6742-4cd6-8fae-bb122fd6a7ce", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9022851a-beff-4cd4-83d0-c673e88ef33d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Resource successfully created/updated" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2166" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"7669530c-6742-4cd6-8fae-bb122fd6a7ce", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/9022851a-beff-4cd4-83d0-c673e88ef33d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2171" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2096" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2176" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2175" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Got ARM status" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem\",\"identity\":{\"principalId\":\"00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\":{\"principalId\":\"82c92628-80be-4955-b16e-5b472340f13c\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}}},\"location\":\"East US\",\"name\":\"asotestmljpem\",\"properties\":{\"administratorLogin\":\"myAdmin\",\"availabilityZone\":\"2\",\"backup\":{\"backupRetentionDays\":7,\"earliestRestoreDate\":\"2023-05-15T23:49:15.3453236+00:00\",\"geoRedundantBackup\":\"Disabled\"},\"fullyQualifiedDomainName\":\"asotestmljpem.mysql.database.azure.com\",\"highAvailability\":{\"mode\":\"Disabled\",\"standbyAvailabilityZone\":\"\",\"state\":\"NotEnabled\"},\"maintenanceWindow\":{\"customWindow\":\"Disabled\",\"dayOfWeek\":0,\"startHour\":0,\"startMinute\":0},\"network\":{\"publicNetworkAccess\":\"Enabled\"},\"replicaCapacity\":10,\"replicationRole\":\"None\",\"state\":\"Ready\",\"storage\":{\"autoGrow\":\"Enabled\",\"iops\":684,\"storageSizeGB\":128,\"storageSku\":\"Premium_LRS\"},\"version\":\"8.0.21\"},\"sku\":{\"name\":\"Standard_D4ds_v4\",\"tier\":\"GeneralPurpose\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Getting Kubernetes resources for export" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" status="{\"etag\":\"W/\\\"05cabb96-2320-4172-9e47-0f36d6a67291\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\",\"name\":\"samplesubnetvmss\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotest-rg-bzazxh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bzazxh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotest-rg-bzazxh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9c0194b6-e510-48cd-936d-5def17eec0f0, UID in object meta: " name="asotest-rg-bzazxh" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Owner exists but is not ready. Current condition" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2176" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2096" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotest-rg-bzazxh aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestybbdoo aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestirwaso]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2175" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2182" generation=1 uid="a635aa5d-e996-4fcd-8ece-69c01dbdc459" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2147" generation=2 uid="5bd56c9a-9a2e-49d1-89d4-86ba743246d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWkVSR00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2182" generation=1 uid="a635aa5d-e996-4fcd-8ece-69c01dbdc459" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ILXITC/providers/Microsoft.Network/publicIPAddresses/SAMPLEPUBLICIPVMSS1 not found.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotest-rg-kzergm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2186" generation=1 uid="80079a88-3a79-4585-961c-1fe5d6140cdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/1135fdd8-6961-476e-b78c-a842d1ec02f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2178" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"154ccf4b-3940-4314-8730-42c0261043d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2184" generation=1 uid="4fdb4485-3d9d-47af-8d44-aa0ae0505ba9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2187" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2175" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Owner exists but is not ready. Current condition" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Owner exists but is not ready. Current condition" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" cannot be found. Progress is blocked until the owner is created." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2186" generation=1 uid="80079a88-3a79-4585-961c-1fe5d6140cdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/1135fdd8-6961-476e-b78c-a842d1ec02f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2187" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" status="{\"etag\":\"W/\\\"de5f1c85-f2d6-4fad-941e-0fa154915425\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss1\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"de5f1c85-f2d6-4fad-941e-0fa154915425\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"de5f1c85-f2d6-4fad-941e-0fa154915425\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\",\"name\":\"samplenatpoolvmss1\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"00ce8b88-60ab-42ee-8c4b-c65c12da8d34\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" status="{\"etag\":\"W/\\\"fba70906-7ff8-4992-804e-06cb35e1606c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westus3\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7d6d5752-4558-48a4-84c1-69134f9a5591\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2193" generation=1 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"7669530c-6742-4cd6-8fae-bb122fd6a7ce", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kzergm": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5bd56c9a-9a2e-49d1-89d4-86ba743246d6, UID in object meta: " name="asotest-rg-kzergm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/server-admin-pw aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestnbqvdi aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestctpcct aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] BackupVaultController "msg"="Reconcile invoked" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVault,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="2192" generation=2 uid="e5d1173c-25a4-42ea-ad18-061ea996b98f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bzazxh", UID:"9c0194b6-e510-48cd-936d-5def17eec0f0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-bzazxh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2175" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2054" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="applying ownership" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] BackupVaultController "msg"="Determined Delete action" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2187" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] BackupVaultController "msg"="Starting delete of resource" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Encountered error, re-queuing..." name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Encountered error, re-queuing..." name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] BackupVaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestybbdoo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] BackupVaultController "msg"="Delete succeeded, removing finalizer" name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="updated resource in etcd" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2194" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServerController "msg"="Done with reconcile" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2042" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="applying ownership" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Set owner reference" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2127" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2060" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2175" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2200" generation=1 uid="a635aa5d-e996-4fcd-8ece-69c01dbdc459" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2061" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="applying ownership" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2063" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="applying ownership" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2197" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2202" generation=1 uid="80079a88-3a79-4585-961c-1fe5d6140cdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2187" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2010" generation=1 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2176" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="Set owner reference" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="Set owner reference" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2175" generation=2 uid="5dfeb6ea-364e-4675-8c2a-cf8950cf4bde" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:47:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLWU1TWk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="adding finalizer" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="Set owner reference" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" ownerGvk="dbformysql.azure.com/v1api20210501storage, Kind=FlexibleServer" ownerName="asotestmljpem" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2207" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"154ccf4b-3940-4314-8730-42c0261043d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8494d33-39ac-4525-8e38-c361730c0ac8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2176" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] BackupVaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestybbdoo resource status: Operation cannot be fulfilled on backupvaults.dataprotection.azure.com "asotestybbdoo": StorageError: invalid object, Code: 4, Key: /registry/dataprotection.azure.com/backupvaults/aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestybbdoo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e5d1173c-25a4-42ea-ad18-061ea996b98f, UID in object meta: " name="asotestybbdoo" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotest-rg-kymszo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2187" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotest-rg-kzergm does not exist (resourcegroups.resources.azure.com "asotest-rg-kzergm" not found)" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2207" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"154ccf4b-3940-4314-8730-42c0261043d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/b8494d33-39ac-4525-8e38-c361730c0ac8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" status="{\"etag\":\"W/\\\"75a3aa5c-b7a9-4c3a-968a-dda64ebc09e7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1\",\"location\":\"westus3\",\"name\":\"samplenic1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"t24sxpj3atbufp2ygf1guhx3cg.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"75a3aa5c-b7a9-4c3a-968a-dda64ebc09e7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a51e1e6c-88d2-4f86-9cb9-6947411dd0f8\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" status="{\"etag\":\"W/\\\"5c379cf0-b496-47ea-891f-5859c7bd061b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\",\"name\":\"samplesubnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2187" generation=2 uid="b826ced5-ea21-4acd-8e4d-d01e8b960b4d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVVFhOVk8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersDatabaseController "msg"="adding finalizer" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersConfigurationController "msg"="adding finalizer" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotest-rg-utxnvo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2209" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kymszo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5dfeb6ea-364e-4675-8c2a-cf8950cf4bde, UID in object meta: " name="asotest-rg-kymszo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] FlexibleServersAdministratorController "msg"="adding finalizer" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:00Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:00Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Reconcile invoked" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2210" generation=2 uid="5bf52379-4829-434d-8be5-f1d3cfce5cb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kzergm", UID:"5bd56c9a-9a2e-49d1-89d4-86ba743246d6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kzergm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="About to send resource to Azure" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2223" generation=1 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/server-admin-pw aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestalhzfe aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestdnnqvu]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/server-admin-pw aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestdbbxnk aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestzudnrc]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2213" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"80079a88-3a79-4585-961c-1fe5d6140cdf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Determined Delete action" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-utxnvo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b826ced5-ea21-4acd-8e4d-d01e8b960b4d, UID in object meta: " name="asotest-rg-utxnvo" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] BackupVaultsBackupPolicyController "msg"="Reconcile invoked" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" kind="&TypeMeta{Kind:BackupVaultsBackupPolicy,APIVersion:dataprotection.azure.com/v1api20230101storage,}" resourceVersion="2219" generation=2 uid="663c9f15-c6dc-46db-b675-cf62455c3385" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dataprotection.azure.com/v1api20230101storage", Kind:"BackupVault", Name:"asotestybbdoo", UID:"e5d1173c-25a4-42ea-ad18-061ea996b98f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bzazxh/providers/Microsoft.DataProtection/backupVaults/asotestybbdoo/backupPolicies/asotestirwaso"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestybbdoo, Group/Kind: dataprotection.azure.com/BackupVault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2218" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Starting delete of resource" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestehjndv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Delete succeeded, removing finalizer" name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2225" generation=1 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"154ccf4b-3940-4314-8730-42c0261043d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2131" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2176" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] BackupVaultsBackupPolicyController "msg"="Determined Delete action" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] BackupVaultsBackupPolicyController "msg"="Starting delete of resource" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] BackupVaultsBackupPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" azureName="asotestirwaso" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] BackupVaultsBackupPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2221" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2222" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"4fdb4485-3d9d-47af-8d44-aa0ae0505ba9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2176" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="About to send resource to Azure" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2226" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2051" generation=1 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] ServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv resource status: Operation cannot be fulfilled on servers.dbformariadb.azure.com "asotestehjndv": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/servers/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestehjndv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5bf52379-4829-434d-8be5-f1d3cfce5cb6, UID in object meta: " name="asotestehjndv" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2233" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="1997" generation=1 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotest-rg-utxnvo does not exist (resourcegroups.resources.azure.com "asotest-rg-utxnvo" not found)" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] BackupVaultsBackupPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestirwaso resource status: Operation cannot be fulfilled on backupvaultsbackuppolicies.dataprotection.azure.com "asotestirwaso": StorageError: invalid object, Code: 4, Key: /registry/dataprotection.azure.com/backupvaultsbackuppolicies/aso-test-samples-creationanddeletion-test-dataprotection--7bfcc/asotestirwaso, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 663c9f15-c6dc-46db-b675-cf62455c3385, UID in object meta: " name="asotestirwaso" namespace="aso-test-samples-creationanddeletion-test-dataprotection--7bfcc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="About to send resource to Azure" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Successfully sent resource to Azure" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2233" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Reconcile invoked" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2238" generation=2 uid="2cdd10c6-da84-4cde-893f-c1565513243f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotest-rg-kymszo does not exist (resourcegroups.resources.azure.com "asotest-rg-kymszo" not found)" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Resource not created yet, will check again" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Didn't commit obj as there was no change" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Determined Delete action" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Starting delete of resource" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2233" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/9ca6fcb7-b325-4b8f-93f9-1e09a088ee3b?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Reconcile invoked" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Server,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2234" generation=2 uid="b40cacdf-3423-41bb-91a8-edd721b77220" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-utxnvo", UID:"b826ced5-ea21-4acd-8e4d-d01e8b960b4d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-utxnvo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2244" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"80079a88-3a79-4585-961c-1fe5d6140cdf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/309672d6-ab48-474b-b96f-2c5e56c1c8a5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="About to send resource to Azure" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Successfully sent resource to Azure" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Determined Delete action" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Starting delete of resource" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestrdmhdm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ServerController "msg"="Delete succeeded, removing finalizer" name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Got ARM status" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf\",\"name\":\"asotestqmmqdf\",\"properties\":{\"endIpAddress\":\"1.2.3.4\",\"startIpAddress\":\"1.2.3.4\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/firewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Reconcile invoked" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2248" generation=2 uid="1af33605-bef7-4f2c-8241-bddb651d4896" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestehjndv", UID:"5bf52379-4829-434d-8be5-f1d3cfce5cb6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kzergm/providers/Microsoft.DBforMariaDB/servers/asotestehjndv/databases/asotestctpcct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestehjndv, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2241" generation=2 uid="b28f7790-b82f-4f4d-a125-bd55632891de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kymszo", UID:"5dfeb6ea-364e-4675-8c2a-cf8950cf4bde", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-kymszo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Determined Delete action" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Starting delete of resource" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2244" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"80079a88-3a79-4585-961c-1fe5d6140cdf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/309672d6-ab48-474b-b96f-2c5e56c1c8a5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" azureName="asotestctpcct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2253" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"4fdb4485-3d9d-47af-8d44-aa0ae0505ba9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2cc50a8d-dcb6-42d4-9532-fe458e04b557?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Determined Delete action" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestnbqvdi resource status: Operation cannot be fulfilled on configurations.dbformariadb.azure.com "asotestnbqvdi": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/configurations/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestnbqvdi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2cdd10c6-da84-4cde-893f-c1565513243f, UID in object meta: " name="asotestnbqvdi" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestlnsbgx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" status="{\"etag\":\"W/\\\"b2d3582e-35b5-4634-a4be-d6b566eec7f9\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2253" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"4fdb4485-3d9d-47af-8d44-aa0ae0505ba9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2cc50a8d-dcb6-42d4-9532-fe458e04b557?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2249" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] ServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm resource status: Operation cannot be fulfilled on servers.dbformariadb.azure.com "asotestrdmhdm": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/servers/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestrdmhdm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b40cacdf-3423-41bb-91a8-edd721b77220, UID in object meta: " name="asotestrdmhdm" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2251" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" status="{\"etag\":\"W/\\\"5e808387-ed30-4a17-b467-e70b78324237\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\",\"name\":\"samplesubnetvmss1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] DatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestctpcct resource status: Operation cannot be fulfilled on databases.dbformariadb.azure.com "asotestctpcct": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/databases/aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf/asotestctpcct, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1af33605-bef7-4f2c-8241-bddb651d4896, UID in object meta: " name="asotestctpcct" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-7c7cf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx resource status: Operation cannot be fulfilled on flexibleservers.dbformysql.azure.com "asotestlnsbgx": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestlnsbgx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b28f7790-b82f-4f4d-a125-bd55632891de, UID in object meta: " name="asotestlnsbgx" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2265" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="updated resource in etcd" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2267" generation=1 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Done with reconcile" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" status="{\"etag\":\"W/\\\"e554d84d-ec0a-4a67-8a7d-157d45d87640\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1\",\"location\":\"westus3\",\"name\":\"samplenicvmss1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"qu3h4o32p4muzh34pmg5tvcmof.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"e554d84d-ec0a-4a67-8a7d-157d45d87640\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"af2e4145-ec8d-4e3a-a8b4-10466ff7384c\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2265" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" status="{\"etag\":\"W/\\\"155f7abd-87b8-4fce-8e88-477d5e22f603\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westus3\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"kjlw05kyiwserbgbneju5gsvsb.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"155f7abd-87b8-4fce-8e88-477d5e22f603\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7f119eed-fd28-4602-9ea1-61eaaab98832\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2268" generation=1 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"80079a88-3a79-4585-961c-1fe5d6140cdf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Resource not created yet, will check again" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Didn't commit obj as there was no change" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2265" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2271" generation=1 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"4fdb4485-3d9d-47af-8d44-aa0ae0505ba9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Resource not created yet, will check again" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" requeueAfter="1m0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Didn't commit obj as there was no change" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2270" generation=2 uid="3692cfd5-fe03-4625-b2fb-039cb229e69e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/firewallRules/asotestalhzfe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestalhzfe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2265" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/b3785a50-509c-42ed-af43-9f256deb5b75?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2273" generation=2 uid="5ac9f8eb-b20c-419b-b6ee-47893929c2c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestlnsbgx", UID:"b28f7790-b82f-4f4d-a125-bd55632891de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kymszo/providers/Microsoft.DBforMySQL/flexibleServers/asotestlnsbgx/databases/asotestdnnqvu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestlnsbgx, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Determined CreateOrUpdate action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Resource successfully created/updated" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Got ARM status" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory\",\"name\":\"ActiveDirectory\",\"properties\":{\"administratorType\":\"ActiveDirectory\",\"identityResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity\",\"login\":\"adminidentity\",\"sid\":\"c1b02d3e-fa64-4377-b8cf-20f20777e0aa\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/administrators\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2276" generation=1 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" azureName="asotestdnnqvu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Reconcile invoked" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Configuration,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2277" generation=2 uid="51cb1f26-6e34-40b8-9a28-e7c50a330217" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/configurations/query_cache_size"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Determined Delete action" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Starting delete of resource" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="query_cache_size" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2281" generation=1 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestalhzfe resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbformysql.azure.com "asotestalhzfe": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestalhzfe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3692cfd5-fe03-4625-b2fb-039cb229e69e, UID in object meta: " name="asotestalhzfe" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="updated resource in etcd" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2285" generation=1 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersAdministratorController "msg"="Done with reconcile" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Reconcile invoked" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" kind="&TypeMeta{Kind:Database,APIVersion:dbformariadb.azure.com/v1api20180601storage,}" resourceVersion="2283" generation=2 uid="126bd39d-9702-4a46-9d4e-fcb98685d5ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformariadb.azure.com/v1api20180601storage", Kind:"Server", Name:"asotestrdmhdm", UID:"b40cacdf-3423-41bb-91a8-edd721b77220", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-utxnvo/providers/Microsoft.DBforMariaDB/servers/asotestrdmhdm/databases/asotestzudnrc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotestrdmhdm, Group/Kind: dbformariadb.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource not created yet, will check again" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Determined Delete action" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Starting delete of resource" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" azureName="asotestzudnrc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] DatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] ConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestdbbxnk resource status: Operation cannot be fulfilled on configurations.dbformariadb.azure.com "asotestdbbxnk": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/configurations/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestdbbxnk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 51cb1f26-6e34-40b8-9a28-e7c50a330217, UID in object meta: " name="asotestdbbxnk" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestdnnqvu resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbformysql.azure.com "asotestdnnqvu": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a/asotestdnnqvu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5ac9f8eb-b20c-419b-b6ee-47893929c2c5, UID in object meta: " name="asotestdnnqvu" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1be-8ac5a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2246" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/15503561-1a19-4434-bec8-7a430f178011?api-version=2021-05-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Resource successfully created/updated" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Got ARM status" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo\",\"name\":\"asotesthkinjo\",\"properties\":{\"charset\":\"utf8mb4\",\"collation\":\"utf8mb4_0900_ai_ci\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:01Z] DatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestzudnrc resource status: Operation cannot be fulfilled on databases.dbformariadb.azure.com "asotestzudnrc": StorageError: invalid object, Code: 4, Key: /registry/dbformariadb.azure.com/databases/aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06/asotestzudnrc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 126bd39d-9702-4a46-9d4e-fcb98685d5ba, UID in object meta: " name="asotestzudnrc" namespace="aso-test-samples-creationanddeletion-test-dbformariadb-v1-c2a06" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="updated resource in etcd" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2298" generation=1 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersDatabaseController "msg"="Done with reconcile" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:01Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2309" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="applying ownership" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Resource not created yet, will check again" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" requeueAfter="15s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Didn't commit obj as there was no change" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2314" generation=1 uid="3bf61922-49ad-4408-a0dc-77d733ce5943" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="applying ownership" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2254" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/azureAsyncOperation/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL/locations/eastus/operationResults/492784c8-3dd1-412d-8e45-d21e47662c13?api-version=2022-01-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections?api-version=2022-01-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Determined CreateOrUpdate action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Resource successfully created/updated" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Got ARM status" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections\",\"name\":\"max_connections\",\"properties\":{\"allowedValues\":\"10-2731\",\"currentValue\":\"20\",\"dataType\":\"Integer\",\"defaultValue\":\"1365\",\"description\":\"The maximum permitted number of simultaneous client connections.\",\"documentationLink\":\"https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_max_connections\",\"isConfigPendingRestart\":\"False\",\"isDynamicConfig\":\"True\",\"isReadOnly\":\"False\",\"source\":\"user-override\",\"value\":\"20\"},\"type\":\"Microsoft.DBforMySQL/flexibleServers/configurations\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2318" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2320" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="applying ownership" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Resource creation/update failure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE: NotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"NotFound\",\n \"message\": \"The entity was not found in this Azure location.\",\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] ImageController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE: NotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "The entity was not found in this Azure location.", +[controller:test-integration-envtest] "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Set owner reference" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="updated resource in etcd" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2328" generation=1 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Done with reconcile" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2325" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="adding finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2332" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Encountered error, re-queuing..." name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2331" generation=1 uid="e7b300c2-e31f-4253-a126-a6961c2117bb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="applying ownership" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2327" generation=1 uid="3bf61922-49ad-4408-a0dc-77d733ce5943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Set owner reference" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2332" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="adding finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2334" generation=1 uid="a529948a-1512-4283-abc5-3425d057bb6d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="applying ownership" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2337" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Set owner reference" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2336" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2345" generation=1 uid="3bf61922-49ad-4408-a0dc-77d733ce5943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/59f5de06-c6a3-424b-981d-8e6f6051b9b5?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="adding finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2345" generation=1 uid="3bf61922-49ad-4408-a0dc-77d733ce5943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/59f5de06-c6a3-424b-981d-8e6f6051b9b5?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2343" generation=1 uid="e7b300c2-e31f-4253-a126-a6961c2117bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2348" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="applying ownership" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20220301\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2342" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2347" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/263fccac-04aa-4483-a19f-5ef8deb296a7?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Set owner reference" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="About to send resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Successfully sent resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="About to send resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2355" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2350" generation=1 uid="a529948a-1512-4283-abc5-3425d057bb6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2347" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/263fccac-04aa-4483-a19f-5ef8deb296a7?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20210701\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2355" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2356" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="About to send resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Successfully sent resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="adding finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2362" generation=1 uid="3bf61922-49ad-4408-a0dc-77d733ce5943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2355" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2367" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/d55abd0c-a51c-4c32-a69c-096ddd996a16?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2366" generation=1 uid="e7b300c2-e31f-4253-a126-a6961c2117bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2371" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/21f534d8-6d18-4dcb-a866-a4f727b1dbe5?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2372" generation=1 uid="a529948a-1512-4283-abc5-3425d057bb6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2366" generation=1 uid="e7b300c2-e31f-4253-a126-a6961c2117bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/7a07d327-f574-452d-94b3-5ad0c1b149d9?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2367" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/d55abd0c-a51c-4c32-a69c-096ddd996a16?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Resource successfully created/updated" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Got ARM status" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk\",\"location\":\"westus3\",\"name\":\"sampledisk\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"diskSizeBytes\":536870912000,\"diskSizeGB\":500,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:01.1789003+00:00\",\"uniqueId\":\"3f064459-6ffb-4177-831e-9dfe46d0276c\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/disks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2355" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Resource successfully created/updated" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Got ARM status" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm\",\"location\":\"westus3\",\"name\":\"aso-sample-vm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"assessmentMode\":\"ImageDefault\",\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"deleteOption\":\"Detach\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/aso-sample-vm_OsDisk_1_860a13748ead44bf9630032a445d3033\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"aso-sample-vm_OsDisk_1_860a13748ead44bf9630032a445d3033\",\"osType\":\"Linux\"}},\"timeCreated\":\"2023-07-10T22:16:01.4720363+00:00\",\"vmId\":\"4c99cff5-0d5c-4485-9839-cd761d20da00\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2372" generation=1 uid="a529948a-1512-4283-abc5-3425d057bb6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/c809d35b-bfc8-4dbc-a5e8-5e3c74fb04be?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2371" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/21f534d8-6d18-4dcb-a866-a4f727b1dbe5?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2369" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2376" generation=1 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Resource successfully created/updated" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Got ARM status" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\",\"location\":\"westus2\",\"name\":\"aso-sample-snapshot\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeBytes\":34359738368,\"diskSizeGB\":32,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:01.1769828+00:00\",\"uniqueId\":\"af42ef56-821b-45b8-99c3-4984c38ec63e\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/snapshots\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1\",\"location\":\"westus3\",\"name\":\"samplevmss1\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"timeCreated\":\"2023-07-10T22:16:01.3313665+00:00\",\"uniqueId\":\"7f8d2d08-bb72-46d1-9886-702743e61073\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"extensionProfile\":{\"extensions\":[{\"name\":\"mycustomextension\",\"properties\":{\"autoUpgradeMinorVersion\":false,\"publisher\":\"Microsoft.Azure.Extensions\",\"settings\":{\"commandToExecute\":\"/bin/bash -c \\\"echo hello\\\"\"},\"type\":\"CustomScript\",\"typeHandlerVersion\":\"2.0\"}}]},\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"mynicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"myipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"STANDARD_D1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2377" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="About to send resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2355" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2385" generation=1 uid="e7b300c2-e31f-4253-a126-a6961c2117bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2355" generation=2 uid="7be3d8c8-cd3f-4e0d-819e-218a0fea9d02" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJSEtWRUMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2391" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotest-rg-ihkvec" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2395" generation=1 uid="a529948a-1512-4283-abc5-3425d057bb6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2393" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/53547889-52c4-4bd6-bb25-9f16a3ffb78d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2394" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ihkvec": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7be3d8c8-cd3f-4e0d-819e-218a0fea9d02, UID in object meta: " name="asotest-rg-ihkvec" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2393" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/53547889-52c4-4bd6-bb25-9f16a3ffb78d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Resource successfully created/updated" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Got ARM status" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm\",\"location\":\"westus3\",\"name\":\"samplevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/samplevm_OsDisk_1_329a25f2ce894daf9aba556a0eb242db\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"samplevm_OsDisk_1_329a25f2ce894daf9aba556a0eb242db\",\"osType\":\"Linux\"}},\"vmId\":\"b2fb5bd6-0bd4-4691-889e-453b87ffbfae\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2402" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/e918d367-2077-44fe-ac6e-880f64c9136d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2402" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/e918d367-2077-44fe-ac6e-880f64c9136d?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/server-admin-pw aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/adminidentity aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotesthkinjo aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestqmmqdf aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestnvhdcw aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestakghce aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss\",\"location\":\"westus3\",\"name\":\"samplevmss\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"uniqueId\":\"f9550588-2eec-48df-b71e-188def1ba6c4\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"samplenicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"sampleipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"standard_d1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2408" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2194" generation=1 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Determined CreateOrUpdate action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2416" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotest-rg-ihkvec does not exist (resourcegroups.resources.azure.com "asotest-rg-ihkvec" not found)" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="2417" generation=2 uid="19ee3d8f-cca3-432f-85c6-b2746f84b253" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.ManagedIdentity/userAssignedIdentities/adminidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] UserAssignedIdentityController "msg"="Determined Delete action" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="adminidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/adminidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "adminidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/adminidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 19ee3d8f-cca3-432f-85c6-b2746f84b253, UID in object meta: " name="adminidentity" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Encountered error, re-queuing..." name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Reconcile invoked" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServer,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2423" generation=2 uid="501b5cc0-f9c6-46a1-8ef2-880e881fc095" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ihkvec", UID:"7be3d8c8-cd3f-4e0d-819e-218a0fea9d02", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ihkvec, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Determined Delete action" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Starting delete of resource" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestmljpem" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Delete succeeded, removing finalizer" name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2430" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] FlexibleServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem resource status: Operation cannot be fulfilled on flexibleservers.dbformysql.azure.com "asotestmljpem": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleservers/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestmljpem, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 501b5cc0-f9c6-46a1-8ef2-880e881fc095, UID in object meta: " name="asotestmljpem" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersDatabaseController "msg"="Reconcile invoked" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersDatabase,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2448" generation=2 uid="d2b9e288-9f18-4500-b091-9b24f918a8ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/databases/asotesthkinjo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersDatabaseController "msg"="Determined Delete action" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersDatabaseController "msg"="Starting delete of resource" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotesthkinjo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersFirewallRuleController "msg"="Reconcile invoked" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersFirewallRule,APIVersion:dbformysql.azure.com/v1api20210501storage,}" resourceVersion="2451" generation=2 uid="815ccd14-6cbe-47af-9413-221e0423a82f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/firewallRules/asotestqmmqdf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersFirewallRuleController "msg"="Determined Delete action" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersFirewallRuleController "msg"="Starting delete of resource" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="asotestqmmqdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] FlexibleServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotesthkinjo resource status: Operation cannot be fulfilled on flexibleserversdatabases.dbformysql.azure.com "asotesthkinjo": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversdatabases/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotesthkinjo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d2b9e288-9f18-4500-b091-9b24f918a8ae, UID in object meta: " name="asotesthkinjo" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersAdministratorController "msg"="Reconcile invoked" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersAdministrator,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2456" generation=2 uid="24aec047-a6f7-4201-9036-8cd77a64bf30" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/administrators/ActiveDirectory"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] FlexibleServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestqmmqdf resource status: Operation cannot be fulfilled on flexibleserversfirewallrules.dbformysql.azure.com "asotestqmmqdf": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversfirewallrules/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestqmmqdf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 815ccd14-6cbe-47af-9413-221e0423a82f, UID in object meta: " name="asotestqmmqdf" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersAdministratorController "msg"="Determined Delete action" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersAdministratorController "msg"="Starting delete of resource" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersAdministratorController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="ActiveDirectory" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersAdministratorController "msg"="Delete succeeded, removing finalizer" name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Reconcile invoked" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" kind="&TypeMeta{Kind:FlexibleServersConfiguration,APIVersion:dbformysql.azure.com/v1api20220101storage,}" resourceVersion="2459" generation=2 uid="90a02a07-cf95-42d0-bf3e-de032dd50088" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"dbformysql.azure.com/v1api20210501storage", Kind:"FlexibleServer", Name:"asotestmljpem", UID:"501b5cc0-f9c6-46a1-8ef2-880e881fc095", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ihkvec/providers/Microsoft.DBforMySQL/flexibleServers/asotestmljpem/configurations/max_connections"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotestmljpem, Group/Kind: dbformysql.azure.com/FlexibleServer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Determined Delete action" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Starting delete of resource" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" azureName="max_connections" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Delete succeeded, removing finalizer" name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] FlexibleServersAdministratorController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestnvhdcw resource status: Operation cannot be fulfilled on flexibleserversadministrators.dbformysql.azure.com "asotestnvhdcw": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversadministrators/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestnvhdcw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 24aec047-a6f7-4201-9036-8cd77a64bf30, UID in object meta: " name="asotestnvhdcw" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:02Z] FlexibleServersConfigurationController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestakghce resource status: Operation cannot be fulfilled on flexibleserversconfigurations.dbformysql.azure.com "asotestakghce": StorageError: invalid object, Code: 4, Key: /registry/dbformysql.azure.com/flexibleserversconfigurations/aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f/asotestakghce, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 90a02a07-cf95-42d0-bf3e-de032dd50088, UID in object meta: " name="asotestakghce" namespace="aso-test-samples-creationanddeletion-test-dbformysql-v1ap-9521f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="2438" generation=2 uid="41e4c40b-71c4-417a-9564-f0f781e63efa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:47:57 +0000 UTC" deletionTimestamp="2023-09-08 21:48:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJTFhJVEMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="asotest-rg-ilxitc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ilxitc": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 41e4c40b-71c4-417a-9564-f0f781e63efa, UID in object meta: " name="asotest-rg-ilxitc" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sample-vmss-secret aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20210701 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20220301 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vm aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss1 aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampledisk aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-snapshot aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevm aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss]... +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2391" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2394" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2416" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2408" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2519" generation=2 uid="ce7b5d71-202d-4f02-8c42-286757c056e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2523" generation=2 uid="7669530c-6742-4cd6-8fae-bb122fd6a7ce" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ce7b5d71-202d-4f02-8c42-286757c056e3, UID in object meta: " name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7669530c-6742-4cd6-8fae-bb122fd6a7ce, UID in object meta: " name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2529" generation=2 uid="b9e4ebd2-b105-4ce8-a7fb-1348e0f25484" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2537" generation=2 uid="2ac4e6a9-c4e3-4467-817b-2b9956d97c3a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b9e4ebd2-b105-4ce8-a7fb-1348e0f25484, UID in object meta: " name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2543" generation=2 uid="89148eca-0e95-4781-8053-e471c72a7704" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2ac4e6a9-c4e3-4467-817b-2b9956d97c3a, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2548" generation=2 uid="ad16f227-362d-4877-8b62-0ce83dbccc88" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2550" generation=2 uid="154ccf4b-3940-4314-8730-42c0261043d5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:47:59 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 89148eca-0e95-4781-8053-e471c72a7704, UID in object meta: " name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2554" generation=2 uid="4fdb4485-3d9d-47af-8d44-aa0ae0505ba9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 154ccf4b-3940-4314-8730-42c0261043d5, UID in object meta: " name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1 resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplepublicipvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ad16f227-362d-4877-8b62-0ce83dbccc88, UID in object meta: " name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2560" generation=2 uid="0a305491-d00a-4064-abb0-0786c4e119f5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4fdb4485-3d9d-47af-8d44-aa0ae0505ba9, UID in object meta: " name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2564" generation=2 uid="a635aa5d-e996-4fcd-8ece-69c01dbdc459" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0a305491-d00a-4064-abb0-0786c4e119f5, UID in object meta: " name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2569" generation=2 uid="2e9b40d6-84b0-431c-8400-a2b2bd6ac293" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss1 resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampleloadbalancervmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a635aa5d-e996-4fcd-8ece-69c01dbdc459, UID in object meta: " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2575" generation=2 uid="80079a88-3a79-4585-961c-1fe5d6140cdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplenicvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2e9b40d6-84b0-431c-8400-a2b2bd6ac293, UID in object meta: " name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2580" generation=2 uid="305dce5f-e036-4adb-a869-cca34137730b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2524" generation=1 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 80079a88-3a79-4585-961c-1fe5d6140cdf, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2584" generation=2 uid="3bf61922-49ad-4408-a0dc-77d733ce5943" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20210701 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20210701": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20210701, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 305dce5f-e036-4adb-a869-cca34137730b, UID in object meta: " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2531" generation=1 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:03Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20220301 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20220301": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-image-20220301, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3bf61922-49ad-4408-a0dc-77d733ce5943, UID in object meta: " name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2589" generation=2 uid="42860ad8-db1a-4e0d-9612-94d90aac2444" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Determined Delete action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Starting delete of resource" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "aso-sample-vm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-vm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 42860ad8-db1a-4e0d-9612-94d90aac2444, UID in object meta: " name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2596" generation=2 uid="fc180166-2485-4986-8db4-6c1192fc5d2e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2602" generation=2 uid="e7b300c2-e31f-4253-a126-a6961c2117bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2536" generation=1 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] DiskController "msg"="Determined Delete action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] DiskController "msg"="Starting delete of resource" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] DiskController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] DiskController "msg"="Delete succeeded, removing finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="2606" generation=2 uid="a529948a-1512-4283-abc5-3425d057bb6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:02 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] SnapshotController "msg"="Determined Delete action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] SnapshotController "msg"="Starting delete of resource" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] SnapshotController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] SnapshotController "msg"="Delete succeeded, removing finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] DiskController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampledisk resource status: Operation cannot be fulfilled on disks.compute.azure.com "sampledisk": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/disks/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/sampledisk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e7b300c2-e31f-4253-a126-a6961c2117bb, UID in object meta: " name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss1 resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss1": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fc180166-2485-4986-8db4-6c1192fc5d2e, UID in object meta: " name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] SnapshotController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-snapshot resource status: Operation cannot be fulfilled on snapshots.compute.azure.com "aso-sample-snapshot": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/snapshots/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/aso-sample-snapshot, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a529948a-1512-4283-abc5-3425d057bb6d, UID in object meta: " name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2613" generation=2 uid="69096540-5bc3-456d-94f3-8fccb1b93213" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Determined Delete action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Starting delete of resource" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2533" generation=1 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com "asotest-rg-ilxitc" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="2621" generation=2 uid="0c9184ac-baa1-4572-88cd-6609bda3fac9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ilxitc", UID:"41e4c40b-71c4-417a-9564-f0f781e63efa", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:02 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/asotest-rg-ilxitc does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-ilxitc\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:03 +0000 UTC\"]" owner="asotest-rg-ilxitc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "samplevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 69096540-5bc3-456d-94f3-8fccb1b93213, UID in object meta: " name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplevmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0c9184ac-baa1-4572-88cd-6609bda3fac9, UID in object meta: " name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2651" generation=2 uid="a45f6d69-af6c-433c-8516-f7b2a08497b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"7669530c-6742-4cd6-8fae-bb122fd6a7ce", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2655" generation=2 uid="5d42b5e9-1f76-4fda-8a0f-3b79830352f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"154ccf4b-3940-4314-8730-42c0261043d5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:00 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2658" generation=2 uid="606ce460-e769-49d8-bc7c-cefa99189965" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"4fdb4485-3d9d-47af-8d44-aa0ae0505ba9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:58 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a45f6d69-af6c-433c-8516-f7b2a08497b3, UID in object meta: " name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 606ce460-e769-49d8-bc7c-cefa99189965, UID in object meta: " name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="2664" generation=2 uid="7d60b9cd-fd03-490e-954e-db6f8a89b2b8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"80079a88-3a79-4585-961c-1fe5d6140cdf", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:47:59 +0000 UTC" deletionTimestamp="2023-09-08 21:48:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ilxitc/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:01 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5d42b5e9-1f76-4fda-8a0f-3b79830352f6, UID in object meta: " name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:04Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1beta--1b409/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7d60b9cd-fd03-490e-954e-db6f8a89b2b8, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1beta--1b409" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:48:27 Creating & starting controller-runtime manager +[controller:test-integration-envtest] 2023/09/08 21:48:27 Waiting for webhook server to start +[controller:test-integration-envtest] 2023/09/08 21:48:27 Webhook server started +[controller:test-integration-envtest] 2023/09/08 21:48:27 Waiting for watchers to start +[controller:test-integration-envtest] 2023/09/08 21:48:29 Watchers started +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3285" generation=1 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3286" generation=1 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3287" generation=1 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3288" generation=1 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3290" generation=1 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:29Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3292" generation=1 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3294" generation=1 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy\",\"location\":\"westus2\",\"name\":\"asotest-rg-eysbsy\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa\",\"location\":\"westus2\",\"name\":\"asotest-rg-wytwwa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3297" generation=1 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3299" generation=1 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3295" generation=1 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs\",\"location\":\"westus2\",\"name\":\"asotest-rg-kitaqs\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa\",\"location\":\"westus2\",\"name\":\"asotest-rg-stutqa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj\",\"location\":\"westus2\",\"name\":\"asotest-rg-igztjj\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3303" generation=1 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3304" generation=1 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3291" generation=1 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3293" generation=1 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3308" generation=1 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3309" generation=1 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3311" generation=1 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3315" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3312" generation=1 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3313" generation=1 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb\",\"location\":\"westus2\",\"name\":\"asotest-rg-dvxsxb\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Reconcile invoked" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3316" generation=1 uid="5f134dbc-f896-423e-be1a-6e3713a8272c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="applying ownership" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3318" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg\",\"location\":\"westus2\",\"name\":\"asotest-rg-dwrfmg\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Set owner reference" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="adding finalizer" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3324" generation=1 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3323" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="applying ownership" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3327" generation=1 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3328" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="Set owner reference" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-igztjj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="applying ownership" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3326" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="adding finalizer" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="Set owner reference" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kitaqs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Reconcile invoked" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3334" generation=1 uid="ffe7b74b-32fb-40b6-8007-b0aa042cedbc" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="applying ownership" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3332" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="adding finalizer" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3336" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Set owner reference" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="updated resource in etcd" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3331" generation=1 uid="5f134dbc-f896-423e-be1a-6e3713a8272c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-wytwwa", UID:"c83d083a-5442-46d1-bd67-4cd4d7a12d7d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl"} conditions="[]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Determined CreateOrUpdate action" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3339" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="About to send resource to Azure" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Successfully sent resource to Azure" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Resource successfully created/updated" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="Got ARM status" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl\",\"location\":\"westcentralus\",\"name\":\"asotestiimvtl\",\"properties\":{\"adminUserEnabled\":false,\"creationDate\":\"2001-02-03T04:05:06Z\",\"dataEndpointEnabled\":false,\"encryption\":{\"status\":\"disabled\"},\"loginServer\":\"asotestiimvtl.azurecr.io\",\"networkRuleBypassOptions\":\"AzureServices\",\"policies\":{\"exportPolicy\":{\"status\":\"enabled\"},\"quarantinePolicy\":{\"status\":\"disabled\"},\"retentionPolicy\":{\"days\":7,\"lastUpdatedTime\":\"2023-03-23T23:06:46.4220132+00:00\",\"status\":\"disabled\"},\"trustPolicy\":{\"status\":\"disabled\",\"type\":\"Notary\"}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"zoneRedundancy\":\"Disabled\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2023-03-23T23:06:34.1618446+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2023-03-23T23:06:34.1618446+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.ContainerRegistry/registries\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] RegistryController "msg"="adding finalizer" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3340" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:30Z] StorageAccountController "msg"="applying ownership" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3341" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Set owner reference" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="About to send resource to Azure" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Successfully sent resource to Azure" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3346" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="applying ownership" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="About to send resource to Azure" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Successfully sent resource to Azure" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="adding finalizer" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Set owner reference" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3352" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="applying ownership" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3348" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="adding finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="updated resource in etcd" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3349" generation=1 uid="ffe7b74b-32fb-40b6-8007-b0aa042cedbc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dvxsxb", UID:"6233ee64-8291-479d-a008-37f502154907", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs"} conditions="[]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="Determined CreateOrUpdate action" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="updated resource in etcd" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3358" generation=1 uid="5f134dbc-f896-423e-be1a-6e3713a8272c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-wytwwa", UID:"c83d083a-5442-46d1-bd67-4cd4d7a12d7d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="Done with reconcile" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3361" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3356" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3360" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="About to send resource to Azure" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="Successfully sent resource to Azure" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="Resource successfully created/updated" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="Got ARM status" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs\",\"location\":\"westcentralus\",\"name\":\"asotesthfdfzs\",\"properties\":{\"adminUserEnabled\":false,\"creationDate\":\"2001-02-03T04:05:06Z\",\"dataEndpointEnabled\":false,\"encryption\":{\"status\":\"disabled\"},\"loginServer\":\"asotesthfdfzs.azurecr.io\",\"networkRuleBypassOptions\":\"AzureServices\",\"policies\":{\"exportPolicy\":{\"status\":\"enabled\"},\"quarantinePolicy\":{\"status\":\"disabled\"},\"retentionPolicy\":{\"days\":7,\"lastUpdatedTime\":\"2022-10-19T18:38:35.6581483+00:00\",\"status\":\"disabled\"},\"trustPolicy\":{\"status\":\"disabled\",\"type\":\"Notary\"}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"zoneRedundancy\":\"Disabled\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2022-10-19T18:38:34.3081356+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2022-10-19T18:38:34.3081356+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.ContainerRegistry/registries\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="About to send resource to Azure" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="adding finalizer" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3362" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3360" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3361" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3365" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="About to send resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Successfully sent resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3360" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="updated resource in etcd" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3372" generation=1 uid="ffe7b74b-32fb-40b6-8007-b0aa042cedbc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dvxsxb", UID:"6233ee64-8291-479d-a008-37f502154907", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3371" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3361" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] RegistryController "msg"="Done with reconcile" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3369" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3371" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3361" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/b1eeb971-e852-451f-9417-cf6f5d2df1c3?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3360" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource successfully created/updated" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Got ARM status" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft\",\"location\":\"westcentralus\",\"name\":\"asotestqhvcft\",\"properties\":{\"containers\":[{\"name\":\"samplecontainergroup\",\"properties\":{\"image\":\"mcr.microsoft.com/azuredocs/aci-helloworld\",\"instanceView\":{\"currentState\":{\"detailStatus\":\"\",\"startTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Running\"},\"events\":[{\"count\":1,\"firstTimestamp\":\"2001-02-03T04:05:06Z\",\"lastTimestamp\":\"2001-02-03T04:05:06Z\",\"message\":\"Successfully pulled image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:565dba8ce20ca1a311c2d9485089d7ddc935dd50140510050345a1b0ea4ffa6e\\\"\",\"name\":\"Pulled\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2001-02-03T04:05:06Z\",\"lastTimestamp\":\"2001-02-03T04:05:06Z\",\"message\":\"pulling image \\\"mcr.microsoft.com/azuredocs/aci-helloworld@sha256:565dba8ce20ca1a311c2d9485089d7ddc935dd50140510050345a1b0ea4ffa6e\\\"\",\"name\":\"Pulling\",\"type\":\"Normal\"},{\"count\":1,\"firstTimestamp\":\"2001-02-03T04:05:06Z\",\"lastTimestamp\":\"2001-02-03T04:05:06Z\",\"message\":\"Started container\",\"name\":\"Started\",\"type\":\"Normal\"}],\"restartCount\":0},\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"resources\":{\"requests\":{\"cpu\":1,\"memoryInGB\":2}}}}],\"instanceView\":{\"state\":\"Running\"},\"ipAddress\":{\"ip\":\"20.69.43.125\",\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"type\":\"Public\"},\"osType\":\"Linux\",\"provisioningState\":\"Succeeded\",\"restartPolicy\":\"Always\",\"sku\":\"Standard\"},\"type\":\"Microsoft.ContainerInstance/containerGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3360" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3371" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3378" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3380" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Resource not created yet, will check again" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Didn't commit obj as there was no change" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3378" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3380" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3382" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3371" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3360" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westcentralus/operations/3d026867-2075-4e7b-bf59-d5a2a5b5a91a?api-version=2018-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Pending\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3386" generation=1 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ContainerGroupController "msg"="Done with reconcile" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:31Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3371" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/fafe7008-4b53-4c1f-ab14-49a41d23e7e4?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Determined CreateOrUpdate action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Resource successfully created/updated" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Got ARM status" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs\",\"location\":\"westcentralus\",\"name\":\"asotestuqgifs\",\"properties\":{\"containers\":[{\"name\":\"samplecontainergroup\",\"properties\":{\"image\":\"mcr.microsoft.com/azuredocs/aci-helloworld\",\"instanceView\":{\"currentState\":{\"detailStatus\":\"\",\"startTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Running\"},\"restartCount\":0},\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"resources\":{\"requests\":{\"cpu\":1,\"memoryInGB\":2}}}}],\"instanceView\":{\"state\":\"Running\"},\"ipAddress\":{\"ip\":\"20.165.155.237\",\"ports\":[{\"port\":80,\"protocol\":\"TCP\"}],\"type\":\"Public\"},\"osType\":\"Linux\",\"provisioningState\":\"Succeeded\",\"restartPolicy\":\"Always\",\"sku\":\"Standard\"},\"type\":\"Microsoft.ContainerInstance/containerGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3378" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3380" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3391" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Resource successfully created/updated" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Got ARM status" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct\",\"kind\":\"BlobStorage\",\"location\":\"westus3\",\"name\":\"asoworkspacestorageacct\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asoworkspacestorageacct.blob.core.windows.net/\",\"dfs\":\"https://asoworkspacestorageacct.dfs.core.windows.net/\",\"table\":\"https://asoworkspacestorageacct.table.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3380" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3350" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/3b436c2b-bc47-40b0-a70b-a9cf2ec97f07?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3378" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3391" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3395" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3397" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221\",\"identity\":{\"principalId\":\"d97718c8-e865-4fe7-9d43-15478650d265\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster202221\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"currentOrchestratorVersion\":\"1.24.9\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-i4cs3mmm.portal.hcp.westus3.azmk8s.io\",\"currentKubernetesVersion\":\"1.24.9\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-i4cs3mmm.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"69d28122-99cc-439c-a8d7-b8701acee60f\",\"objectId\":\"e89a13c7-871a-4206-aba6-3677740c9f6b\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-eysbsy_samplemanagedcluster202221_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster202221-agentpool\"}},\"kubernetesVersion\":\"1.24.9\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"ipFamilies\":[\"IPv4\"],\"loadBalancerProfile\":{\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-eysbsy_samplemanagedcluster202221_westus3/providers/Microsoft.Network/publicIPAddresses/163f980e-69b7-4afa-af46-0bab567ae739\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"podCidrs\":[\"10.244.0.0/16\"],\"serviceCidr\":\"10.0.0.0/16\",\"serviceCidrs\":[\"10.0.0.0/16\"]},\"nodeResourceGroup\":\"MC_asotest-rg-eysbsy_samplemanagedcluster202221_westus3\",\"oidcIssuerProfile\":{\"enabled\":false},\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"securityProfile\":{},\"servicePrincipalProfile\":{\"clientId\":\"msi\"},\"storageProfile\":{\"diskCSIDriver\":{\"enabled\":true},\"fileCSIDriver\":{\"enabled\":true},\"snapshotController\":{\"enabled\":true}},\"workloadAutoScalerProfile\":{}},\"sku\":{\"name\":\"Base\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="updated resource in etcd" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3400" generation=1 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Done with reconcile" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3395" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3378" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3380" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3391" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Resource successfully created/updated" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Got ARM status" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault\",\"location\":\"westus3\",\"name\":\"mlworkspaces-vault\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"1c793267-c310-d4ae-7bd5-5af5bef875d3\",\"objectId\":\"1C793267-c310-d4ae-7BD5-5Af5BEF875D3\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://mlworkspaces-vault.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3402" generation=1 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3391" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3380" generation=2 uid="c83d083a-5442-46d1-bd67-4cd4d7a12d7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRXWVRXV0EtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3395" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotest-rg-wytwwa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3370" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/4de02b3e-2e0e-4375-b918-2a560e7ae73e?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3409" generation=1 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster\",\"identity\":{\"principalId\":\"9f28b6f3-6d3c-44e7-abc8-f9175e7323c8\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-0in09dl7.portal.hcp.westus3.azmk8s.io\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-0in09dl7.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"3807bf12-dbff-4125-9cf8-7acc98d45454\",\"objectId\":\"cc6cdde9-1c82-4ffe-9006-67ac34e99240\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-stutqa_samplemanagedcluster_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster-agentpool\"}},\"kubernetesVersion\":\"1.24.9\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"loadBalancerProfile\":{\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-stutqa_samplemanagedcluster_westus3/providers/Microsoft.Network/publicIPAddresses/02588e8b-ba5e-4402-9c32-c2a8353e1084\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"serviceCidr\":\"10.0.0.0/16\"},\"nodeResourceGroup\":\"MC_asotest-rg-stutqa_samplemanagedcluster_westus3\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"servicePrincipalProfile\":{\"clientId\":\"msi\"}},\"sku\":{\"name\":\"Basic\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3395" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3391" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3330" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource creation/update failure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: BadRequest\n--------------------------------------------------------------------------------\n{\n \"status\": \"Failed\",\n \"error\": {\n \"code\": \"BadRequest\",\n \"message\": \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Classifying CloudError" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" Message="Conflict response body: {\"error\":{\"code\":\"StorageAccountIsNotProvisioned\",\"message\":\"The storage account provisioning state must be 'Succeeded' before executing the operation.\"}}" Code="BadRequest" Target="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="CloudError classified" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" Classification="retryable" Code="BadRequest" Message="Conflict response body: {\"error\":{\"code\":\"StorageAccountIsNotProvisioned\",\"message\":\"The storage account provisioning state must be 'Succeeded' before executing the operation.\"}}" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: BadRequest, Severity: Warning, RetryClassification: RetrySlow, Cause: Conflict response body: {"error":{"code":"StorageAccountIsNotProvisioned","message":"The storage account provisioning state must be 'Succeeded' before executing the operation."}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: BadRequest +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "BadRequest", +[controller:test-integration-envtest] "message": "Conflict response body: {\"error\":{\"code\":\"StorageAccountIsNotProvisioned\",\"message\":\"The storage account provisioning state must be 'Succeeded' before executing the operation.\"}}" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3411" generation=1 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotest-rg-wytwwa aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotestiimvtl]... +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotest-rg-wytwwa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-wytwwa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotest-rg-wytwwa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c83d083a-5442-46d1-bd67-4cd4d7a12d7d, UID in object meta: " name="asotest-rg-wytwwa" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3395" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3395" generation=2 uid="6233ee64-8291-479d-a008-37f502154907" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:31 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREVlhTWEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3416" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotest-rg-dvxsxb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3345" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3423" generation=1 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Reconcile invoked" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3421" generation=2 uid="5f134dbc-f896-423e-be1a-6e3713a8272c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-wytwwa", UID:"c83d083a-5442-46d1-bd67-4cd4d7a12d7d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-wytwwa/providers/Microsoft.ContainerRegistry/registries/asotestiimvtl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="asotest-rg-wytwwa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Determined Delete action" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Starting delete of resource" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" azureName="asotestiimvtl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Delete succeeded, removing finalizer" name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3429" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Encountered error, re-queuing..." name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotest-rg-dvxsxb resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-dvxsxb": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotest-rg-dvxsxb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6233ee64-8291-479d-a008-37f502154907, UID in object meta: " name="asotest-rg-dvxsxb" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3430" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3429" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3406" generation=2 uid="941d917f-d144-418e-9fba-ab7563151ba3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLSVRBUVMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3432" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] RegistryController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotestiimvtl resource status: Operation cannot be fulfilled on registries.containerregistry.azure.com "asotestiimvtl": StorageError: invalid object, Code: 4, Key: /registry/containerregistry.azure.com/registries/aso-test-samples-creationanddeletion-test-containerregist-23c5d/asotestiimvtl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5f134dbc-f896-423e-be1a-6e3713a8272c, UID in object meta: " name="asotestiimvtl" namespace="aso-test-samples-creationanddeletion-test-containerregist-23c5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3430" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotest-rg-kitaqs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotest-rg-dvxsxb aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotesthfdfzs]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotest-rg-kitaqs resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kitaqs": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotest-rg-kitaqs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 941d917f-d144-418e-9fba-ab7563151ba3, UID in object meta: " name="asotest-rg-kitaqs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3436" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3430" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3440" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3430" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Reconcile invoked" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" kind="&TypeMeta{Kind:Registry,APIVersion:containerregistry.azure.com/v1api20210901storage,}" resourceVersion="3443" generation=2 uid="ffe7b74b-32fb-40b6-8007-b0aa042cedbc" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dvxsxb", UID:"6233ee64-8291-479d-a008-37f502154907", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dvxsxb/providers/Microsoft.ContainerRegistry/registries/asotesthfdfzs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-dvxsxb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Determined Delete action" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Starting delete of resource" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" azureName="asotesthfdfzs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] RegistryController "msg"="Delete succeeded, removing finalizer" name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3440" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3430" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3440" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotest-rg-kitaqs aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotestqhvcft]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3430" generation=2 uid="22f956da-5e98-4268-853c-56a37b44bb19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJR1pUSkotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotest-rg-igztjj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3440" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3454" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] RegistryController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotesthfdfzs resource status: Operation cannot be fulfilled on registries.containerregistry.azure.com "asotesthfdfzs": StorageError: invalid object, Code: 4, Key: /registry/containerregistry.azure.com/registries/aso-test-samples-creationanddeletion-test-containerregist-b3c3c/asotesthfdfzs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ffe7b74b-32fb-40b6-8007-b0aa042cedbc, UID in object meta: " name="asotesthfdfzs" namespace="aso-test-samples-creationanddeletion-test-containerregist-b3c3c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3455" generation=2 uid="637cba56-d9bf-4671-a427-2435d3ddd5c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kitaqs", UID:"941d917f-d144-418e-9fba-ab7563151ba3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kitaqs/providers/Microsoft.ContainerInstance/containerGroups/asotestqhvcft"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:31 +0000 UTC\"]" owner="asotest-rg-kitaqs, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotest-rg-igztjj resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-igztjj": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotest-rg-igztjj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 22f956da-5e98-4268-853c-56a37b44bb19, UID in object meta: " name="asotest-rg-igztjj" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Determined Delete action" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Starting delete of resource" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" azureName="asotestqhvcft" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Delete succeeded, removing finalizer" name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3440" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"BadRequest\", Message = \"Conflict response body: {\\\"error\\\":{\\\"code\\\":\\\"StorageAccountIsNotProvisioned\\\",\\\"message\\\":\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\"}}: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/KJc_nmV5w817KjaCbzoK_Phj7H164-KOIWxSTpX3Flw\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: BadRequest\\n--------------------------------------------------------------------------------\\n{\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"BadRequest\\\",\\n \\\"message\\\": \\\"Conflict response body: {\\\\\\\"error\\\\\\\":{\\\\\\\"code\\\\\\\":\\\\\\\"StorageAccountIsNotProvisioned\\\\\\\",\\\\\\\"message\\\\\\\":\\\\\\\"The storage account provisioning state must be 'Succeeded' before executing the operation.\\\\\\\"}}\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Resource successfully created/updated" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Got ARM status" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces\",\"identity\":{\"principalId\":\"f1f4fafd-8a3f-4f2b-9378-7fa717d9947e\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"sampleworkspaces\",\"properties\":{\"allowPublicAccessWhenBehindVnet\":true,\"description\":\"\",\"discoveryUrl\":\"https://westus3.api.azureml.ms/discovery\",\"friendlyName\":\"\",\"hbiWorkspace\":false,\"keyVault\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Keyvault/vaults/mlworkspaces-vault\",\"mlFlowTrackingUri\":\"azureml://westus3.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces\",\"notebookInfo\":{\"fqdn\":\"ml-sampleworkspace-westus3-a87b6799-94c5-418a-bc41-c71cbc8e34b5.westus2.notebooks.azure.net\",\"resourceId\":\"35952e7e2ba84c1aba2dba48152cc3db\"},\"privateLinkCount\":0,\"provisioningState\":\"Succeeded\",\"storageAccount\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct\",\"storageHnsEnabled\":false,\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"workspaceId\":\"a87b6799-94c5-418a-bc41-c71cbc8e34b5\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.MachineLearningServices/workspaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Getting Kubernetes resources for export" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Successfully retrieved Kubernetes resources for export" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3454" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3463" generation=1 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotest-rg-igztjj aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotestuqgifs]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotestqhvcft resource status: Operation cannot be fulfilled on containergroups.containerinstance.azure.com "asotestqhvcft": StorageError: invalid object, Code: 4, Key: /registry/containerinstance.azure.com/containergroups/aso-test-samples-creationanddeletion-test-containerinstan-d2359/asotestqhvcft, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 637cba56-d9bf-4671-a427-2435d3ddd5c9, UID in object meta: " name="asotestqhvcft" namespace="aso-test-samples-creationanddeletion-test-containerinstan-d2359" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3454" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3468" generation=1 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3454" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Reconcile invoked" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" kind="&TypeMeta{Kind:ContainerGroup,APIVersion:containerinstance.azure.com/v1api20211001storage,}" resourceVersion="3471" generation=2 uid="8f417d76-473e-4dde-a4c4-ad8666d7aad6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-igztjj", UID:"22f956da-5e98-4268-853c-56a37b44bb19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:32 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-igztjj/providers/Microsoft.ContainerInstance/containerGroups/asotestuqgifs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-igztjj, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3473" generation=1 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Determined Delete action" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Starting delete of resource" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" azureName="asotestuqgifs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Delete succeeded, removing finalizer" name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3454" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm\",\"location\":\"westus2\",\"name\":\"asotest-rg-nxirwm\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3447" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7f3c3df6-00a9-4239-afce-5f6c21f32447?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221?api-version=2023-02-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3476" generation=1 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3454" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/79bdfce1-92b4-4ed2-9bdc-1fbb9cd3ecc9?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2?api-version=2021-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ContainerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotestuqgifs resource status: Operation cannot be fulfilled on containergroups.containerinstance.azure.com "asotestuqgifs": StorageError: invalid object, Code: 4, Key: /registry/containerinstance.azure.com/containergroups/aso-test-samples-creationanddeletion-test-containerinstan-1ca24/asotestuqgifs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8f417d76-473e-4dde-a4c4-ad8666d7aad6, UID in object meta: " name="asotestuqgifs" namespace="aso-test-samples-creationanddeletion-test-containerinstan-1ca24" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2\",\"name\":\"pool2\",\"properties\":{\"count\":1,\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221\",\"name\":\"pool202221\",\"properties\":{\"count\":1,\"currentOrchestratorVersion\":\"1.24.9\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-1804gen2containerd-202303.06.0\",\"orchestratorVersion\":\"1.24.9\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"scaleDownMode\":\"Delete\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3482" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="applying ownership" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="Set owner reference" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3483" generation=1 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3488" generation=1 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh\",\"location\":\"westus2\",\"name\":\"asotest-rg-nbkbyh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3489" generation=1 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClusterController "msg"="adding finalizer" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3487" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3493" generation=1 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:32Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3492" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:32Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3499" generation=1 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3496" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Refreshing Status of resource" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3500" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3505" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Extension pre-reconcile check running" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Extension pre-reconcile check succeeded" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3504" generation=1 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="About to send resource to Azure" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Successfully sent resource to Azure" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3509" generation=1 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="applying ownership" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3511" generation=1 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Set owner reference" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3513" generation=1 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3517" generation=1 uid="96906a4e-db50-445a-ae8a-2d758e414b41" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="applying ownership" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-ecylaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Set owner reference" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="adding finalizer" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3522" generation=1 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3524" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="applying ownership" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua\",\"location\":\"westus2\",\"name\":\"asotest-rg-lnasua\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="adding finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Set owner reference" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3528" generation=1 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3531" generation=1 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3530" generation=1 uid="96906a4e-db50-445a-ae8a-2d758e414b41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3533" generation=1 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Determined CreateOrUpdate action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="About to send resource to Azure" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="adding finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="About to send resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Successfully sent resource to Azure" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Resource successfully created/updated" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Got ARM status" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-appservice\",\"properties\":{\"elasticScaleEnabled\":false,\"geoRegion\":\"West US\",\"hyperV\":false,\"isSpot\":false,\"isXenon\":false,\"maximumElasticWorkerCount\":1,\"maximumNumberOfWorkers\":1,\"numberOfSites\":0,\"numberOfWorkers\":0,\"perSiteScaling\":false,\"provisioningState\":\"Succeeded\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-nbkbyh\",\"status\":\"Ready\",\"subscription\":\"00000000-0000-0000-0000-000000000000\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"zoneRedundant\":false},\"sku\":{\"capacity\":0,\"family\":\"F\",\"name\":\"F1\",\"size\":\"F1\",\"tier\":\"Free\"},\"type\":\"Microsoft.Web/serverfarms\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3537" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="updated resource in etcd" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3541" generation=1 uid="96906a4e-db50-445a-ae8a-2d758e414b41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ServerFarmController "msg"="Done with reconcile" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Resource creation/update failure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE UNAVAILABLE\n--------------------------------------------------------------------------------\n{\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\",\n \"Target\": null,\n \"Details\": [\n {\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n },\n {\n \"Code\": \"NotFound\"\n },\n {\n \"ErrorEntity\": {\n \"ExtendedCode\": \"51004\",\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\n \"Parameters\": [\n \"ServerFarm\",\n \"aso-sample-appservice\"\n ],\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n }\n }\n ],\n \"Innererror\": null\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] SiteController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE UNAVAILABLE +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice.", +[controller:test-integration-envtest] "Target": null, +[controller:test-integration-envtest] "Details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound" +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "ErrorEntity": { +[controller:test-integration-envtest] "ExtendedCode": "51004", +[controller:test-integration-envtest] "MessageTemplate": "Cannot find {0} with name {1}.", +[controller:test-integration-envtest] "Parameters": [ +[controller:test-integration-envtest] "ServerFarm", +[controller:test-integration-envtest] "aso-sample-appservice" +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Innererror": null +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3542" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3543" generation=1 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ed1d82ac-f521-494e-a53b-5c80f73d4064?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Done with reconcile" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3540" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="applying ownership" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Owner does not yet exist" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3543" generation=1 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ed1d82ac-f521-494e-a53b-5c80f73d4064?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Set owner reference" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3546" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Done with reconcile" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="adding finalizer" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3543" generation=1 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ed1d82ac-f521-494e-a53b-5c80f73d4064?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3548" generation=1 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="applying ownership" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Resource successfully created/updated" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Got ARM status" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse\",\"kind\":\"StorageV2\",\"location\":\"eastus2\",\"name\":\"asotestsynapse\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"isHnsEnabled\":true,\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestsynapse.blob.core.windows.net/\",\"dfs\":\"https://asotestsynapse.dfs.core.windows.net/\",\"file\":\"https://asotestsynapse.file.core.windows.net/\",\"queue\":\"https://asotestsynapse.queue.core.windows.net/\",\"table\":\"https://asotestsynapse.table.core.windows.net/\",\"web\":\"https://asotestsynapse.z20.web.core.windows.net/\"},\"primaryLocation\":\"eastus2\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3553" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Encountered error, re-queuing..." name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Set owner reference" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Owner does not yet exist" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3557" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3553" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3554" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3556" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="adding finalizer" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3560" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Successfully created resource" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3550" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3562" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3566" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3570" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Resource creation/update failure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE UNAVAILABLE\n--------------------------------------------------------------------------------\n{\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\",\n \"Target\": null,\n \"Details\": [\n {\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n },\n {\n \"Code\": \"NotFound\"\n },\n {\n \"ErrorEntity\": {\n \"ExtendedCode\": \"51004\",\n \"MessageTemplate\": \"Cannot find {0} with name {1}.\",\n \"Parameters\": [\n \"ServerFarm\",\n \"aso-sample-appservice\"\n ],\n \"Code\": \"NotFound\",\n \"Message\": \"Cannot find ServerFarm with name aso-sample-appservice.\"\n }\n }\n ],\n \"Innererror\": null\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] SiteController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE UNAVAILABLE +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice.", +[controller:test-integration-envtest] "Target": null, +[controller:test-integration-envtest] "Details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "Code": "NotFound" +[controller:test-integration-envtest] }, +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "ErrorEntity": { +[controller:test-integration-envtest] "ExtendedCode": "51004", +[controller:test-integration-envtest] "MessageTemplate": "Cannot find {0} with name {1}.", +[controller:test-integration-envtest] "Parameters": [ +[controller:test-integration-envtest] "ServerFarm", +[controller:test-integration-envtest] "aso-sample-appservice" +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Code": "NotFound", +[controller:test-integration-envtest] "Message": "Cannot find ServerFarm with name aso-sample-appservice." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ], +[controller:test-integration-envtest] "Innererror": null +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Owner does not yet exist" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3567" generation=1 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"131324fd-f755-4ac2-a591-09020882ad09", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3575" generation=1 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Done with reconcile" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3571" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3576" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3578" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource not created yet, will check again" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Didn't commit obj as there was no change" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3553" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Encountered error, re-queuing..." name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3581" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3583" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3585" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3578" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3587" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3553" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"Cannot find ServerFarm with name aso-sample-appservice.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE UNAVAILABLE\\n--------------------------------------------------------------------------------\\n{\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\",\\n \\\"Target\\\": null,\\n \\\"Details\\\": [\\n {\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n },\\n {\\n \\\"Code\\\": \\\"NotFound\\\"\\n },\\n {\\n \\\"ErrorEntity\\\": {\\n \\\"ExtendedCode\\\": \\\"51004\\\",\\n \\\"MessageTemplate\\\": \\\"Cannot find {0} with name {1}.\\\",\\n \\\"Parameters\\\": [\\n \\\"ServerFarm\\\",\\n \\\"aso-sample-appservice\\\"\\n ],\\n \\\"Code\\\": \\\"NotFound\\\",\\n \\\"Message\\\": \\\"Cannot find ServerFarm with name aso-sample-appservice.\\\"\\n }\\n }\\n ],\\n \\\"Innererror\\\": null\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3585" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3587" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Determined CreateOrUpdate action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3588" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3525" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/de28437f-541b-461a-ba7c-51eedcec662a?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3578" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3591" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="About to send resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="updated resource in etcd" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3593" generation=1 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"131324fd-f755-4ac2-a591-09020882ad09", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/298169cf-28b9-4138-bcfc-46145e8efb44?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountController "msg"="Done with reconcile" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Successfully sent resource to Azure" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Determined CreateOrUpdate action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Resource successfully created/updated" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] ManagedClusterController "msg"="Resource successfully created/updated" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:33Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:33Z] SiteController "msg"="Got ARM status" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function\",\"kind\":\"app\",\"location\":\"West US\",\"name\":\"aso-sample-function\",\"properties\":{\"availabilityState\":\"Normal\",\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"containerSize\":0,\"customDomainVerificationId\":\"D75F6A26BF768430F1101BCA50DCDA98D6BC7038EE0BEC81098E0102BE82AD25\",\"dailyMemoryTimeQuota\":0,\"defaultHostName\":\"aso-sample-function.azurewebsites.net\",\"enabled\":true,\"enabledHostNames\":[\"aso-sample-function.azurewebsites.net\",\"aso-sample-function.scm.azurewebsites.net\"],\"hostNameSslStates\":[{\"hostType\":\"Standard\",\"name\":\"aso-sample-function.azurewebsites.net\",\"sslState\":\"Disabled\"},{\"hostType\":\"Repository\",\"name\":\"aso-sample-function.scm.azurewebsites.net\",\"sslState\":\"Disabled\"}],\"hostNames\":[\"aso-sample-function.azurewebsites.net\"],\"hostNamesDisabled\":false,\"httpsOnly\":false,\"hyperV\":false,\"isXenon\":false,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"lastModifiedTimeUtc\":\"2023-03-23T23:00:17.4566667\",\"outboundIpAddresses\":\"168.61.69.167,23.101.195.107,168.61.75.119,23.99.78.247,23.101.201.166,23.101.195.101,40.112.243.99\",\"possibleOutboundIpAddresses\":\"168.61.69.167,23.101.195.107,168.61.75.119,23.99.78.247,23.101.201.166,23.101.195.101,23.99.70.179,23.101.202.97,23.99.64.125,23.99.64.18,23.99.72.26,104.40.70.48,23.99.77.243,104.40.70.121,104.40.64.161,104.40.68.12,168.61.73.154,168.61.70.172,104.40.68.113,137.135.36.27,168.61.65.79,104.40.68.172,168.61.69.219,104.40.69.83,104.40.69.115,23.100.45.103,104.40.65.22,168.61.70.53,168.61.77.56,168.61.68.130,40.112.243.99\",\"redundancyMode\":\"None\",\"repositorySiteName\":\"aso-sample-function\",\"reserved\":false,\"resourceGroup\":\"asotest-rg-nbkbyh\",\"scmSiteAlsoStopped\":false,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice\",\"siteConfig\":{\"acrUseManagedIdentityCreds\":false,\"alwaysOn\":false,\"functionAppScaleLimit\":0,\"http20Enabled\":false,\"linuxFxVersion\":\"\",\"minimumElasticInstanceCount\":0,\"numberOfWorkers\":1},\"state\":\"Running\",\"storageAccountRequired\":false,\"usageState\":\"Normal\",\"vnetContentShareEnabled\":false,\"vnetImagePullEnabled\":false,\"vnetRouteAllEnabled\":false},\"type\":\"Microsoft.Web/sites\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3591" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClusterController "msg"="Got ARM status" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview\",\"identity\":{\"principalId\":\"1740bf33-4c14-4f07-bd09-86b0eb47dec1\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"samplemanagedcluster202221preview\",\"properties\":{\"agentPoolProfiles\":[{\"count\":1,\"currentOrchestratorVersion\":\"1.25.6\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"System\",\"name\":\"pool1\",\"nodeImageVersion\":\"AKSUbuntu-2204gen2containerd-202306.07.0\",\"orchestratorVersion\":\"1.25.6\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"}],\"azurePortalFQDN\":\"aso-ufm1ocgk.portal.hcp.westus3.azmk8s.io\",\"currentKubernetesVersion\":\"1.25.6\",\"dnsPrefix\":\"aso\",\"enableRBAC\":true,\"fqdn\":\"aso-ufm1ocgk.hcp.westus3.azmk8s.io\",\"identityProfile\":{\"kubeletidentity\":{\"clientId\":\"2d04d3f4-6c1b-4a73-b71a-6f5f64c3ef93\",\"objectId\":\"9ab8d040-026c-45ec-9d60-9a6f54a0eed2\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/MC_asotest-rg-dwrfmg_samplemanagedcluster202221preview_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/samplemanagedcluster202221preview-agentpool\"}},\"kubernetesVersion\":\"1.25.6\",\"maxAgentPools\":100,\"networkProfile\":{\"dnsServiceIP\":\"10.0.0.10\",\"dockerBridgeCidr\":\"172.17.0.1/16\",\"ipFamilies\":[\"IPv4\"],\"loadBalancerProfile\":{\"backendPoolType\":\"nodeIPConfiguration\",\"effectiveOutboundIPs\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MC_asotest-rg-dwrfmg_samplemanagedcluster202221preview_westus3/providers/Microsoft.Network/publicIPAddresses/61d8d715-930e-471c-84b9-98d3c2e623d6\"}],\"managedOutboundIPs\":{\"count\":1}},\"loadBalancerSku\":\"Standard\",\"networkPlugin\":\"kubenet\",\"outboundType\":\"loadBalancer\",\"podCidr\":\"10.244.0.0/16\",\"podCidrs\":[\"10.244.0.0/16\"],\"serviceCidr\":\"10.0.0.0/16\",\"serviceCidrs\":[\"10.0.0.0/16\"]},\"nodeResourceGroup\":\"MC_asotest-rg-dwrfmg_samplemanagedcluster202221preview_westus3\",\"oidcIssuerProfile\":{\"enabled\":false},\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"securityProfile\":{},\"servicePrincipalProfile\":{\"clientId\":\"msi\"},\"storageProfile\":{\"diskCSIDriver\":{\"enabled\":true,\"version\":\"v1\"},\"fileCSIDriver\":{\"enabled\":true},\"snapshotController\":{\"enabled\":true}},\"workloadAutoScalerProfile\":{}},\"sku\":{\"name\":\"Base\",\"tier\":\"Free\"},\"type\":\"Microsoft.ContainerService/ManagedClusters\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClusterController "msg"="Getting Kubernetes resources for export" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClusterController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClusterController "msg"="Successfully retrieved Kubernetes resources for export" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3595" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Owner exists but is not ready. Current condition" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Owner exists but is not ready. Current condition" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" cannot be found. Progress is blocked until the owner is created." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3593" generation=1 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"131324fd-f755-4ac2-a591-09020882ad09", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/298169cf-28b9-4138-bcfc-46145e8efb44?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Done with reconcile" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Owner does not yet exist" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" NamespacedName="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3578" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/c1a17195-398e-42ea-9c7b-86a59ec30d88?monitor=true\\u0026api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Got ARM status" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"asotestmmvput\",\"properties\":{\"accessTier\":\"Hot\",\"allowBlobPublicAccess\":true,\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"minimumTlsVersion\":\"TLS1_0\",\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestmmvput.blob.core.windows.net/\",\"dfs\":\"https://asotestmmvput.dfs.core.windows.net/\",\"file\":\"https://asotestmmvput.file.core.windows.net/\",\"queue\":\"https://asotestmmvput.queue.core.windows.net/\",\"table\":\"https://asotestmmvput.table.core.windows.net/\",\"web\":\"https://asotestmmvput.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3585" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3593" generation=1 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"131324fd-f755-4ac2-a591-09020882ad09", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/298169cf-28b9-4138-bcfc-46145e8efb44?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3585" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Encountered error, re-queuing..." name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3600" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="applying ownership" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3604" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] SiteController "msg"="updated resource in etcd" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3602" generation=1 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] SiteController "msg"="Done with reconcile" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Got ARM status" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"asotestblzyzn\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestblzyzn.blob.core.windows.net/\",\"dfs\":\"https://asotestblzyzn.dfs.core.windows.net/\",\"file\":\"https://asotestblzyzn.file.core.windows.net/\",\"queue\":\"https://asotestblzyzn.queue.core.windows.net/\",\"table\":\"https://asotestblzyzn.table.core.windows.net/\",\"web\":\"https://asotestblzyzn.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" ResourcesToWrite=1 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3587" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3591" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Encountered error, re-queuing..." name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Set owner reference" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3508" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="applying ownership" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3502" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="applying ownership" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Successfully created resource" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3591" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3604" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3587" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClusterController "msg"="updated resource in etcd" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3609" generation=1 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClusterController "msg"="Done with reconcile" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Set owner reference" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3585" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="adding finalizer" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Set owner reference" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" ownerGvk="containerservice.azure.com/v1api20230201storage, Kind=ManagedCluster" ownerName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3585" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3591" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3574" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3587" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="adding finalizer" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3591" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="updated resource in etcd" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3617" generation=1 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Done with reconcile" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="updated resource in etcd" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3618" generation=1 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"131324fd-f755-4ac2-a591-09020882ad09", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountController "msg"="Done with reconcile" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3587" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Encountered error, re-queuing..." name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="updated resource in etcd" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3615" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3604" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3619" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="adding finalizer" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3561" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="applying ownership" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3580" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3604" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Encountered error, re-queuing..." name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Set owner reference" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3622" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Set owner reference" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3569" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="applying ownership" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Refreshing Status of resource" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Set owner reference" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="adding finalizer" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Set owner reference" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check running" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Extension pre-reconcile check succeeded" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" Result=extensions.PreReconcileCheckResult{action:"Proceed", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="adding finalizer" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3625" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Determined CreateOrUpdate action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="About to send resource to Azure" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Successfully sent resource to Azure" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="adding finalizer" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="adding finalizer" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3630" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="updated resource in etcd" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="About to send resource to Azure" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Successfully sent resource to Azure" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3635" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3634" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3632" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Determined CreateOrUpdate action" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3639" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3641" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Determined CreateOrUpdate action" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3648" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb?api-version=2023-02-02-preview\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Done with reconcile" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"allowPermanentDelete\":false,\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3640" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3644" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="About to send resource to Azure" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Determined CreateOrUpdate action" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Successfully sent resource to Azure" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Resource successfully created/updated" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServiceController "msg"="Got ARM status" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"protocolSettings\":{\"smb\":{}},\"shareDeleteRetentionPolicy\":{\"days\":7,\"enabled\":true}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/fileServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="About to send resource to Azure" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Successfully sent resource to Azure" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Resource successfully created/updated" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Got ARM status" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default\",\"name\":\"DefaultManagementPolicy\",\"properties\":{\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"policy\":{\"rules\":[{\"definition\":{\"actions\":{\"version\":{\"delete\":{\"daysAfterCreationGreaterThan\":30}}},\"filters\":{\"blobIndexMatch\":null,\"blobTypes\":[\"blockBlob\"],\"prefixMatch\":[\"sample-container/blob1\"]}},\"enabled\":true,\"name\":\"test-rule\",\"type\":\"Lifecycle\"}]}},\"type\":\"Microsoft.Storage/storageAccounts/managementPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Determined CreateOrUpdate action" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3648" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb?api-version=2023-02-02-preview\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3552" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3650" generation=1 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="About to send resource to Azure" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Determined CreateOrUpdate action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Resource not created yet, will check again" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Didn't commit obj as there was no change" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Done with reconcile" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Successfully sent resource to Azure" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Resource successfully created/updated" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServiceController "msg"="Got ARM status" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/tableServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:48:34 http: TLS handshake error from 127.0.0.1:45084: read tcp 127.0.0.1:33201->127.0.0.1:45084: read: connection reset by peer +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] 2023/09/08 21:48:34 http: TLS handshake error from 127.0.0.1:45080: EOF +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] 2023/09/08 21:48:34 http: TLS handshake error from 127.0.0.1:45090: EOF +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3648" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb?api-version=2023-02-02-preview\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="About to send resource to Azure" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3594" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3516" generation=2 uid="e13a7850-9a86-4c66-87dd-dcbd51ee9059" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTVFVUUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Successfully sent resource to Azure" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Resource successfully created/updated" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsManagementPolicyController "msg"="Got ARM status" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default\",\"name\":\"DefaultManagementPolicy\",\"properties\":{\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"policy\":{\"rules\":[{\"definition\":{\"actions\":{\"version\":{\"delete\":{\"daysAfterCreationGreaterThan\":30}}},\"filters\":{\"blobIndexMatch\":null,\"blobTypes\":[\"blockBlob\"],\"prefixMatch\":[\"sample-container/blob1\"]}},\"enabled\":true,\"name\":\"test-rule\",\"type\":\"Lifecycle\"}]}},\"type\":\"Microsoft.Storage/storageAccounts/managementPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="asotestjbmdmi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3652" generation=1 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Owner exists but is not ready. Current condition" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:34Z] StorageAccountsFileServicesShareController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" cannot be found. Progress is blocked until the owner is created." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="asotest-rg-stutqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Determined CreateOrUpdate action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Resource successfully created/updated" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] TrustedAccessRoleBindingController "msg"="Got ARM status" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb\",\"name\":\"sample-tarb\",\"properties\":{\"provisioningState\":\"Succeeded\",\"roles\":[\"Microsoft.MachineLearningServices/workspaces/mlworkload\"],\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces\"},\"type\":\"Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3655" generation=1 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:34Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3658" generation=1 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3656" generation=1 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsManagementPolicyController "msg"="Done with reconcile" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServiceController "msg"="updated resource in etcd" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3657" generation=1 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServiceController "msg"="Done with reconcile" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Owner exists but is not ready. Current condition" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestmmvput, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" cannot be found. Progress is blocked until the owner is created." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="asotestpgmhsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-f947f/asotest-rg-stutqa aso-test-samples-creationanddeletion-test-containerservic-f947f/samplemanagedcluster aso-test-samples-creationanddeletion-test-containerservic-f947f/pool2]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-f947f/asotest-rg-stutqa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-stutqa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-f947f/asotest-rg-stutqa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e13a7850-9a86-4c66-87dd-dcbd51ee9059, UID in object meta: " name="asotest-rg-stutqa" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Encountered error, re-queuing..." name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3663" generation=1 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsManagementPolicyController "msg"="Done with reconcile" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServiceController "msg"="updated resource in etcd" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3661" generation=1 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServiceController "msg"="Done with reconcile" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3579" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3582" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3597" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="applying ownership" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="asotestopigox" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="asotestylxvbt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Encountered error, re-queuing..." name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] TrustedAccessRoleBindingController "msg"="updated resource in etcd" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3668" generation=1 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] TrustedAccessRoleBindingController "msg"="Done with reconcile" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3584" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="applying ownership" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3667" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestjbmdmi", UID:"5c921251-0135-4536-b8ef-5c1d38e18e11", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Set owner reference" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsFileService" ownerName="asotestnxfkke" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Resource not created yet, will check again" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Didn't commit obj as there was no change" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3670" generation=2 uid="41b74dbb-d81b-45a0-a95e-ecfb510f76ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-stutqa", UID:"e13a7850-9a86-4c66-87dd-dcbd51ee9059", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-stutqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="samplemanagedcluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Set owner reference" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsTableService" ownerName="asotesthvaekw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3671" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"f5f17323-a791-4bc7-9b39-1852c21bd83e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3631" generation=2 uid="98af8a46-976e-425f-b2be-0f64cb571967" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:34 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROQktCWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3642" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/westus3/operations/7bd51f6b-673e-41c2-b174-447fccc5dab1?api-version=2016-03-30\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p?api-version=2023-02-02-preview\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="adding finalizer" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Determined CreateOrUpdate action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Resource successfully created/updated" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Got ARM status" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p\",\"name\":\"pool202221p\",\"properties\":{\"count\":1,\"currentOrchestratorVersion\":\"1.25.6\",\"enableFIPS\":false,\"kubeletDiskType\":\"OS\",\"maxPods\":110,\"mode\":\"User\",\"nodeImageVersion\":\"AKSUbuntu-2204gen2containerd-202306.07.0\",\"orchestratorVersion\":\"1.25.6\",\"osDiskSizeGB\":128,\"osDiskType\":\"Managed\",\"osSKU\":\"Ubuntu\",\"osType\":\"Linux\",\"powerState\":{\"code\":\"Running\"},\"provisioningState\":\"Succeeded\",\"scaleDownMode\":\"Delete\",\"type\":\"VirtualMachineScaleSets\",\"vmSize\":\"Standard_DS2_v2\"},\"type\":\"Microsoft.ContainerService/managedClusters/agentPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="asotest-rg-nbkbyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="adding finalizer" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx\",\"name\":\"asotestslhjsx\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3637" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/4f247584-e574-44f9-8933-3346554eeec8?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3676" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"a139426b-aa36-4ea3-a6d6-d1e91aee8464", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Got ARM status" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy\",\"identity\":{\"principalId\":\"62b0c1a9-df5f-4d68-979e-55340e4a80b5\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"eastus2\",\"name\":\"asotestxnnivy\",\"properties\":{\"connectivityEndpoints\":{\"dev\":\"https://asotestxnnivy.dev.azuresynapse.net\",\"sql\":\"asotestxnnivy.sql.azuresynapse.net\",\"sqlOnDemand\":\"asotestxnnivy-ondemand.sql.azuresynapse.net\",\"web\":\"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f00000000-0000-0000-0000-000000000000%2fresourceGroups%2fasotest-rg-nxirwm%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fasotestxnnivy\"},\"cspWorkspaceAdminProperties\":{\"initialWorkspaceAdminObjectId\":\"bc852d4f-af2c-4d40-a567-42ab19a57e30\"},\"defaultDataLakeStorage\":{\"accountUrl\":\"https://asotestsynapse.dfs.core.windows.net/\",\"createManagedPrivateEndpoint\":false,\"filesystem\":\"default\"},\"encryption\":{\"doubleEncryptionEnabled\":false},\"extraProperties\":{\"IsScopeEnabled\":false,\"WorkspaceType\":\"Normal\"},\"managedResourceGroupName\":\"synapseworkspace-managedrg-c6bc0f14-67aa-48e6-b464-b4d4fccc8d33\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"sqlAdministratorLogin\":\"sqladminuser\",\"trustedServiceBypassEnabled\":false,\"workspaceUID\":\"c775cc49-6067-4ec6-ac0a-c87aa5a0d3de\"},\"type\":\"Microsoft.Synapse/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-f947f/samplemanagedcluster resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-f947f/samplemanagedcluster, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 41b74dbb-d81b-45a0-a95e-ecfb510f76ae, UID in object meta: " name="samplemanagedcluster" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3677" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestopigox", UID:"62039a6b-c95e-4fd7-8696-75d2484f8812", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/asotest-rg-nbkbyh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-nbkbyh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/asotest-rg-nbkbyh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 98af8a46-976e-425f-b2be-0f64cb571967, UID in object meta: " name="asotest-rg-nbkbyh" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3685" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsTableService", Name:"asotesthvaekw", UID:"ce701a58-5ae3-4c21-bb2a-76c806cc1016", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3690" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"f5f17323-a791-4bc7-9b39-1852c21bd83e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/asotest-rg-nbkbyh aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-appservice aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-function]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3691" generation=1 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestjbmdmi", UID:"5c921251-0135-4536-b8ef-5c1d38e18e11", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Determined CreateOrUpdate action" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3681" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"3875fe65-2b0a-473a-a472-afaeb92f8e4f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="updated resource in etcd" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3688" generation=1 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Done with reconcile" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Determined CreateOrUpdate action" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3521" generation=2 uid="b92f2d4e-eb3e-402f-90e1-64031930141c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:33 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFWVNCU1ktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3690" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"f5f17323-a791-4bc7-9b39-1852c21bd83e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu\",\"name\":\"asotesthgxjwu\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" status="{\"etag\":\"\\\"0x8DB6875EF481FBA\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob\",\"name\":\"asotestvmcyob\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="asotest-rg-eysbsy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="About to send resource to Azure" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Successfully sent resource to Azure" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Resource successfully created/updated" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Got ARM status" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey\",\"name\":\"asotesthazyey\",\"properties\":{\"signedIdentifiers\":[],\"tableName\":\"asotesthazyey\"},\"type\":\"Microsoft.Storage/storageAccounts/tableServices/tables\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="About to send resource to Azure" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Successfully sent resource to Azure" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="updated resource in etcd" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3699" generation=1 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspaceController "msg"="Done with reconcile" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3696" generation=2 uid="69b93720-6a29-44a6-8fec-09994bb6ca70" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster", UID:"41b74dbb-d81b-45a0-a95e-ecfb510f76ae", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-stutqa/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster/agentPools/pool2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ServerFarmController "msg"="Reconcile invoked" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:ServerFarm,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3698" generation=2 uid="96906a4e-db50-445a-ae8a-2d758e414b41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/serverfarms/aso-sample-appservice"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-5bf2e/asotest-rg-eysbsy resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-eysbsy": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-5bf2e/asotest-rg-eysbsy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b92f2d4e-eb3e-402f-90e1-64031930141c, UID in object meta: " name="asotest-rg-eysbsy" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3704" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:30 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3707" generation=1 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestopigox", UID:"62039a6b-c95e-4fd7-8696-75d2484f8812", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-5bf2e/asotest-rg-eysbsy aso-test-samples-creationanddeletion-test-containerservic-5bf2e/samplemanagedcluster202221 aso-test-samples-creationanddeletion-test-containerservic-5bf2e/pool202221]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ServerFarmController "msg"="Determined Delete action" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ServerFarmController "msg"="Starting delete of resource" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ServerFarmController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-appservice" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ServerFarmController "msg"="Delete succeeded, removing finalizer" name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" azureName="pool2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Encountered error, re-queuing..." name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3608" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="applying ownership" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3710" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"a139426b-aa36-4ea3-a6d6-d1e91aee8464", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="updated resource in etcd" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3713" generation=1 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsTableService", Name:"asotesthvaekw", UID:"ce701a58-5ae3-4c21-bb2a-76c806cc1016", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsTableServicesTableController "msg"="Done with reconcile" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3712" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"3875fe65-2b0a-473a-a472-afaeb92f8e4f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3714" generation=1 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"f5f17323-a791-4bc7-9b39-1852c21bd83e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Done with reconcile" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] SiteController "msg"="Reconcile invoked" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" kind="&TypeMeta{Kind:Site,APIVersion:web.azure.com/v1api20220301storage,}" resourceVersion="3708" generation=2 uid="d08d6c98-b1e3-4b91-9215-75c67756c847" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nbkbyh", UID:"98af8a46-976e-425f-b2be-0f64cb571967", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nbkbyh/providers/Microsoft.Web/sites/aso-sample-function"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-nbkbyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] SiteController "msg"="Determined Delete action" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] SiteController "msg"="Starting delete of resource" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] SiteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" azureName="aso-sample-function" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] SiteController "msg"="Delete succeeded, removing finalizer" name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3710" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"a139426b-aa36-4ea3-a6d6-d1e91aee8464", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Set owner reference" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" ownerGvk="synapse.azure.com/v1api20210601storage, Kind=Workspace" ownerName="asotestxnnivy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3712" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"3875fe65-2b0a-473a-a472-afaeb92f8e4f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf?api-version=2022-09-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" status="{\"etag\":\"\\\"0x8DB6BCE809A6D20\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap\",\"name\":\"asotestxveiap\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Determined CreateOrUpdate action" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Resource successfully created/updated" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Got ARM status" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" status="{\"etag\":\"\\\"0x8DB6875EF474EF9\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf\",\"name\":\"asotesteasidf\",\"properties\":{\"accessTier\":\"TransactionOptimized\",\"accessTierChangeTime\":\"2001-02-03T04:05:06Z\",\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"available\",\"leaseStatus\":\"unlocked\",\"metadata\":null,\"shareQuota\":5120,\"signedIdentifiers\":[]},\"type\":\"Microsoft.Storage/storageAccounts/fileServices/shares\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-f947f/pool2 resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool2": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-f947f/pool2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 69b93720-6a29-44a6-8fec-09994bb6ca70, UID in object meta: " name="pool2" namespace="aso-test-samples-creationanddeletion-test-containerservic-f947f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ServerFarmController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-appservice resource status: Operation cannot be fulfilled on serverfarms.web.azure.com "aso-sample-appservice": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/serverfarms/aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-appservice, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 96906a4e-db50-445a-ae8a-2d758e414b41, UID in object meta: " name="aso-sample-appservice" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="adding finalizer" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3727" generation=1 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"a139426b-aa36-4ea3-a6d6-d1e91aee8464", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] SiteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-function resource status: Operation cannot be fulfilled on sites.web.azure.com "aso-sample-function": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/sites/aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38/aso-sample-function, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d08d6c98-b1e3-4b91-9215-75c67756c847, UID in object meta: " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1api-creat-98d38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3723" generation=2 uid="d3044036-62ed-4ce2-b3db-465ac0824144" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-eysbsy", UID:"b92f2d4e-eb3e-402f-90e1-64031930141c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-eysbsy, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="samplemanagedcluster202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="updated resource in etcd" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3730" generation=1 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"3875fe65-2b0a-473a-a472-afaeb92f8e4f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] StorageAccountsFileServicesShareController "msg"="Done with reconcile" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3729" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"12005ce3-7733-48e2-bd71-e976acad7858", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxnnivy, Group/Kind: synapse.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Determined CreateOrUpdate action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="About to send resource to Azure" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Successfully sent resource to Azure" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-5bf2e/samplemanagedcluster202221 resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster202221": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-5bf2e/samplemanagedcluster202221, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d3044036-62ed-4ce2-b3db-465ac0824144, UID in object meta: " name="samplemanagedcluster202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3735" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3738" generation=2 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3740" generation=1 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3745" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"12005ce3-7733-48e2-bd71-e976acad7858", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationResults/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Done with reconcile" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3747" generation=1 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3745" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"12005ce3-7733-48e2-bd71-e976acad7858", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationResults/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Determined CreateOrUpdate action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Resource not created yet, will check again" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Didn't commit obj as there was no change" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Done with reconcile" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo\",\"location\":\"westus2\",\"name\":\"asotest-rg-upywuo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3753" generation=2 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3755" generation=2 uid="e8a39990-3b83-4b8b-bcee-9fb46c4e3109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221", UID:"d3044036-62ed-4ce2-b3db-465ac0824144", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-eysbsy/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221/agentPools/pool202221"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="samplemanagedcluster202221, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3745" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"12005ce3-7733-48e2-bd71-e976acad7858", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationStatuses/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/operationResults/7279bb3b-d72a-4703-810f-14f6b41ec552?api-version=2021-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" azureName="pool202221" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Determined CreateOrUpdate action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Resource successfully created/updated" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Got ARM status" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo\",\"location\":\"eastus2\",\"name\":\"asotesttgzolo\",\"properties\":{\"autoPause\":{\"delayInMinutes\":0,\"enabled\":false},\"autoScale\":{\"enabled\":false,\"maxNodeCount\":0,\"minNodeCount\":0},\"cacheSize\":50,\"creationDate\":\"2001-02-03T04:05:06Z\",\"dynamicExecutorAllocation\":{\"enabled\":false},\"isAutotuneEnabled\":false,\"isComputeIsolationEnabled\":false,\"lastSucceededTimestamp\":\"2001-02-03T04:05:06Z\",\"nodeCount\":4,\"nodeSize\":\"Medium\",\"nodeSizeFamily\":\"MemoryOptimized\",\"provisioningState\":\"Succeeded\",\"sessionLevelPackagesEnabled\":false,\"sparkVersion\":\"3.3\"},\"type\":\"Microsoft.Synapse/workspaces/bigDataPools\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3753" generation=2 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3760" generation=1 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3759" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3753" generation=2 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3759" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3753" generation=2 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3759" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3753" generation=2 uid="e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFQ1lMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="updated resource in etcd" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3769" generation=1 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"12005ce3-7733-48e2-bd71-e976acad7858", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] WorkspacesBigDataPoolController "msg"="Done with reconcile" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3770" generation=1 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotest-rg-ecylaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:35Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3759" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3772" generation=1 uid="3a774c0d-2024-4c12-9cc4-c04875fc02e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="applying ownership" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Set owner reference" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotest-rg-ecylaa aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestmmvput aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthgxjwu aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestopigox aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthazyey aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestpgmhsz aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestvmcyob aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesteasidf aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestjdkkus]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3759" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotest-rg-ecylaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ecylaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotest-rg-ecylaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a, UID in object meta: " name="asotest-rg-ecylaa" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3776" generation=1 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3778" generation=1 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz\",\"location\":\"westus2\",\"name\":\"asotest-rg-gcupsz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3780" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="adding finalizer" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3759" generation=2 uid="131324fd-f755-4ac2-a591-09020882ad09" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMTkFTVUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotest-rg-lnasua" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3784" generation=1 uid="3a774c0d-2024-4c12-9cc4-c04875fc02e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"e51b86be-4b1f-4b15-aea8-6516aff08c25", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3783" generation=1 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3782" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3789" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3791" generation=1 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Reconcile invoked" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3788" generation=2 uid="670ed80e-5723-47b1-87b3-78587226fdbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ecylaa", UID:"e5b6c038-5b11-49d6-ba6c-31fc4f65cc9a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-ecylaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Determined Delete action" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Starting delete of resource" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestmmvput" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3789" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-shblaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotest-rg-lnasua resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-lnasua": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotest-rg-lnasua, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 131324fd-f755-4ac2-a591-09020882ad09, UID in object meta: " name="asotest-rg-lnasua" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotest-rg-lnasua aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestslhjsx aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestblzyzn aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestylxvbt aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestxveiap aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestgtjgae aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3797" generation=1 uid="b3f828c3-ccdc-495b-831e-c100c46eeb43" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="applying ownership" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestmmvput resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestmmvput": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestmmvput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 670ed80e-5723-47b1-87b3-78587226fdbd, UID in object meta: " name="asotestmmvput" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3802" generation=1 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Set owner reference" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3789" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3803" generation=1 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="adding finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3789" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Reconcile invoked" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3805" generation=2 uid="5018b6a5-2167-43ae-984d-e21f10a168b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lnasua", UID:"131324fd-f755-4ac2-a591-09020882ad09", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-lnasua, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Determined Delete action" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Starting delete of resource" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3807" generation=1 uid="3a774c0d-2024-4c12-9cc4-c04875fc02e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"e51b86be-4b1f-4b15-aea8-6516aff08c25", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestblzyzn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3809" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3807" generation=1 uid="3a774c0d-2024-4c12-9cc4-c04875fc02e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"e51b86be-4b1f-4b15-aea8-6516aff08c25", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Got ARM status" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd\",\"location\":\"westcentralus\",\"name\":\"asotestxkvmrd\",\"properties\":{\"clientId\":\"815d55c5-8aeb-40cc-9060-d6924e260e3f\",\"principalId\":\"7cb755f0-11f4-4637-a460-dff0590e5e02\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3812" generation=1 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestblzyzn resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestblzyzn": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestblzyzn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5018b6a5-2167-43ae-984d-e21f10a168b9, UID in object meta: " name="asotestblzyzn" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsFileServiceController "msg"="Reconcile invoked" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3817" generation=2 uid="3875fe65-2b0a-473a-a472-afaeb92f8e4f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsFileServiceController "msg"="Determined Delete action" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsFileServiceController "msg"="Starting delete of resource" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsFileServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsFileServiceController "msg"="Delete succeeded, removing finalizer" name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3811" generation=1 uid="b3f828c3-ccdc-495b-831e-c100c46eeb43" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="About to send resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3823" generation=1 uid="3a774c0d-2024-4c12-9cc4-c04875fc02e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"e51b86be-4b1f-4b15-aea8-6516aff08c25", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] UserAssignedIdentityController "msg"="Done with reconcile" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3789" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsTableServiceController "msg"="Reconcile invoked" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3824" generation=2 uid="ce701a58-5ae3-4c21-bb2a-76c806cc1016" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] StorageAccountsFileServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke resource status: Operation cannot be fulfilled on storageaccountsfileservices.storage.azure.com "asotestnxfkke": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsfileservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestnxfkke, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3875fe65-2b0a-473a-a472-afaeb92f8e4f, UID in object meta: " name="asotestnxfkke" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3826" generation=1 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PrivateDnsZoneController "msg"="applying ownership" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsTableServiceController "msg"="Determined Delete action" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsTableServiceController "msg"="Starting delete of resource" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsTableServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsTableServiceController "msg"="Delete succeeded, removing finalizer" name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3789" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="Set owner reference" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" ownerGvk="managedidentity.azure.com/v1api20181130storage, Kind=UserAssignedIdentity" ownerName="asotestxkvmrd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3831" generation=1 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/782e48e7-83e4-4a11-804d-ec70ea3cb5f8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PrivateDnsZoneController "msg"="Set owner reference" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3833" generation=1 uid="b3f828c3-ccdc-495b-831e-c100c46eeb43" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/da76a510-98b8-47ad-bef6-574aa4f7bc2c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3832" generation=2 uid="62039a6b-c95e-4fd7-8696-75d2484f8812" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3831" generation=1 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/782e48e7-83e4-4a11-804d-ec70ea3cb5f8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3830" generation=2 uid="a139426b-aa36-4ea3-a6d6-d1e91aee8464" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3833" generation=1 uid="b3f828c3-ccdc-495b-831e-c100c46eeb43" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/da76a510-98b8-47ad-bef6-574aa4f7bc2c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] StorageAccountsTableServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw resource status: Operation cannot be fulfilled on storageaccountstableservices.storage.azure.com "asotesthvaekw": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountstableservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthvaekw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ce701a58-5ae3-4c21-bb2a-76c806cc1016, UID in object meta: " name="asotesthvaekw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:36Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PublicIPAddressController "msg"="Got ARM status" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" status="{\"etag\":\"W/\\\"c63d54b5-95f2-45fc-a5fc-3ac091fa6420\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\",\"location\":\"westcentralus\",\"name\":\"gatewaypublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.168.177.175\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"c2d536f1-7281-47fb-9236-49d6e223206a\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] FederatedIdentityCredentialController "msg"="adding finalizer" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] PrivateDnsZoneController "msg"="adding finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:36Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3831" generation=1 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/782e48e7-83e4-4a11-804d-ec70ea3cb5f8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" status="{\"etag\":\"W/\\\"65731d0b-2366-4190-9cb1-4e6a21004c10\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2\",\"location\":\"westcentralus\",\"name\":\"samplevnet2\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"01759b58-a5f6-4514-85b6-ed25f23575d9\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestylxvbt resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "asotestylxvbt": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestylxvbt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a139426b-aa36-4ea3-a6d6-d1e91aee8464, UID in object meta: " name="asotestylxvbt" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3837" generation=2 uid="86196700-ed35-42ae-b46a-7fd7d576d592" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3800" generation=2 uid="9612d57d-c622-4446-8030-af37476937a7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkROWElSV00tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestopigox resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "asotestopigox": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestopigox, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 62039a6b-c95e-4fd7-8696-75d2484f8812, UID in object meta: " name="asotestopigox" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Determined Delete action" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Starting delete of resource" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3840" generation=1 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"76c98081-25b6-4592-ac79-0a06d8479d30", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3846" generation=1 uid="b3f828c3-ccdc-495b-831e-c100c46eeb43" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotest-rg-nxirwm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3844" generation=2 uid="f5f17323-a791-4bc7-9b39-1852c21bd83e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:36 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3841" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3a774c0d-2024-4c12-9cc4-c04875fc02e3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3852" generation=1 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3847" generation=2 uid="5c921251-0135-4536-b8ef-5c1d38e18e11" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestblzyzn", UID:"5018b6a5-2167-43ae-984d-e21f10a168b9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestblzyzn, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3851" generation=2 uid="b8292356-0cd3-4c90-9ab7-68b53f648c6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestmmvput", UID:"670ed80e-5723-47b1-87b3-78587226fdbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotestmmvput, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Resource creation/update failure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestgtjgae resource status: Operation cannot be fulfilled on storageaccountsmanagementpolicies.storage.azure.com "asotestgtjgae": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsmanagementpolicies/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestgtjgae, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 86196700-ed35-42ae-b46a-7fd7d576d592, UID in object meta: " name="asotestgtjgae" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotest-rg-nxirwm aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asosynapsestorage aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotesttgzolo aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Determined Delete action" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Starting delete of resource" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestpgmhsz resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "asotestpgmhsz": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestpgmhsz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f5f17323-a791-4bc7-9b39-1852c21bd83e, UID in object meta: " name="asotestpgmhsz" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3820" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotest-rg-nxirwm resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-nxirwm": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotest-rg-nxirwm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9612d57d-c622-4446-8030-af37476937a7, UID in object meta: " name="asotest-rg-nxirwm" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3863" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3a774c0d-2024-4c12-9cc4-c04875fc02e3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "asotestjbmdmi": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestjbmdmi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5c921251-0135-4536-b8ef-5c1d38e18e11, UID in object meta: " name="asotestjbmdmi" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3862" generation=1 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"76c98081-25b6-4592-ac79-0a06d8479d30", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3722" generation=2 uid="0c58ec4e-5bc8-4b37-9312-29a628c3314f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:29 +0000 UTC" deletionTimestamp="2023-09-08 21:48:35 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREV1JGTUctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3863" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3a774c0d-2024-4c12-9cc4-c04875fc02e3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asotest-rg-dwrfmg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3862" generation=1 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"76c98081-25b6-4592-ac79-0a06d8479d30", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsManagementPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestjdkkus resource status: Operation cannot be fulfilled on storageaccountsmanagementpolicies.storage.azure.com "asotestjdkkus": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsmanagementpolicies/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestjdkkus, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b8292356-0cd3-4c90-9ab7-68b53f648c6b, UID in object meta: " name="asotestjdkkus" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Resource not created yet, will check again" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Didn't commit obj as there was no change" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountController "msg"="Reconcile invoked" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3868" generation=2 uid="67dc73f4-7f7e-4f96-a0b4-d5c037da4e98" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Storage/storageAccounts/asotestsynapse"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:33 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3862" generation=1 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"76c98081-25b6-4592-ac79-0a06d8479d30", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTs0OTQ2ZTkyMS0wNjE5LTRiYzctOGIwNi1kNGJlMzE3NTE3MmFfODJhY2Q1YmItNDIwNi00N2Q0LTljMTItYTY1ZGIwMjg0ODNk?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountController "msg"="Determined Delete action" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountController "msg"="Starting delete of resource" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestsynapse" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Successfully sent resource to Azure" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Resource successfully created/updated" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Got ARM status" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl\",\"name\":\"asotestklmddl\",\"properties\":{\"audiences\":[\"api://AzureADTokenExchange\"],\"issuer\":\"https://oidc.prod-aks.azure.com/00000000-0000-0000-0000-00000000000/\",\"subject\":\"system:serviceaccount:default:default\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3867" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"16e6be88-3e9c-4900-a571-ef0a5a49791a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Got ARM status" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" status="{\"etag\":\"f4ce2311-aa6e-450e-aed2-e8f6b04d78ad\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com\",\"location\":\"global\",\"name\":\"aso-sample-pdz.com\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3870" generation=2 uid="1618b672-56b0-4bf7-8122-2de2dac848c6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestylxvbt", UID:"a139426b-aa36-4ea3-a6d6-d1e91aee8464", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/blobServices/default/containers/asotestxveiap"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestylxvbt, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/asotest-rg-dwrfmg resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-dwrfmg": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-0d27c/asotest-rg-dwrfmg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0c58ec4e-5bc8-4b37-9312-29a628c3314f, UID in object meta: " name="asotest-rg-dwrfmg" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestxveiap" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-0d27c/asotest-rg-dwrfmg aso-test-samples-creationanddeletion-test-containerservic-0d27c/asoworkspacestorageacct aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault aso-test-samples-creationanddeletion-test-containerservic-0d27c/sampleworkspaces aso-test-samples-creationanddeletion-test-containerservic-0d27c/samplemanagedcluster202221preview aso-test-samples-creationanddeletion-test-containerservic-0d27c/pool202221p aso-test-samples-creationanddeletion-test-containerservic-0d27c/sample-tarb]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3873" generation=2 uid="340010b9-ef7d-47c9-901d-017212266f8a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestjbmdmi", UID:"5c921251-0135-4536-b8ef-5c1d38e18e11", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lnasua/providers/Microsoft.Storage/storageAccounts/asotestblzyzn/queueServices/default/queues/asotestslhjsx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestjbmdmi, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] WorkspaceController "msg"="Reconcile invoked" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:Workspace,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3875" generation=2 uid="12005ce3-7733-48e2-bd71-e976acad7858" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-nxirwm", UID:"9612d57d-c622-4446-8030-af37476937a7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotest-rg-nxirwm, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" azureName="asotestslhjsx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3880" generation=1 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3a774c0d-2024-4c12-9cc4-c04875fc02e3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] FederatedIdentityCredentialController "msg"="Done with reconcile" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] WorkspaceController "msg"="Determined Delete action" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] WorkspaceController "msg"="Starting delete of resource" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotestxnnivy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsFileServicesShareController "msg"="Reconcile invoked" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsFileServicesShare,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3878" generation=2 uid="c2ec316c-3e56-4509-b6a5-d6f941bc9a7d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsFileService", Name:"asotestnxfkke", UID:"3875fe65-2b0a-473a-a472-afaeb92f8e4f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/fileServices/default/shares/asotesteasidf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestnxfkke, Group/Kind: storage.azure.com/StorageAccountsFileService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asosynapsestorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asosynapsestorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asosynapsestorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 67dc73f4-7f7e-4f96-a0b4-d5c037da4e98, UID in object meta: " name="asosynapsestorage" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3885" generation=1 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"76c98081-25b6-4592-ac79-0a06d8479d30", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsFileServicesShareController "msg"="Determined Delete action" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsFileServicesShareController "msg"="Starting delete of resource" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsFileServicesShareController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesteasidf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsFileServicesShareController "msg"="Delete succeeded, removing finalizer" name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestslhjsx resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "asotestslhjsx": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestslhjsx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 340010b9-ef7d-47c9-901d-017212266f8a, UID in object meta: " name="asotestslhjsx" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3888" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"16e6be88-3e9c-4900-a571-ef0a5a49791a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d5e81220-e0bd-4cea-b540-004f326f7c30?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsTableServicesTableController "msg"="Reconcile invoked" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsTableServicesTable,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3887" generation=2 uid="45b180dc-7146-4215-8c24-2d9dec5af39e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsTableService", Name:"asotesthvaekw", UID:"ce701a58-5ae3-4c21-bb2a-76c806cc1016", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/tableServices/default/tables/asotesthazyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotesthvaekw, Group/Kind: storage.azure.com/StorageAccountsTableService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsTableServicesTableController "msg"="Determined Delete action" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsTableServicesTableController "msg"="Starting delete of resource" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3888" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"16e6be88-3e9c-4900-a571-ef0a5a49791a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d5e81220-e0bd-4cea-b540-004f326f7c30?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsTableServicesTableController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthazyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] StorageAccountsTableServicesTableController "msg"="Delete succeeded, removing finalizer" name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3894" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" status="{\"etag\":\"W/\\\"d1e536a6-08d6-49a3-a0aa-09e404fed34c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\",\"name\":\"gatewaysubnet\",\"properties\":{\"addressPrefix\":\"172.16.0.0/16\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:37Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy resource status: Operation cannot be fulfilled on workspaces.synapse.azure.com "asotestxnnivy": StorageError: invalid object, Code: 4, Key: /registry/synapse.azure.com/workspaces/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotestxnnivy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 12005ce3-7733-48e2-bd71-e976acad7858, UID in object meta: " name="asotestxnnivy" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3891" generation=2 uid="4cf325d0-2518-4e3f-b513-ef331b679718" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:30 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] StorageAccountsFileServicesShareController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesteasidf resource status: Operation cannot be fulfilled on storageaccountsfileservicesshares.storage.azure.com "asotesteasidf": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsfileservicesshares/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesteasidf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c2ec316c-3e56-4509-b6a5-d6f941bc9a7d, UID in object meta: " name="asotesteasidf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3895" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Determined Delete action" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Starting delete of resource" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="asoworkspacestorageacct" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] StorageAccountsTableServicesTableController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthazyey resource status: Operation cannot be fulfilled on storageaccountstableservicestables.storage.azure.com "asotesthazyey": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountstableservicestables/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthazyey, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 45b180dc-7146-4215-8c24-2d9dec5af39e, UID in object meta: " name="asotesthazyey" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspacesBigDataPoolController "msg"="Reconcile invoked" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" kind="&TypeMeta{Kind:WorkspacesBigDataPool,APIVersion:synapse.azure.com/v1api20210601storage,}" resourceVersion="3900" generation=2 uid="f608fb34-40bd-4e9c-b2a3-fc82c9219298" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"synapse.azure.com/v1api20210601storage", Kind:"Workspace", Name:"asotestxnnivy", UID:"12005ce3-7733-48e2-bd71-e976acad7858", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-nxirwm/providers/Microsoft.Synapse/workspaces/asotestxnnivy/bigDataPools/asotesttgzolo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestxnnivy, Group/Kind: synapse.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3897" generation=2 uid="7b68e482-1641-4d20-b5aa-5a10032655ed" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestopigox", UID:"62039a6b-c95e-4fd7-8696-75d2484f8812", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/queueServices/default/queues/asotesthgxjwu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestopigox, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspacesBigDataPoolController "msg"="Determined Delete action" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspacesBigDataPoolController "msg"="Starting delete of resource" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspacesBigDataPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" azureName="asotesttgzolo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspacesBigDataPoolController "msg"="Delete succeeded, removing finalizer" name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3906" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotesthgxjwu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3907" generation=1 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"16e6be88-3e9c-4900-a571-ef0a5a49791a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3906" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="3905" generation=2 uid="1fa906be-f89a-4c8b-97f3-ddb4304481e7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3909" generation=2 uid="5047a389-30c0-4cdf-a602-b9880d6c2dc1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotestpgmhsz", UID:"f5f17323-a791-4bc7-9b39-1852c21bd83e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:33 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ecylaa/providers/Microsoft.Storage/storageAccounts/asotestmmvput/blobServices/default/containers/asotestvmcyob"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="asotestpgmhsz, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/asoworkspacestorageacct resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asoworkspacestorageacct": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-containerservic-0d27c/asoworkspacestorageacct, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4cf325d0-2518-4e3f-b513-ef331b679718, UID in object meta: " name="asoworkspacestorageacct" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VaultController "msg"="Determined Delete action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VaultController "msg"="Starting delete of resource" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthgxjwu resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "asotesthgxjwu": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotesthgxjwu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7b68e482-1641-4d20-b5aa-5a10032655ed, UID in object meta: " name="asotesthgxjwu" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] WorkspacesBigDataPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotesttgzolo resource status: Operation cannot be fulfilled on workspacesbigdatapools.synapse.azure.com "asotesttgzolo": StorageError: invalid object, Code: 4, Key: /registry/synapse.azure.com/workspacesbigdatapools/aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341/asotesttgzolo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f608fb34-40bd-4e9c-b2a3-fc82c9219298, UID in object meta: " name="asotesttgzolo" namespace="aso-test-samples-creationanddeletion-test-synapse-v1api-c-ba341" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VaultController "msg"="Delete succeeded, removing finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3916" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3906" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" azureName="asotestvmcyob" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3917" generation=1 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3916" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3906" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="3919" generation=2 uid="8131fda9-c83f-455f-93a7-41573a89c935" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:31 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.MachineLearningServices/workspaces/sampleworkspaces"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:32 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3916" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "mlworkspaces-vault": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-containerservic-0d27c/mlworkspaces-vault, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1fa906be-f89a-4c8b-97f3-ddb4304481e7, UID in object meta: " name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3921" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3906" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspaceController "msg"="Determined Delete action" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspaceController "msg"="Starting delete of resource" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sampleworkspaces" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3923" generation=1 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Owner does not yet exist" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf\",\"location\":\"westus2\",\"name\":\"asotest-rg-faseaf\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3906" generation=2 uid="e51b86be-4b1f-4b15-aea8-6516aff08c25" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRVUFlXVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3916" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClusterController "msg"="Reconcile invoked" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedCluster,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3928" generation=2 uid="c4d798b7-3cbf-451a-9b49-80f5e9afd7c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dwrfmg", UID:"0c58ec4e-5bc8-4b37-9312-29a628c3314f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="asotest-rg-dwrfmg, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotest-rg-upywuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClusterController "msg"="Determined Delete action" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClusterController "msg"="Starting delete of resource" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClusterController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="samplemanagedcluster202221preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClusterController "msg"="Delete succeeded, removing finalizer" name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3916" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/sampleworkspaces resource status: Operation cannot be fulfilled on workspaces.machinelearningservices.azure.com "sampleworkspaces": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspaces/aso-test-samples-creationanddeletion-test-containerservic-0d27c/sampleworkspaces, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8131fda9-c83f-455f-93a7-41573a89c935, UID in object meta: " name="sampleworkspaces" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3934" generation=1 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3930" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="applying ownership" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3916" generation=2 uid="76c98081-25b6-4592-ac79-0a06d8479d30" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:37 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTSEJMQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Owner does not yet exist" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3933" generation=1 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3935" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="asotest-rg-shblaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotest-rg-upywuo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-upywuo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotest-rg-upywuo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e51b86be-4b1f-4b15-aea8-6516aff08c25, UID in object meta: " name="asotest-rg-upywuo" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3939" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="applying ownership" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotest-rg-upywuo aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestxkvmrd aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestklmddl]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="Set owner reference" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3943" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Set owner reference" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3940" generation=1 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3948" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/asotest-rg-shblaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-shblaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/asotest-rg-shblaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 76c98081-25b6-4592-ac79-0a06d8479d30, UID in object meta: " name="asotest-rg-shblaa" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="applying ownership" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3946" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="adding finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] ManagedClusterController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/samplemanagedcluster202221preview resource status: Operation cannot be fulfilled on managedclusters.containerservice.azure.com "samplemanagedcluster202221preview": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclusters/aso-test-samples-creationanddeletion-test-containerservic-0d27c/samplemanagedcluster202221preview, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c4d798b7-3cbf-451a-9b49-80f5e9afd7c9, UID in object meta: " name="samplemanagedcluster202221preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb\",\"location\":\"westus2\",\"name\":\"asotest-rg-ichwpb\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3954" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3951" generation=1 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="adding finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Set owner reference" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="3953" generation=2 uid="3a774c0d-2024-4c12-9cc4-c04875fc02e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-upywuo", UID:"e51b86be-4b1f-4b15-aea8-6516aff08c25", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-upywuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3952" generation=1 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] UserAssignedIdentityController "msg"="Determined Delete action" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestxkvmrd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="adding finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3957" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/asotest-rg-shblaa aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/aso-sample-pdz.com]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3960" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClustersAgentPoolController "msg"="Reconcile invoked" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:ManagedClustersAgentPool,APIVersion:containerservice.azure.com/v1api20230201storage,}" resourceVersion="3958" generation=2 uid="130c1712-b02e-457c-a22c-67ec7f45562c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/agentPools/pool202221p"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:35 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3966" generation=1 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestxkvmrd resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "asotestxkvmrd": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestxkvmrd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3a774c0d-2024-4c12-9cc4-c04875fc02e3, UID in object meta: " name="asotestxkvmrd" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3956" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClustersAgentPoolController "msg"="Determined Delete action" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClustersAgentPoolController "msg"="Starting delete of resource" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClustersAgentPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="pool202221p" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ManagedClustersAgentPoolController "msg"="Delete succeeded, removing finalizer" name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3969" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="3964" generation=1 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3972" generation=1 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="applying ownership" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3962" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] TrustedAccessRoleBindingController "msg"="Reconcile invoked" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" kind="&TypeMeta{Kind:TrustedAccessRoleBinding,APIVersion:containerservice.azure.com/v1api20230202previewstorage,}" resourceVersion="3970" generation=2 uid="5c078a2d-3e01-41d0-9144-21b425bcf48f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"containerservice.azure.com/v1api20230201storage", Kind:"ManagedCluster", Name:"samplemanagedcluster202221preview", UID:"c4d798b7-3cbf-451a-9b49-80f5e9afd7c9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:32 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dwrfmg/providers/Microsoft.ContainerService/managedClusters/samplemanagedcluster202221preview/trustedAccessRoleBindings/sample-tarb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:34 +0000 UTC\"]" owner="samplemanagedcluster202221preview, Group/Kind: containerservice.azure.com/ManagedCluster" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] TrustedAccessRoleBindingController "msg"="Determined Delete action" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] TrustedAccessRoleBindingController "msg"="Starting delete of resource" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] TrustedAccessRoleBindingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" azureName="sample-tarb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] TrustedAccessRoleBindingController "msg"="Delete succeeded, removing finalizer" name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3968" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix\",\"location\":\"westus2\",\"name\":\"asotest-rg-srelix\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3977" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Set owner reference" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3971" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3978" generation=2 uid="284334a1-eb48-4e0e-86cf-1cf22257f7e8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-shblaa", UID:"76c98081-25b6-4592-ac79-0a06d8479d30", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-shblaa/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-shblaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3969" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3973" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Determined Delete action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="3980" generation=2 uid="3e309c6f-3ca7-496d-bc17-e58366d67325" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestxkvmrd", UID:"3a774c0d-2024-4c12-9cc4-c04875fc02e3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:38 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-upywuo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestxkvmrd/federatedIdentityCredentials/asotestklmddl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotestxkvmrd, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3983" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="adding finalizer" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] FederatedIdentityCredentialController "msg"="Determined Delete action" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] FederatedIdentityCredentialController "msg"="Starting delete of resource" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] FederatedIdentityCredentialController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" azureName="asotestklmddl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] FederatedIdentityCredentialController "msg"="Delete succeeded, removing finalizer" name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="About to send resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkGatewayController "msg"="Successfully sent resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/pool202221p resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool202221p": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-0d27c/pool202221p, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 130c1712-b02e-457c-a22c-67ec7f45562c, UID in object meta: " name="pool202221p" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="About to send resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTableController "msg"="Successfully sent resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3992" generation=1 uid="466bb101-497f-46e6-aa01-577328baaf68" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3981" generation=1 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3987" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="applying ownership" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="3994" generation=1 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="applying ownership" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3996" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4000" generation=1 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] TrustedAccessRoleBindingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-0d27c/sample-tarb resource status: Operation cannot be fulfilled on trustedaccessrolebindings.containerservice.azure.com "sample-tarb": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/trustedaccessrolebindings/aso-test-samples-creationanddeletion-test-containerservic-0d27c/sample-tarb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5c078a2d-3e01-41d0-9144-21b425bcf48f, UID in object meta: " name="sample-tarb" namespace="aso-test-samples-creationanddeletion-test-containerservic-0d27c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="Set owner reference" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/aso-sample-pdz.com resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "aso-sample-pdz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1beta2-47e80/aso-sample-pdz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 284334a1-eb48-4e0e-86cf-1cf22257f7e8, UID in object meta: " name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-47e80" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="3993" generation=1 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] StorageAccountController "msg"="Set owner reference" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] FederatedIdentityCredentialController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestklmddl resource status: Operation cannot be fulfilled on federatedidentitycredentials.managedidentity.azure.com "asotestklmddl": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/federatedidentitycredentials/aso-test-samples-creationanddeletion-test-managedidentity-e6ed5/asotestklmddl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3e309c6f-3ca7-496d-bc17-e58366d67325, UID in object meta: " name="asotestklmddl" namespace="aso-test-samples-creationanddeletion-test-managedidentity-e6ed5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4004" generation=1 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3996" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:38Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4006" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="adding finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" requeueAfter="1s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4008" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="adding finalizer" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4011" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4006" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3996" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4013" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4008" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4017" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4019" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4015" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4018" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Resource not created yet, will check again" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Didn't commit obj as there was no change" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4006" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="updated resource in etcd" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4021" generation=1 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4019" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4017" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3996" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="About to send resource to Azure" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4008" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com "aso-sample-vn" not found)" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com "aso-sample-vn" not found)" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4023" generation=1 uid="466bb101-497f-46e6-aa01-577328baaf68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4025" generation=1 uid="e819ddb0-dc1b-4c18-8cee-6d58570bc2a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="applying ownership" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4028" generation=1 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Done with reconcile" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4033" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Resource not created yet, will check again" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3996" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5dff953b-5f19-407c-88e8-c46dc77656fc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4006" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4032" generation=1 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0269ab17-2785-4e7d-9949-5f7d5a6522af?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Didn't commit obj as there was no change" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4033" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Got ARM status" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" status="{\"etag\":\"W/\\\"e703acfd-b30a-4051-a8d8-7625ab37bc25\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg\",\"location\":\"westcentralus\",\"name\":\"samplensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllOutBound\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e743ef9f-d0c3-4d65-9ac8-980cce8d1338\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4027" generation=1 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4028" generation=1 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4037" generation=1 uid="c2690073-5dce-4019-a1e5-f26a0ea7f8a0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4029" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4008" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bb1073c3-eb21-4473-9d0c-c015a2f140a6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4041" generation=1 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Resource not created yet, will check again" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Didn't commit obj as there was no change" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Done with reconcile" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4032" generation=1 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0269ab17-2785-4e7d-9949-5f7d5a6522af?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4006" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7319470c-c816-43f7-a021-49c9f4a38f38?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Set owner reference" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Resource successfully created/updated" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Got ARM status" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" status="{\"etag\":\"W/\\\"c2a26e8b-f772-4965-9d2a-a233239f57c4\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable\",\"location\":\"westcentralus\",\"name\":\"sampleroutetable\",\"properties\":{\"disableBgpRoutePropagation\":true,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"00aa40b9-5a2b-4bd1-9b3a-094f1e0253de\"},\"type\":\"Microsoft.Network/routeTables\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="About to send resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4043" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Encountered error, re-queuing..." name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4019" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" status="{\"etag\":\"W/\\\"e0b504e0-3bba-45ec-b9c2-e9d73c5a42f9\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip\",\"location\":\"westcentralus\",\"name\":\"samplepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.168.176.70\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"cb6dec98-c30f-48b7-9632-ff9d9a9a29ba\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4028" generation=1 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTszMWI3MzFjZC05MzU0LTRiOTctODcyMC0yNTdiZTNhNTY2Y2FfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4019" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4032" generation=1 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0269ab17-2785-4e7d-9949-5f7d5a6522af?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4043" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="adding finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Got ARM status" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" status="{\"etag\":\"e45122cd-49d4-46ed-9496-9b451590ccc3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net\",\"location\":\"global\",\"name\":\"privatelink.blob.core.windows.net\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="updated resource in etcd" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4045" generation=1 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/6d976b9e-5ab3-4787-8b02-fcabfd2ed0c6?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Done with reconcile" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4051" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4049" generation=1 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4048" generation=1 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4047" generation=1 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" status="{\"etag\":\"W/\\\"a41396f8-ff64-457f-a116-4b03cac76b1c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westcentralus\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7af920a8-794d-4595-a28d-7a4441d5d836\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4050" generation=1 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4051" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4059" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error, re-queuing..." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4045" generation=1 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/6d976b9e-5ab3-4787-8b02-fcabfd2ed0c6?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4059" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4068" generation=1 uid="466bb101-497f-46e6-aa01-577328baaf68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2cd13330-0764-414e-a028-0adb656de554?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4067" generation=1 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4069" generation=1 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e44dc1-72e3-454e-95a7-be7cd56596cf?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4033" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" requeueAfter="17s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Done with reconcile" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4017" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4061" generation=1 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4066" generation=1 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4019" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4068" generation=1 uid="466bb101-497f-46e6-aa01-577328baaf68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2cd13330-0764-414e-a028-0adb656de554?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4058" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4065" generation=1 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4017" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4064" generation=1 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4045" generation=1 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus2/asyncoperations/6d976b9e-5ab3-4787-8b02-fcabfd2ed0c6?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" status="{\"etag\":\"W/\\\"74bb0b34-c32a-4d0c-a623-fcfd27470526\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\",\"location\":\"westcentralus\",\"name\":\"sampleloadbalancer\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"74bb0b34-c32a-4d0c-a623-fcfd27470526\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"74bb0b34-c32a-4d0c-a623-fcfd27470526\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\",\"name\":\"samplenatpool\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"67bb3851-edfd-4298-8205-4fd07bfe01f6\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3932" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4069" generation=1 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e44dc1-72e3-454e-95a7-be7cd56596cf?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4033" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4073" generation=1 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4071" generation=1 uid="c2690073-5dce-4019-a1e5-f26a0ea7f8a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4075" generation=1 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Done with reconcile" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Got ARM status" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" status="{\"etag\":\"W/\\\"8a98de59-7518-4224-80f9-5534a331968d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\",\"location\":\"westcentralus\",\"name\":\"gatewaypublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.255.237.214\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"0737e685-fd52-4f59-89cb-f594c2cef7ed\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4062" generation=1 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4063" generation=1 uid="e819ddb0-dc1b-4c18-8cee-6d58570bc2a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4019" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4074" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4077" generation=1 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa\",\"location\":\"westus2\",\"name\":\"asotest-rg-xezdqa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com "aso-sample-vn" not found)" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com "aso-sample-vn" not found)" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Resource successfully created/updated" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Got ARM status" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage\",\"kind\":\"BlobStorage\",\"location\":\"westus2\",\"name\":\"asosamplestorage\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asosamplestorage.blob.core.windows.net/\",\"dfs\":\"https://asosamplestorage.dfs.core.windows.net/\",\"table\":\"https://asosamplestorage.table.core.windows.net/\"},\"primaryLocation\":\"westus2\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl\",\"location\":\"westus2\",\"name\":\"asotest-rg-emkabl\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl\",\"location\":\"westus2\",\"name\":\"asotest-rg-vfmqkl\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Set owner reference" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=RouteTable" ownerName="sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3991" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4081" generation=1 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4069" generation=1 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f3e44dc1-72e3-454e-95a7-be7cd56596cf?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4033" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4084" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4078" generation=1 uid="538babe3-4c11-4481-b8d3-fa0e9c321e93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="applying ownership" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" status="{\"etag\":\"W/\\\"42a94a17-97f3-4679-ba0b-cbd2b73b691f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2\",\"location\":\"westcentralus\",\"name\":\"samplevnet2\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"921c8e45-dfe2-4007-b625-cfb9268fce79\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4059" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Encountered error, re-queuing..." name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4059" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="updated resource in etcd" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4088" generation=1 uid="466bb101-497f-46e6-aa01-577328baaf68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4082" generation=1 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4096" generation=1 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4087" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4043" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Encountered error, re-queuing..." name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Reconcile invoked" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4085" generation=1 uid="0166aa66-f385-4104-a832-c448ad18867c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="applying ownership" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Done with reconcile" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4095" generation=1 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="2m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Set owner reference" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4097" generation=1 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4098" generation=1 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4099" generation=1 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4084" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4043" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4033" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="adding finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4003" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4101" generation=1 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/951918e3-6af7-465f-bc2a-0252c0214f21?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4102" generation=1 uid="c2690073-5dce-4019-a1e5-f26a0ea7f8a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a9fb857-afb3-4baf-92b8-c5c4e7b12db0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="adding finalizer" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="updated resource in etcd" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4104" generation=1 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] StorageAccountController "msg"="Done with reconcile" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Set owner reference" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Set owner reference" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4103" generation=1 uid="e819ddb0-dc1b-4c18-8cee-6d58570bc2a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4102" generation=1 uid="c2690073-5dce-4019-a1e5-f26a0ea7f8a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2a9fb857-afb3-4baf-92b8-c5c4e7b12db0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Set owner reference" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com "aso-sample-subnet" not found)" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" status="{\"etag\":\"W/\\\"cb7a7b85-f506-45bc-9a10-58e7e1d73dad\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\",\"location\":\"westus2\",\"name\":\"aso-sample-vn\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f3406373-1dda-4b7d-bff3-8d632517f3b2\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4101" generation=1 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/951918e3-6af7-465f-bc2a-0252c0214f21?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4105" generation=1 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="applying ownership" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="adding finalizer" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4103" generation=1 uid="e819ddb0-dc1b-4c18-8cee-6d58570bc2a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTsyYzE0YmEyMS1lMzVhLTQzNGYtODFkOS0yZTYyM2I0NzdjZmJfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Got ARM status" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" status="{\"etag\":\"bcfc1629-c1a9-4f5e-9bb8-7268ff1dfb61\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com\",\"location\":\"global\",\"name\":\"aso-sample-pdz.com\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4017" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4087" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4114" generation=1 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="applying ownership" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4101" generation=1 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/951918e3-6af7-465f-bc2a-0252c0214f21?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="updated resource in etcd" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4110" generation=1 uid="538babe3-4c11-4481-b8d3-fa0e9c321e93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4108" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"ef5f82cc-635b-49b7-b0e3-679d4ac6377f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Set owner reference" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Set owner reference" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4119" generation=1 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b63554c-808f-4664-931a-644f4eb56d9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="adding finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4109" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"a52464fc-e23a-4d57-9263-48b225eeb039", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4084" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4113" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4017" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="adding finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" status="{\"etag\":\"W/\\\"098942c7-4f10-4e02-be92-c824526b6f39\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2\",\"location\":\"westus2\",\"name\":\"aso-sample-vn2\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"1fa6c8ec-0879-4b89-a58e-a4f2cb42024c\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="About to send resource to Azure" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4112" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="adding finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="863" generation=1 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4125" generation=1 uid="e819ddb0-dc1b-4c18-8cee-6d58570bc2a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4122" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4123" generation=1 uid="c2690073-5dce-4019-a1e5-f26a0ea7f8a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3979" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet does not exist (virtualnetworkssubnets.network.azure.com \\\"aso-sample-subnet\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="updated resource in etcd" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4116" generation=1 uid="0166aa66-f385-4104-a832-c448ad18867c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4119" generation=1 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b63554c-808f-4664-931a-644f4eb56d9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4118" generation=1 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="adding finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsZonesAAAARecordController "msg"="Owner does not yet exist" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="About to send resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Successfully sent resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4126" generation=1 uid="91cc8749-ffef-4f44-bb78-34b506dbfa0d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] UserAssignedIdentityController "msg"="applying ownership" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] 2023/09/08 21:48:39 http: TLS handshake error from 127.0.0.1:45106: EOF +[controller:test-integration-envtest] 2023/09/08 21:48:39 http: TLS handshake error from 127.0.0.1:45114: EOF +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn does not exist (virtualnetworks.network.azure.com \\\"aso-sample-vn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="867" generation=1 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="About to send resource to Azure" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4087" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4129" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"498b6f35-ae19-441a-8a1e-34607fe5c109", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Resource creation/update failure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"RetryableErrorDueToAnotherOperation\",\n \"message\": \"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "RetryableErrorDueToAnotherOperation", +[controller:test-integration-envtest] "message": "Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4132" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] UserAssignedIdentityController "msg"="Set owner reference" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4135" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] DnsResolverController "msg"="Encountered error, re-queuing..." name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4119" generation=1 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b63554c-808f-4664-931a-644f4eb56d9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4137" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4139" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"a52464fc-e23a-4d57-9263-48b225eeb039", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b85547af-8e5d-4c17-859c-2a323f445bfc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4130" generation=1 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4128" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:39Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4124" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"17acd52c-25b9-4d37-aa24-10c433db7ba8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4141" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4148" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"ef5f82cc-635b-49b7-b0e3-679d4ac6377f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6860c5af-954c-44e5-9807-72d83ee7c1b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" status="{\"etag\":\"W/\\\"283b5554-0340-4601-8e38-ebea665af6b7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1\",\"location\":\"westus2\",\"name\":\"aso-sample-vn1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c31b19a0-7aed-48a0-ba96-41cf3c0b2476\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Owner does not yet exist" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4145" generation=1 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4139" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"a52464fc-e23a-4d57-9263-48b225eeb039", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b85547af-8e5d-4c17-859c-2a323f445bfc?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="updated resource in etcd" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4147" generation=1 uid="538babe3-4c11-4481-b8d3-fa0e9c321e93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da6c503a-2985-4152-a235-52b2ec462291?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Done with reconcile" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4136" generation=1 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"fa264b9f-c084-41a1-8bce-0c20b15a3ce3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4132" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4144" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] RouteTablesRouteController "msg"="Resource successfully created/updated" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] RouteTablesRouteController "msg"="Got ARM status" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" status="{\"etag\":\"W/\\\"f4b44dd9-1951-481d-833e-151a4d285b64\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute\",\"name\":\"sampleroute\",\"properties\":{\"addressPrefix\":\"cab:cab::/96\",\"hasBgpOverride\":false,\"nextHopIpAddress\":\"ace:cab:deca:f00d::1\",\"nextHopType\":\"VirtualAppliance\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/routeTables/routes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="adding finalizer" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4084" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Modifying ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="About to send resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Owner does not yet exist" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4148" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"ef5f82cc-635b-49b7-b0e3-679d4ac6377f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6860c5af-954c-44e5-9807-72d83ee7c1b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Owner does not yet exist" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="About to send resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Reconcile invoked" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4147" generation=1 uid="538babe3-4c11-4481-b8d3-fa0e9c321e93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/da6c503a-2985-4152-a235-52b2ec462291?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4155" generation=1 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcbe7111-8436-4698-9418-c9f62291f47a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="updated resource in etcd" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4151" generation=1 uid="0166aa66-f385-4104-a832-c448ad18867c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6d7e6425-a398-4fef-b4ea-9afbc81eba08?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Done with reconcile" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4009" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/643d6d28-6794-4796-b6c9-277e908d09ba?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4150" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="About to send resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully sent resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="About to send resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4156" generation=1 uid="1be92003-0656-4874-a4dd-b93d842d527a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4155" generation=1 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcbe7111-8436-4698-9418-c9f62291f47a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Got ARM status" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" status="{\"etag\":\"W/\\\"4ea04e7b-2202-4e76-b359-cc8607665b1c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip\",\"location\":\"westus2\",\"name\":\"bastionpublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.155.17.100\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"69b6a440-1790-484a-8710-2c72236bb02d\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully sent resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Resource successfully created/updated" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Got ARM status" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" status="{\"etag\":\"W/\\\"7bb3c665-5edc-43b0-bd4b-9d54f5ed3749\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway\",\"location\":\"westcentralus\",\"name\":\"samplevnetgateway\",\"properties\":{\"activeActive\":false,\"bgpSettings\":{\"asn\":65515,\"bgpPeeringAddress\":\"172.16.255.254\",\"bgpPeeringAddresses\":[{\"defaultBgpIpAddresses\":[\"172.16.255.254\"],\"ipconfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"tunnelIpAddresses\":[\"20.168.177.175\"]}],\"peerWeight\":0},\"enableBgp\":false,\"enablePrivateIpAddress\":false,\"gatewayType\":\"Vpn\",\"ipConfigurations\":[{\"etag\":\"W/\\\"7bb3c665-5edc-43b0-bd4b-9d54f5ed3749\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"name\":\"config1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\"}}}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"7d8a027b-684c-4b86-baa2-a824723327a4\",\"sku\":{\"capacity\":2,\"name\":\"VpnGw2\",\"tier\":\"VpnGw2\"},\"vpnGatewayGeneration\":\"Generation2\",\"vpnType\":\"RouteBased\"},\"type\":\"Microsoft.Network/virtualNetworkGateways\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" status="{\"etag\":\"W/\\\"c3574497-7da9-4f4b-8216-43786e912fab\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule\",\"name\":\"samplerule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to source port 23-45 and destination port 45-56\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"46-56\",\"direction\":\"Inbound\",\"priority\":123,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"23-45\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="adding finalizer" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Reconcile invoked" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4151" generation=1 uid="0166aa66-f385-4104-a832-c448ad18867c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6d7e6425-a398-4fef-b4ea-9afbc81eba08?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4158" generation=1 uid="91cc8749-ffef-4f44-bb78-34b506dbfa0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"e93f7519-5980-4bfc-8e14-3d358f9b67b7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4154" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4163" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="Set owner reference" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4164" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4165" generation=1 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Got ARM status" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" status="{\"etag\":\"W/\\\"68d8302c-ac21-4faa-ac7f-77be8b55a154\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip\",\"location\":\"westus2\",\"name\":\"aso-sample-publicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.155.17.78\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"29b1c1bc-a153-4c41-9e74-86354a7c0578\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4177" generation=1 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"a52464fc-e23a-4d57-9263-48b225eeb039", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4183" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"17acd52c-25b9-4d37-aa24-10c433db7ba8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4175" generation=1 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"fa264b9f-c084-41a1-8bce-0c20b15a3ce3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4181" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"498b6f35-ae19-441a-8a1e-34607fe5c109", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/eb3f5515-3a20-4507-912f-d378d14cee25?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4169" generation=1 uid="b6e14555-d79f-40c9-a625-1fdddf8197b6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="applying ownership" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4173" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3984" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4185" generation=1 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Owner does not yet exist" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4186" generation=1 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22644a73-66ef-499f-9db2-2fadb6ac5f71?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4141" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4173" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4155" generation=1 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fcbe7111-8436-4698-9418-c9f62291f47a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4087" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Owner does not yet exist" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Resource creation/update failure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": []\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="Reconcile invoked" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4180" generation=1 uid="17421763-ecf9-467e-b2e2-09dbd8e2c866" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="applying ownership" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4183" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"17acd52c-25b9-4d37-aa24-10c433db7ba8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4175" generation=1 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"fa264b9f-c084-41a1-8bce-0c20b15a3ce3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" status="{\"etag\":\"W/\\\"387c5a9a-4d56-4514-a8c2-8816812fc2ff\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver\",\"location\":\"westus2\",\"name\":\"aso-sample-vn-dnsresolver\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/8\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ce8d8a4d-be14-4a17-8739-fb3705dedaec\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="Set owner reference" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4189" generation=1 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"ef5f82cc-635b-49b7-b0e3-679d4ac6377f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="updated resource in etcd" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4190" generation=1 uid="538babe3-4c11-4481-b8d3-fa0e9c321e93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Done with reconcile" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4191" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8c4b6b56-409f-4d06-bf5f-f6289065acf1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Resource not created yet, will check again" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4179" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="adding finalizer" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4186" generation=1 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22644a73-66ef-499f-9db2-2fadb6ac5f71?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4187" generation=1 uid="f724b3e1-5a73-4a34-8421-8e4a6e86eee0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Resource not created yet, will check again" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" requeueAfter="30s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Didn't commit obj as there was no change" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="updated resource in etcd" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4193" generation=1 uid="0166aa66-f385-4104-a832-c448ad18867c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PublicIPAddressController "msg"="Done with reconcile" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="Set owner reference" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4192" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4197" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4183" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"17acd52c-25b9-4d37-aa24-10c433db7ba8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7OWU5ZmJjNzQtMjI0Yy00YWFhLWE5YTYtYjM0ZjdjMjUxMTBmXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4194" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"5b722bf4-814e-417d-87b9-a5703908e3de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4191" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8c4b6b56-409f-4d06-bf5f-f6289065acf1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Resource successfully created/updated" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Got ARM status" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" status="{\"etag\":\"\\\"d7015794-0000-0100-0000-64ac9c730000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink\",\"location\":\"global\",\"name\":\"aso-sample-vnetlink\",\"properties\":{\"provisioningState\":\"Succeeded\",\"registrationEnabled\":false,\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1\"},\"virtualNetworkLinkState\":\"Completed\"},\"type\":\"Microsoft.Network/privateDnsZones/virtualNetworkLinks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="adding finalizer" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="About to send resource to Azure" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Successfully sent resource to Azure" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4198" generation=1 uid="be1d08b5-1e5c-49dc-a678-4bbc3ee32f42" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Resource successfully created/updated" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="adding finalizer" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesCNAMERecordController "msg"="Set owner reference" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4201" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4175" generation=1 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"fa264b9f-c084-41a1-8bce-0c20b15a3ce3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRQcml2YXRlRG5zWm9uZTswMzEwNmEyYS1iMjhlLTQ1MDctODkxZi03ZGQ4OGU5NzY0ZGFfNGVmNDRmZWYtYzUxZC00ZDdjLWE2ZmYtODYzNWMwMjg0OGIx?api-version=2018-09-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com?api-version=2018-09-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4202" generation=1 uid="91cc8749-ffef-4f44-bb78-34b506dbfa0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"e93f7519-5980-4bfc-8e14-3d358f9b67b7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4186" generation=1 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/22644a73-66ef-499f-9db2-2fadb6ac5f71?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4206" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4203" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4087" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Got ARM status" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" status="{\"etag\":\"W/\\\"88f7ae70-1236-4038-abda-85cbd9edaaf7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering\",\"name\":\"samplepeering\",\"properties\":{\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"allowVirtualNetworkAccess\":true,\"doNotVerifyRemoteGateways\":false,\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\",\"remoteAddressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2\"},\"resourceGuid\":\"7b8cbbf0-dcbb-0081-273b-9761b3e0adef\",\"useRemoteGateways\":false},\"type\":\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4205" generation=1 uid="36c65297-1f55-452f-a85c-712490957811" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Got ARM status" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" status="{\"etag\":\"W/\\\"99021751-4958-4175-9cdb-46efd216a1d2\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\",\"location\":\"westus2\",\"name\":\"aso-sample-vn\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/8\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"214db516-775f-4c02-a3d9-4cc17fc5771a\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZoneController "msg"="Got ARM status" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" status="{\"etag\":\"82e2f7af-8dfb-48a9-8bbc-1cc3bf2cc854\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com\",\"location\":\"global\",\"name\":\"aso-sample-pdz.com\",\"properties\":{\"maxNumberOfRecordSets\":25000,\"maxNumberOfVirtualNetworkLinks\":1000,\"maxNumberOfVirtualNetworkLinksWithRegistration\":100,\"numberOfRecordSets\":1,\"numberOfVirtualNetworkLinks\":0,\"numberOfVirtualNetworkLinksWithRegistration\":0,\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateDnsZones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesMXRecordController "msg"="Set owner reference" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4213" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4210" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4202" generation=1 uid="91cc8749-ffef-4f44-bb78-34b506dbfa0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"e93f7519-5980-4bfc-8e14-3d358f9b67b7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4141" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4163" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4201" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4206" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4212" generation=1 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4214" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="updated resource in etcd" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4207" generation=1 uid="17421763-ecf9-467e-b2e2-09dbd8e2c866" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"0ac8d258-61ac-4c91-9b2c-23c529f0e822", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4208" generation=1 uid="1be92003-0656-4874-a4dd-b93d842d527a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesCNAMERecordController "msg"="adding finalizer" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="3967" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4213" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4210" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4219" generation=1 uid="0db0f3b5-401f-45c4-84b4-4fa8ee662c8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4181" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"498b6f35-ae19-441a-8a1e-34607fe5c109", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/eb3f5515-3a20-4507-912f-d378d14cee25?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Got ARM status" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\",\"location\":\"westcentralus\",\"name\":\"asotestqckbee\",\"properties\":{\"clientId\":\"fac17045-fe7a-43eb-96ec-97783f626e60\",\"principalId\":\"7bf60842-ab4f-4ec5-974c-0ab300f2c901\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesPTRRecordController "msg"="Set owner reference" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesTXTRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesTXTRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesTXTRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesPTRRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4224" generation=1 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"17acd52c-25b9-4d37-aa24-10c433db7ba8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4226" generation=1 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4225" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4220" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4215" generation=1 uid="b6e14555-d79f-40c9-a625-1fdddf8197b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="About to send resource to Azure" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZoneController "msg"="Successfully sent resource to Azure" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" status="{\"etag\":\"W/\\\"c7f124c6-a82d-476c-9bd3-de0994500701\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\",\"name\":\"gatewaysubnet\",\"properties\":{\"addressPrefix\":\"172.16.0.0/16\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4232" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4225" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4229" generation=1 uid="7e095aa3-b1f2-40c9-b421-2963e9c83362" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4220" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesMXRecordController "msg"="adding finalizer" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesSRVRecordController "msg"="Set owner reference" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4232" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:40Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesPTRRecordController "msg"="adding finalizer" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" status="{\"etag\":\"W/\\\"f1d83fc8-c6e3-42c8-93e2-3c2d7de48414\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westcentralus\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"vaqps4snpgkuliunpjcedvoygg.yx.internal.cloudapp.net\"},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"f1d83fc8-c6e3-42c8-93e2-3c2d7de48414\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"4112991c-909b-4c25-942f-dccb8388684e\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] PrivateDnsZonesAAAARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:40Z] UserAssignedIdentityController "msg"="Successfully created resource" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4233" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"5b722bf4-814e-417d-87b9-a5703908e3de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/885abf44-5843-4af1-82f7-3ebc460e4f8a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4220" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4222" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"0bf28bc6-66fb-43ee-8161-35027ea38a52", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4087" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Set owner reference" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4173" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZoneController "msg"="updated resource in etcd" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4237" generation=1 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"fa264b9f-c084-41a1-8bce-0c20b15a3ce3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZoneController "msg"="Done with reconcile" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="updated resource in etcd" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4235" generation=1 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Done with reconcile" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4230" generation=1 uid="f724b3e1-5a73-4a34-8421-8e4a6e86eee0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4240" generation=1 uid="6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="applying ownership" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4213" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4201" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Owner exists but is not ready. Current condition" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" cannot be found. Progress is blocked until the owner is created." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4206" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4250" generation=1 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"498b6f35-ae19-441a-8a1e-34607fe5c109", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="updated resource in etcd" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4243" generation=1 uid="17421763-ecf9-467e-b2e2-09dbd8e2c866" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"0ac8d258-61ac-4c91-9b2c-23c529f0e822", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com?api-version=2018-05-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="Done with reconcile" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4220" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4173" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4246" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4201" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4255" generation=1 uid="b6e14555-d79f-40c9-a625-1fdddf8197b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="Done with reconcile" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4249" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4141" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4253" generation=1 uid="1be92003-0656-4874-a4dd-b93d842d527a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="Done with reconcile" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Set owner reference" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" ownerGvk="network.azure.com/v1api20180901storage, Kind=PrivateDnsZone" ownerName="aso-sample-pdz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4241" generation=1 uid="be1d08b5-1e5c-49dc-a678-4bbc3ee32f42" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="Reconcile invoked" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4243" generation=1 uid="17421763-ecf9-467e-b2e2-09dbd8e2c866" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"0ac8d258-61ac-4c91-9b2c-23c529f0e822", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com?api-version=2018-05-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="adding finalizer" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4225" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="adding finalizer" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4213" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4206" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4246" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4254" generation=1 uid="91cc8749-ffef-4f44-bb78-34b506dbfa0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"e93f7519-5980-4bfc-8e14-3d358f9b67b7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] UserAssignedIdentityController "msg"="Done with reconcile" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4232" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="Determined CreateOrUpdate action" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="Resource successfully created/updated" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4256" generation=1 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="Got ARM status" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" status="{\"etag\":\"05536831-7f54-46b6-8537-d28d7ba112b1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com\",\"location\":\"global\",\"name\":\"aso-sample-dz.com\",\"properties\":{\"maxNumberOfRecordSets\":10000,\"nameServers\":[\"ns1-03.azure-dns.com.\",\"ns2-03.azure-dns.net.\",\"ns3-03.azure-dns.org.\",\"ns4-03.azure-dns.info.\"],\"numberOfRecordSets\":2,\"zoneType\":\"Public\"},\"type\":\"Microsoft.Network/dnszones\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4220" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4253" generation=1 uid="1be92003-0656-4874-a4dd-b93d842d527a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4255" generation=1 uid="b6e14555-d79f-40c9-a625-1fdddf8197b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4225" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4247" generation=1 uid="36c65297-1f55-452f-a85c-712490957811" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4232" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="Got ARM status" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" status="{\"etag\":\"cd40947a-49a6-4bca-8224-ae69aa222b86\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a\",\"name\":\"aso-sample-recordset-a\",\"properties\":{\"aRecords\":[{\"ipv4Address\":\"10.0.1.9\"}],\"fqdn\":\"aso-sample-recordset-a.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/A\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4245" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2c84dd60-844a-4585-8a0c-6d051b943e24?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="Got ARM status" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" status="{\"etag\":\"68ea953e-d665-48de-bf91-5f8313c4b1e0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa\",\"name\":\"aso-sample-recordset-aaaa\",\"properties\":{\"aaaaRecords\":[{\"ipv6Address\":\"2001:0db8:85a3:0000:0000:8a2e:0370:7334\"}],\"fqdn\":\"aso-sample-recordset-aaaa.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/AAAA\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4263" generation=1 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4267" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"0bf28bc6-66fb-43ee-8161-35027ea38a52", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/28ce28f0-c955-4de1-b74b-a488e7d1e796?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4176" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="applying ownership" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4005" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="applying ownership" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4220" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjMyMDE1NzcxLTVhNWMtNGQ0Ni1hMTUzLWI2NjU2OGNmZjA5ZCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4258" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="adding finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4233" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"5b722bf4-814e-417d-87b9-a5703908e3de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/885abf44-5843-4af1-82f7-3ebc460e4f8a?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4262" generation=1 uid="0db0f3b5-401f-45c4-84b4-4fa8ee662c8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Resource successfully created/updated" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Got ARM status" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" status="{\"etag\":\"\\\"13000e0c-0000-0400-0000-64ac9c330000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset\",\"location\":\"westus2\",\"name\":\"aso-sample-resolver-dnsforwardingruleset\",\"properties\":{\"dnsResolverState\":\"Connected\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"4f3f7d50-e821-48e3-895e-f06045ef2d55\",\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" cannot be found. Progress is blocked until the owner is created." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Set owner reference" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" ownerGvk="managedidentity.azure.com/v1api20181130storage, Kind=UserAssignedIdentity" ownerName="asotestqckbee" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" status="{\"etag\":\"W/\\\"615c74b2-6264-42b2-b696-0d3ce325dfb8\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet\",\"name\":\"AzureBastionSubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4273" generation=1 uid="f724b3e1-5a73-4a34-8421-8e4a6e86eee0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Done with reconcile" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4259" generation=1 uid="7e095aa3-b1f2-40c9-b421-2963e9c83362" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4213" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4206" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4272" generation=1 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4275" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4201" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4213" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="applying ownership" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4275" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4201" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="applying ownership" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4206" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4166" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4225" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="applying ownership" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="applying ownership" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4270" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4232" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4282" generation=1 uid="be1d08b5-1e5c-49dc-a678-4bbc3ee32f42" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Done with reconcile" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="updated resource in etcd" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4284" generation=1 uid="17421763-ecf9-467e-b2e2-09dbd8e2c866" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"0ac8d258-61ac-4c91-9b2c-23c529f0e822", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZoneController "msg"="Done with reconcile" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4273" generation=1 uid="f724b3e1-5a73-4a34-8421-8e4a6e86eee0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4171" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="applying ownership" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="adding finalizer" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4289" generation=1 uid="1be92003-0656-4874-a4dd-b93d842d527a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesAAAARecordController "msg"="Done with reconcile" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4290" generation=1 uid="b6e14555-d79f-40c9-a625-1fdddf8197b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesARecordController "msg"="Done with reconcile" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4278" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="About to send resource to Azure" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Set owner reference" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4173" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4285" generation=1 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4232" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="applying ownership" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4246" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4225" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4294" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/468c3391-0365-4cb2-a57f-518fb357b7b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4282" generation=1 uid="be1d08b5-1e5c-49dc-a678-4bbc3ee32f42" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Got ARM status" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" status="{\"etag\":\"0bfb9e7a-ec66-421e-a952-0c194a32bc6b\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname\",\"name\":\"aso-sample-recordset-cname\",\"properties\":{\"cnameRecord\":{\"cname\":\"asosample.com\"},\"fqdn\":\"aso-sample-recordset-cname.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/CNAME\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4283" generation=1 uid="6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Set owner reference" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4295" generation=1 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"5b722bf4-814e-417d-87b9-a5703908e3de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4293" generation=1 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Set owner reference" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="applying ownership" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Encountered error, re-queuing..." name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4142" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="applying ownership" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4245" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2c84dd60-844a-4585-8a0c-6d051b943e24?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (8c4b6b56-409f-4d06-bf5f-f6289065acf1) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 13 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4246" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="applying ownership" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Set owner reference" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4173" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="applying ownership" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4275" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4299" generation=1 uid="36c65297-1f55-452f-a85c-712490957811" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Set owner reference" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Done with reconcile" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" status="{\"etag\":\"W/\\\"ee0ccc7a-b238-49a9-8b14-ee5d667e4c68\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-GCUPSZ/providers/Microsoft.Network/networkInterfaces/SAMPLENIC/ipConfigurations/IPCONFIG1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4038" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4298" generation=1 uid="0db0f3b5-401f-45c4-84b4-4fa8ee662c8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Done with reconcile" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4267" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"0bf28bc6-66fb-43ee-8161-35027ea38a52", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/28ce28f0-c955-4de1-b74b-a488e7d1e796?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Got ARM status" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" status="{\"etag\":\"1acb2683-bbc0-4475-85c4-6eb2e10dee1d\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx\",\"name\":\"aso-sample-recordset-mx\",\"properties\":{\"fqdn\":\"aso-sample-recordset-mx.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"mxRecords\":[{\"exchange\":\"mail.aso-sample.com\",\"preference\":0}],\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/MX\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Set owner reference" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4296" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"91cc8749-ffef-4f44-bb78-34b506dbfa0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource creation/update failure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"RetryableErrorDueToAnotherOperation\",\n \"message\": \"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "RetryableErrorDueToAnotherOperation", +[controller:test-integration-envtest] "message": "Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Set owner reference" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="adding finalizer" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" status="{\"etag\":\"W/\\\"b152286d-fe69-4e13-9ee2-3e85b544a0e7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1\",\"name\":\"aso-sample-subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Set owner reference" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4298" generation=1 uid="0db0f3b5-401f-45c4-84b4-4fa8ee662c8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4299" generation=1 uid="36c65297-1f55-452f-a85c-712490957811" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Set owner reference" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsResolver" ownerName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Set owner reference" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" ownerGvk="network.azure.com/v1api20180501storage, Kind=DnsZone" ownerName="aso-sample-dz.com" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4275" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="About to send resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="adding finalizer" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4309" generation=1 uid="7e095aa3-b1f2-40c9-b421-2963e9c83362" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Done with reconcile" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Set owner reference" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="adding finalizer" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully sent resource to Azure" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4307" generation=1 uid="f724b3e1-5a73-4a34-8421-8e4a6e86eee0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesCNAMERecordController "msg"="Done with reconcile" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4301" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Got ARM status" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" status="{\"etag\":\"bc84f05d-1166-4078-a801-61d19b5be958\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv\",\"name\":\"aso-sample-recordset-srv\",\"properties\":{\"fqdn\":\"aso-sample-recordset-srv.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"srvRecords\":[{\"port\":80,\"priority\":0,\"target\":\"target.asosample.com\",\"weight\":50}],\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/SRV\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4305" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Got ARM status" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" status="{\"etag\":\"5019c75f-b543-475a-a45b-c3a5c55394a0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr\",\"name\":\"aso-sample-recordset-ptr\",\"properties\":{\"fqdn\":\"aso-sample-recordset-ptr.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ptrRecords\":[{\"ptrdname\":\"asosample.com\"}],\"ttl\":3600},\"type\":\"Microsoft.Network/privateDnsZones/PTR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="adding finalizer" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="adding finalizer" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="adding finalizer" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4302" generation=1 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="adding finalizer" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4317" generation=1 uid="be1d08b5-1e5c-49dc-a678-4bbc3ee32f42" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesMXRecordController "msg"="Done with reconcile" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4316" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/aae19560-1c24-432d-8f26-6096902f26ac?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Owner does not yet exist" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="adding finalizer" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4309" generation=1 uid="7e095aa3-b1f2-40c9-b421-2963e9c83362" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4287" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4275" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Resource successfully created/updated" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Got ARM status" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" status="{\"etag\":\"9e91f37d-50a9-470e-8549-31d5eef88116\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt\",\"name\":\"aso-sample-recordset-txt\",\"properties\":{\"fqdn\":\"aso-sample-recordset-txt.aso-sample-pdz.com.\",\"isAutoRegistered\":false,\"ttl\":3600,\"txtRecords\":[{\"value\":[\"ASO sample value\"]}]},\"type\":\"Microsoft.Network/privateDnsZones/TXT\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4326" generation=1 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d46fce34-c1be-49f0-a8c1-2fdf1c7fd4d1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Resource creation/update failure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Modifying ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="adding finalizer" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4314" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4318" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4329" generation=1 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"0bf28bc6-66fb-43ee-8161-35027ea38a52", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4333" generation=1 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4330" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4335" generation=1 uid="36c65297-1f55-452f-a85c-712490957811" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesPTRRecordController "msg"="Done with reconcile" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4326" generation=1 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d46fce34-c1be-49f0-a8c1-2fdf1c7fd4d1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="adding finalizer" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4294" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/468c3391-0365-4cb2-a57f-518fb357b7b2?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4320" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4316" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/aae19560-1c24-432d-8f26-6096902f26ac?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Resource not created yet, will check again" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" requeueAfter="2s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="adding finalizer" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Didn't commit obj as there was no change" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4321" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4336" generation=1 uid="6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4330" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4319" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] 2023/09/08 21:48:41 http: TLS handshake error from 127.0.0.1:46016: read tcp 127.0.0.1:37369->127.0.0.1:46016: read: connection reset by peer +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4275" generation=2 uid="fa264b9f-c084-41a1-8bce-0c20b15a3ce3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWRk1RS0wtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4340" generation=1 uid="0db0f3b5-401f-45c4-84b4-4fa8ee662c8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesSRVRecordController "msg"="Done with reconcile" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" status="{\"etag\":\"W/\\\"085a64e7-7b32-4b79-9f7f-03a28d794329\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep\",\"name\":\"aso-sample-subnet-outbound-ep\",\"properties\":{\"addressPrefix\":\"10.225.0.0/28\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="asotest-rg-vfmqkl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4331" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4338" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref aso-sample-subnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4336" generation=1 uid="6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationStatuses/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsOperationResults/RnJvbnRFbmRBc3luY09wZXJhdGlvbjtVcHNlcnRWaXJ0dWFsTmV0d29ya0xpbms7ODc3MjlhYjItZThmMC00YWFkLTkxYzMtODJkNjk3ZjExODJiXzRlZjQ0ZmVmLWM1MWQtNGQ3Yy1hNmZmLTg2MzVjMDI4NDhiMQ==?api-version=2020-06-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink?api-version=2020-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="About to send resource to Azure" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4326" generation=1 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d46fce34-c1be-49f0-a8c1-2fdf1c7fd4d1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4334" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" status="{\"etag\":\"W/\\\"085a64e7-7b32-4b79-9f7f-03a28d794329\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep\",\"name\":\"aso-sample-subnet-inbound-ep\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Got ARM status" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" status="{\"etag\":\"c5690324-3ce6-41d5-9cfb-ea3d23209443\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/PTR/aso-sample-record-ptr\",\"name\":\"aso-sample-record-ptr\",\"properties\":{\"fqdn\":\"aso-sample-record-ptr.aso-sample-dz.com.\",\"PTRRecords\":[{\"ptrdname\":\"asosample.com\"}],\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/PTR\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4327" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4332" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4337" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="applying ownership" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined CreateOrUpdate action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" status="{\"etag\":\"W/\\\"571529f2-e416-484d-8a1b-a55a287630c3\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip\",\"location\":\"westcentralus\",\"name\":\"samplepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"4.255.239.16\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"e24c7380-7a88-4cd7-b4e5-e519be6405ab\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Resource successfully created/updated" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Got ARM status" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" status="{\"etag\":\"\\\"7f012fcd-0000-0100-0000-64a820ff0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink\",\"location\":\"global\",\"name\":\"aso-sample-vnetlink\",\"properties\":{\"provisioningState\":\"Succeeded\",\"registrationEnabled\":false,\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn\"},\"virtualNetworkLinkState\":\"Completed\"},\"type\":\"Microsoft.Network/privateDnsZones/virtualNetworkLinks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4348" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"91cc8749-ffef-4f44-bb78-34b506dbfa0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Encountered error, re-queuing..." name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4345" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="Set owner reference" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Owner does not yet exist" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" NamespacedName="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="About to send resource to Azure" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Resource successfully created/updated" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Got ARM status" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" status="{\"etag\":\"7a9ffffd-ee05-45d4-9eab-0186177933e7\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/A/aso-sample-record-a\",\"name\":\"aso-sample-record-a\",\"properties\":{\"ARecords\":[{\"ipv4Address\":\"10.0.1.9\"}],\"fqdn\":\"aso-sample-record-a.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/A\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4348" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"91cc8749-ffef-4f44-bb78-34b506dbfa0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="About to send resource to Azure" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4358" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c77d673-e491-4b68-9545-e54ce9783473?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4354" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="About to send resource to Azure" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4355" generation=1 uid="7e095aa3-b1f2-40c9-b421-2963e9c83362" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesTXTRecordController "msg"="Done with reconcile" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Resource successfully created/updated" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Got ARM status" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" status="{\"etag\":\"216e247c-0549-426a-8cf5-c09aa19bda7f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/CAA/aso-sample-record-caa\",\"name\":\"aso-sample-record-caa\",\"properties\":{\"caaRecords\":[{\"flags\":0,\"tag\":\"aso\",\"value\":\"test\"}],\"fqdn\":\"aso-sample-record-caa.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/CAA\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Determined CreateOrUpdate action" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4353" generation=1 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fc6fa7f1-40f3-4241-8a00-73854a3ed787?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4349" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Got ARM status" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" status="{\"etag\":\"f7e7c4c9-9a98-415e-8c19-12e2388fbd2a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/MX/aso-sample-record-mx\",\"name\":\"aso-sample-record-mx\",\"properties\":{\"fqdn\":\"aso-sample-record-mx.aso-sample-dz.com.\",\"MXRecords\":[{\"exchange\":\"mail.aso-sample.com\",\"preference\":0}],\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/MX\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="About to send resource to Azure" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Resource successfully created/updated" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Got ARM status" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" status="{\"etag\":\"40d46323-520d-450a-82dd-559ef4bddc78\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa\",\"name\":\"aso-sample-record-aaaa\",\"properties\":{\"AAAARecords\":[{\"ipv6Address\":\"2001:0db8:85a3:0000:0000:8a2e:0370:7334\"}],\"fqdn\":\"aso-sample-record-aaaa.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/AAAA\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4354" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4358" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c77d673-e491-4b68-9545-e54ce9783473?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Determined CreateOrUpdate action" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Modifying ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4353" generation=1 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fc6fa7f1-40f3-4241-8a00-73854a3ed787?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="About to send resource to Azure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4350" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Resource creation/update failure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": []\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" status="{\"etag\":\"W/\\\"9762e19a-5697-48a2-8b5d-0db9e2fd115e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset\",\"name\":\"aso-sample-subnet-outbound-ep-dnsforwardingruleset\",\"properties\":{\"addressPrefix\":\"10.225.0.0/28\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4362" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4365" generation=1 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="About to send resource to Azure" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="About to send resource to Azure" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="About to send resource to Azure" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Resource successfully created/updated" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Got ARM status" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" status="{\"etag\":\"810751b1-fbba-4da5-8871-3ff218c5c9d9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/NS/aso-sample-record-ns\",\"name\":\"aso-sample-record-ns\",\"properties\":{\"fqdn\":\"aso-sample-record-ns.aso-sample-dz.com.\",\"NSRecords\":[{\"nsdname\":\"ns.asotest.com\"}],\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/NS\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Got ARM status" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" status="{\"etag\":\"bdb92574-2a33-44df-af67-a6778926c1c3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/CNAME/aso-sample-record-cname\",\"name\":\"aso-sample-record-cname\",\"properties\":{\"CNAMERecord\":{\"cname\":\"asosample.com\"},\"fqdn\":\"aso-sample-record-cname.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/CNAME\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Got ARM status" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" status="{\"etag\":\"7a18b747-0e60-46c8-a547-cbda3e4a2140\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/SRV/aso-sample-record-srv\",\"name\":\"aso-sample-record-srv\",\"properties\":{\"fqdn\":\"aso-sample-record-srv.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"SRVRecords\":[{\"port\":80,\"priority\":0,\"target\":\"target.asosample.com\",\"weight\":50}],\"TTL\":3600,\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/SRV\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/asotest-rg-vfmqkl resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vfmqkl": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/asotest-rg-vfmqkl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fa264b9f-c084-41a1-8bce-0c20b15a3ce3, UID in object meta: " name="asotest-rg-vfmqkl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="About to send resource to Azure" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Successfully sent resource to Azure" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Resource successfully created/updated" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Got ARM status" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" status="{\"etag\":\"1b0d3131-e352-49cd-8b1f-f26b2ef9b757\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnszones/aso-sample-dz.com/TXT/aso-sample-record-txt\",\"name\":\"aso-sample-record-txt\",\"properties\":{\"fqdn\":\"aso-sample-record-txt.aso-sample-dz.com.\",\"provisioningState\":\"Succeeded\",\"TTL\":3600,\"TXTRecords\":[{\"value\":[\"ASO sample value\"]}],\"targetResource\":{}},\"type\":\"Microsoft.Network/dnszones/TXT\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="updated resource in etcd" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4366" generation=1 uid="6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Done with reconcile" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="About to send resource to Azure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Successfully sent resource to Azure" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Resource successfully created/updated" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Got ARM status" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi\",\"name\":\"asotestqgmdzi\",\"properties\":{\"audiences\":[\"api://AzureADTokenExchange\"],\"issuer\":\"https://oidc.prod-aks.azure.com/00000000-0000-0000-0000-00000000000/\",\"subject\":\"system:serviceaccount:default:default\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4367" generation=1 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="updated resource in etcd" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4368" generation=1 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesPTRRecordController "msg"="Done with reconcile" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="adding finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4369" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4353" generation=1 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fc6fa7f1-40f3-4241-8a00-73854a3ed787?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/asotest-rg-vfmqkl aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/aso-sample-pdz.com]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4371" generation=1 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4364" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c2df0240-3c8a-4cef-b4aa-748b5831397d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="updated resource in etcd" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4372" generation=1 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesARecordController "msg"="Done with reconcile" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="updated resource in etcd" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4375" generation=1 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesAAAARecordController "msg"="Done with reconcile" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" status="{\"etag\":\"W/\\\"ffa85a05-fe45-4378-93a3-8f39ce3914cc\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westcentralus\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a2fc2e1-00a9-4726-833c-4565ca71b0b9\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="updated resource in etcd" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4380" generation=1 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCAARecordController "msg"="Done with reconcile" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4376" generation=1 uid="2cee6293-0dee-4944-8153-ab4ced9c6130" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] RouteTableController "msg"="applying ownership" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="updated resource in etcd" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4377" generation=1 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesMXRecordController "msg"="Done with reconcile" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4378" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4364" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c2df0240-3c8a-4cef-b4aa-748b5831397d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutSubnetOperation (9c77d673-e491-4b68-9545-e54ce9783473) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn. The call can be retried in 11 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="updated resource in etcd" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4381" generation=1 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesCNAMERecordController "msg"="Done with reconcile" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:41Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4379" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4386" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4354" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4384" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4390" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="updated resource in etcd" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4393" generation=1 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"91cc8749-ffef-4f44-bb78-34b506dbfa0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="updated resource in etcd" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4392" generation=1 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] FederatedIdentityCredentialController "msg"="Done with reconcile" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesNSRecordController "msg"="Done with reconcile" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="updated resource in etcd" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4388" generation=1 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesTXTRecordController "msg"="Done with reconcile" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" status="{\"etag\":\"W/\\\"2168d946-7f7d-466b-b48f-093d7ea6ed89\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\",\"name\":\"aso-sample-subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Disabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="updated resource in etcd" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4385" generation=1 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] DnsZonesSRVRecordController "msg"="Done with reconcile" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4389" generation=1 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:41Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4386" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="About to send resource to Azure" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Set owner reference" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4354" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4390" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4398" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="applying ownership" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Owner exists but is not ready. Current condition" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4394" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4399" generation=2 uid="728ea001-7f2f-4b58-9000-162d92252318" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vfmqkl", UID:"fa264b9f-c084-41a1-8bce-0c20b15a3ce3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vfmqkl/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-vfmqkl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4401" generation=1 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Determined Delete action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4405" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="adding finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4402" generation=1 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Set owner reference" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4410" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4390" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Encountered error, re-queuing..." name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4354" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4405" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4354" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4390" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="applying ownership" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4410" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4412" generation=1 uid="2cee6293-0dee-4944-8153-ab4ced9c6130" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4419" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/aso-sample-pdz.com resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "aso-sample-pdz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1api20-34a2e/aso-sample-pdz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 728ea001-7f2f-4b58-9000-162d92252318, UID in object meta: " name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-34a2e" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Modifying ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="About to send resource to Azure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4417" generation=2 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Set owner reference" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Modifying ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Successfully modified ARM payload" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="About to send resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Successfully sent resource to Azure" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="adding finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4414" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" id="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" resourceID="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4419" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4386" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" requeueAfter="1s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4386" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4424" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/76289c85-93b9-4eb7-a190-b06ceeabf997?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Done with reconcile" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4430" generation=2 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4431" generation=1 uid="2cee6293-0dee-4944-8153-ab4ced9c6130" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/07f3c8ab-0935-46a6-b3ad-813243e743ae?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4419" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4410" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="adding finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Resource not created yet, will check again" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" requeueAfter="2s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Didn't commit obj as there was no change" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4426" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4410" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4430" generation=2 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4424" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/76289c85-93b9-4eb7-a190-b06ceeabf997?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Owner exists but is not ready. Current condition" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleroutetable, Group/Kind: network.azure.com/RouteTable" cannot be found. Progress is blocked until the owner is created." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4431" generation=1 uid="2cee6293-0dee-4944-8153-ab4ced9c6130" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/07f3c8ab-0935-46a6-b3ad-813243e743ae?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Resource successfully created/updated" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Got ARM status" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" status="{\"etag\":\"W/\\\"28e29e7e-4587-45a8-b5bb-e8604deca375\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer\",\"location\":\"westus2\",\"name\":\"aso-sample-loadbalancer\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"28e29e7e-4587-45a8-b5bb-e8604deca375\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/inboundNatPools/MyFancyNatPool\"}],\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"28e29e7e-4587-45a8-b5bb-e8604deca375\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/inboundNatPools/MyFancyNatPool\",\"name\":\"MyFancyNatPool\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"fcb514a8-d516-44ec-a54a-1d0fe03c1478\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4432" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Determined CreateOrUpdate action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Resource successfully created/updated" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Got ARM status" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" status="{\"etag\":\"W/\\\"c67be9f4-fff5-421c-9490-cfad664fa340\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable\",\"location\":\"westcentralus\",\"name\":\"sampleroutetable\",\"properties\":{\"disableBgpRoutePropagation\":true,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"f93e890f-b045-40c4-bfa3-783a70c9bcdf\"},\"type\":\"Microsoft.Network/routeTables\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4419" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/cc73bcd5-5dff-42dd-b4ed-83bfb7d4b1f1?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4437" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" status="{\"id\":\"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve\",\"location\":\"westus2\",\"name\":\"asotest-rg-gxhtve\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2023-09-08T21:48:30Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Got ARM status" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" status="{\"etag\":\"W/\\\"2e675e04-e751-4ac3-accc-69bded65f601\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg\",\"location\":\"westcentralus\",\"name\":\"samplensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/defaultSecurityRules/DenyAllOutBound\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"485cffcd-0b2d-4214-8b85-39e4f29f4692\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4439" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4436" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4430" generation=2 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="About to send resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Successfully sent resource to Azure" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="870" generation=1 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4439" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4447" generation=1 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Done with reconcile" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4450" generation=1 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Resource creation/update failure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"RetryableErrorDueToAnotherOperation\",\n \"message\": \"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "RetryableErrorDueToAnotherOperation", +[controller:test-integration-envtest] "message": "Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4430" generation=2 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4410" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Encountered error, re-queuing..." name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4415" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYTRiMWY3NWQtZjg3ZS00NGMxLWFiYTQtY2I4MTI1ZThkNWJjIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="About to send resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Resource successfully created/updated" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Got ARM status" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" status="{\"etag\":\"\\\"51006ac7-0000-0400-0000-64ac9cc90000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset\",\"location\":\"westus2\",\"name\":\"aso-sample-outbound-ep-dnsforwardingruleset\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3d09d8b7-da86-4a28-a117-e0f3cfc34e90\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers/outboundEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="updated resource in etcd" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4453" generation=1 uid="2cee6293-0dee-4944-8153-ab4ced9c6130" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTableController "msg"="Done with reconcile" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully sent resource to Azure" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4456" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4446" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4410" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="applying ownership" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4454" generation=1 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4430" generation=2 uid="e93f7519-5980-4bfc-8e14-3d358f9b67b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYRVpEUUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4458" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotest-rg-xezdqa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Set owner reference" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=RouteTable" ownerName="sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4456" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4382" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4458" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4439" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Resource creation/update failure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: InvalidResourceReference\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"InvalidResourceReference\",\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\",\n \"details\": []\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: InvalidResourceReference, Severity: Warning, RetryClassification: RetrySlow, Cause: Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: InvalidResourceReference +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InvalidResourceReference", +[controller:test-integration-envtest] "message": "Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.", +[controller:test-integration-envtest] "details": [] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="samplensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4464" generation=1 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4439" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4456" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-12126/asotest-rg-xezdqa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-xezdqa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-managedidentity-12126/asotest-rg-xezdqa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e93f7519-5980-4bfc-8e14-3d358f9b67b7, UID in object meta: " name="asotest-rg-xezdqa" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="adding finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx\",\"location\":\"westus2\",\"name\":\"asotest-rg-gvdetx\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4467" generation=1 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Owner exists but is not ready. Current condition" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" cannot be found. Progress is blocked until the owner is created." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4456" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4471" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" status="{\"etag\":\"W/\\\"31b881fb-5689-4b53-812c-14b4f7d27a87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer\",\"location\":\"westcentralus\",\"name\":\"sampleloadbalancer\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"31b881fb-5689-4b53-812c-14b4f7d27a87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"31b881fb-5689-4b53-812c-14b4f7d27a87\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatPools/samplenatpool\",\"name\":\"samplenatpool\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a783dd41-ca73-44ea-8b31-5b4f20195c4e\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-managedidentity-12126/asotest-rg-xezdqa aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqckbee aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqgmdzi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4470" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"2cee6293-0dee-4944-8153-ab4ced9c6130", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleroutetable, Group/Kind: network.azure.com/RouteTable\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4456" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Encountered error, re-queuing..." name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4476" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4471" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4473" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"641d3a2a-217c-42e8-b8df-590a4a56744b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="20s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined CreateOrUpdate action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4476" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InvalidResourceReference\", Message = \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: InvalidResourceReference\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InvalidResourceReference\\\",\\n \\\"message\\\": \\\"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic was not found. Please make sure that the referenced resource exists, and that both resources are in the same region.\\\",\\n \\\"details\\\": []\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Resource successfully created/updated" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4346" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="applying ownership" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Got ARM status" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" status="{\"etag\":\"W/\\\"c1808ad9-d70c-43f8-8a5b-25e84b4dd009\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering\",\"name\":\"samplepeering\",\"properties\":{\"allowForwardedTraffic\":false,\"allowGatewayTransit\":false,\"allowVirtualNetworkAccess\":true,\"doNotVerifyRemoteGateways\":false,\"peeringState\":\"Initiated\",\"provisioningState\":\"Succeeded\",\"remoteAddressSpace\":{\"addressPrefixes\":[\"172.16.0.0/16\"]},\"remoteVirtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2\"},\"resourceGuid\":\"a8334ca4-df4b-0721-3519-8adcecfe7ec0\",\"useRemoteGateways\":false},\"type\":\"Microsoft.Network/virtualNetworks/virtualNetworkPeerings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4477" generation=1 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4479" generation=1 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="About to send resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Successfully sent resource to Azure" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Set owner reference" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" ownerGvk="network.azure.com/v1api20201101storage, Kind=LoadBalancer" ownerName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4423" generation=2 uid="768bbed0-234a-4621-971f-09df130da81c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRTUkVMSVgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4456" generation=2 uid="0ac8d258-61ac-4c91-9b2c-23c529f0e822" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFTUtBQkwtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4472" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f52f238b-4456-4138-94da-e4ef39e72f0b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" status="{\"etag\":\"W/\\\"a3cd6103-7a76-43e8-bafd-9d560d48a3df\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westcentralus\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"2hbc4ovjaatepaz2ivs2u2nqxb.yx.internal.cloudapp.net\"},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"a3cd6103-7a76-43e8-bafd-9d560d48a3df\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"de453b8b-11b4-42a9-8759-07b2d52783dd\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="4482" generation=2 uid="91cc8749-ffef-4f44-bb78-34b506dbfa0d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-xezdqa", UID:"e93f7519-5980-4bfc-8e14-3d358f9b67b7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-xezdqa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="asotest-rg-emkabl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="asotest-rg-srelix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="adding finalizer" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="updated resource in etcd" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4488" generation=1 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Done with reconcile" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4472" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f52f238b-4456-4138-94da-e4ef39e72f0b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"RetryableErrorDueToAnotherOperation\\\",\\n \\\"message\\\": \\\"Operation PutVirtualNetworkPeeringOperation (dca9636f-2e58-4d3e-8b4c-7928c7eb0c9d) is updating resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet. The call can be retried in 12 seconds.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] UserAssignedIdentityController "msg"="Determined Delete action" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqckbee" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4492" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"641d3a2a-217c-42e8-b8df-590a4a56744b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6ee8ba2d-5888-4e95-83fd-e0202e993123?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" status="{\"etag\":\"W/\\\"af8b4e26-5389-4d9d-8fe5-7d1a3423205f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASOTEST-RG-ICHWPB/providers/Microsoft.Network/networkInterfaces/SAMPLENIC/ipConfigurations/IPCONFIG1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4493" generation=1 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4494" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"2cee6293-0dee-4944-8153-ab4ced9c6130", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/910f1625-d6b9-43c3-95c5-c57b0a032844?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4492" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"641d3a2a-217c-42e8-b8df-590a4a56744b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6ee8ba2d-5888-4e95-83fd-e0202e993123?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4490" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"LoadBalancer", Name:"sampleloadbalancer", UID:"29730eb5-7953-4ab2-b521-de29decc319b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqckbee resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "asotestqckbee": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqckbee, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 91cc8749-ffef-4f44-bb78-34b506dbfa0d, UID in object meta: " name="asotestqckbee" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/asotest-rg-emkabl resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-emkabl": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/asotest-rg-emkabl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0ac8d258-61ac-4c91-9b2c-23c529f0e822, UID in object meta: " name="asotest-rg-emkabl" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/asotest-rg-srelix resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-srelix": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/asotest-rg-srelix, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 768bbed0-234a-4621-971f-09df130da81c, UID in object meta: " name="asotest-rg-srelix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/asotest-rg-srelix aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-pdz.com aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vn aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-aaaa aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-a aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-cname aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-mx aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-ptr aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-srv aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-txt aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vnetlink]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/asotest-rg-emkabl aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-aaaa aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-a aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-cname aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-mx aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ptr aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-caa aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ns aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-srv aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-txt]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4494" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"2cee6293-0dee-4944-8153-ab4ced9c6130", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/910f1625-d6b9-43c3-95c5-c57b0a032844?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4501" generation=1 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Determined CreateOrUpdate action" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" status="{\"etag\":\"W/\\\"12adae95-64fc-4c07-9e1d-0175ac6ac276\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule\",\"name\":\"samplerule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to source port 23-45 and destination port 45-56\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"46-56\",\"direction\":\"Inbound\",\"priority\":123,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"23-45\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Reconcile invoked" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="4500" generation=1 uid="f8eb1ebe-054b-4ed6-ba90-4618128ba782" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="applying ownership" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Determined CreateOrUpdate action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Resource successfully created/updated" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Got ARM status" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" status="{\"etag\":\"W/\\\"42a51df0-029b-43b4-9ec6-b53d9a993507\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute\",\"name\":\"sampleroute\",\"properties\":{\"addressPrefix\":\"cab:cab::/96\",\"hasBgpOverride\":false,\"nextHopIpAddress\":\"ace:cab:deca:f00d::1\",\"nextHopType\":\"VirtualAppliance\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/routeTables/routes\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Set owner reference" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="About to send resource to Azure" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Successfully sent resource to Azure" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Resource successfully created/updated" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Got ARM status" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" status="{\"etag\":\"W/\\\"a6fc2ea3-9f59-4dee-be38-9c10c06d3b39\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule\",\"name\":\"sampleinboundnatrule\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPort\":23,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZoneController "msg"="Reconcile invoked" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZone,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4508" generation=2 uid="17421763-ecf9-467e-b2e2-09dbd8e2c866" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-emkabl", UID:"0ac8d258-61ac-4c91-9b2c-23c529f0e822", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-emkabl, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="adding finalizer" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="4509" generation=2 uid="e819ddb0-dc1b-4c18-8cee-6d58570bc2a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="2m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZoneController "msg"="Determined Delete action" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZoneController "msg"="Starting delete of resource" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-dz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Determined Delete action" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-pdz.com" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4513" generation=1 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"641d3a2a-217c-42e8-b8df-590a4a56744b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="updated resource in etcd" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4512" generation=1 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"2cee6293-0dee-4944-8153-ab4ced9c6130", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] RouteTablesRouteController "msg"="Done with reconcile" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4516" generation=2 uid="c2690073-5dce-4019-a1e5-f26a0ea7f8a0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-srelix", UID:"768bbed0-234a-4621-971f-09df130da81c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-srelix, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="updated resource in etcd" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="4514" generation=1 uid="f8eb1ebe-054b-4ed6-ba90-4618128ba782" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"b228d8d4-2637-4acd-9684-88045982e9f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="updated resource in etcd" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4520" generation=1 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"LoadBalancer", Name:"sampleloadbalancer", UID:"29730eb5-7953-4ab2-b521-de29decc319b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] LoadBalancersInboundNatRuleController "msg"="Done with reconcile" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] DnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com resource status: Operation cannot be fulfilled on dnszones.network.azure.com "aso-sample-dz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszones/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-dz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 17421763-ecf9-467e-b2e2-09dbd8e2c866, UID in object meta: " name="aso-sample-dz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] FederatedIdentityCredentialController "msg"="Reconcile invoked" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" kind="&TypeMeta{Kind:FederatedIdentityCredential,APIVersion:managedidentity.azure.com/v1api20220131previewstorage,}" resourceVersion="4519" generation=2 uid="fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"managedidentity.azure.com/v1api20181130storage", Kind:"UserAssignedIdentity", Name:"asotestqckbee", UID:"91cc8749-ffef-4f44-bb78-34b506dbfa0d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xezdqa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/asotestqckbee/federatedIdentityCredentials/asotestqgmdzi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotestqckbee, Group/Kind: managedidentity.azure.com/UserAssignedIdentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] FederatedIdentityCredentialController "msg"="Determined Delete action" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] FederatedIdentityCredentialController "msg"="Starting delete of resource" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] FederatedIdentityCredentialController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" azureName="asotestqgmdzi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] FederatedIdentityCredentialController "msg"="Delete succeeded, removing finalizer" name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="About to send resource to Azure" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Successfully sent resource to Azure" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-pdz.com resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "aso-sample-pdz.com": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-pdz.com, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e819ddb0-dc1b-4c18-8cee-6d58570bc2a4, UID in object meta: " name="aso-sample-pdz.com" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4525" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="applying ownership" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vn resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c2690073-5dce-4019-a1e5-f26a0ea7f8a0, UID in object meta: " name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] FederatedIdentityCredentialController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqgmdzi resource status: Operation cannot be fulfilled on federatedidentitycredentials.managedidentity.azure.com "asotestqgmdzi": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/federatedidentitycredentials/aso-test-samples-creationanddeletion-test-managedidentity-12126/asotestqgmdzi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fab1f6ba-0f86-42f1-a3a4-95e9e5a352e3, UID in object meta: " name="asotestqgmdzi" namespace="aso-test-samples-creationanddeletion-test-managedidentity-12126" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="Set owner reference" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="updated resource in etcd" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="4531" generation=1 uid="f8eb1ebe-054b-4ed6-ba90-4618128ba782" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"b228d8d4-2637-4acd-9684-88045982e9f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx/operationResults/5c34b0b5-c27f-496c-ac65-8f4b23c1cd5f?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Done with reconcile" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4533" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BastionHostController "msg"="applying ownership" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Reconcile invoked" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="4531" generation=1 uid="f8eb1ebe-054b-4ed6-ba90-4618128ba782" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"b228d8d4-2637-4acd-9684-88045982e9f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx/operationResults/5c34b0b5-c27f-496c-ac65-8f4b23c1cd5f?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="adding finalizer" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BastionHostController "msg"="Set owner reference" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4536" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsForwardingRulesetController "msg"="applying ownership" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Resource successfully created/updated" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Got ARM status" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx\",\"identity\":{\"type\":\"None\"},\"location\":\"westcentralus\",\"name\":\"asotestxyqskx\",\"properties\":{\"accountEndpoint\":\"asotestxyqskx.westcentralus.batch.azure.com\",\"activeJobAndJobScheduleQuota\":300,\"dedicatedCoreQuota\":0,\"dedicatedCoreQuotaPerVMFamily\":[{\"coreQuota\":0,\"name\":\"standardAv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv3Family\"},{\"coreQuota\":0,\"name\":\"standardEv3Family\"},{\"coreQuota\":0,\"name\":\"standardDSv2Family\"},{\"coreQuota\":0,\"name\":\"standardDSv3Family\"},{\"coreQuota\":0,\"name\":\"standardESv3Family\"},{\"coreQuota\":0,\"name\":\"standardFSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCFamily\"},{\"coreQuota\":0,\"name\":\"standardNVFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv4Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardA0_A7Family\"},{\"coreQuota\":0,\"name\":\"standardA8_A11Family\"},{\"coreQuota\":0,\"name\":\"standardDFamily\"},{\"coreQuota\":0,\"name\":\"standardGFamily\"},{\"coreQuota\":0,\"name\":\"basicAFamily\"},{\"coreQuota\":0,\"name\":\"standardFFamily\"},{\"coreQuota\":0,\"name\":\"standardNVPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardNCPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardHFamily\"},{\"coreQuota\":0,\"name\":\"standardHPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardMSFamily\"},{\"coreQuota\":0,\"name\":\"standardDSFamily\"},{\"coreQuota\":0,\"name\":\"standardFSFamily\"},{\"coreQuota\":0,\"name\":\"standardGSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNDSFamily\"},{\"coreQuota\":0,\"name\":\"standardNCSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBSFamily\"},{\"coreQuota\":0,\"name\":\"standardHCSFamily\"},{\"coreQuota\":0,\"name\":\"standardNVSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBrsv2Family\"},{\"coreQuota\":0,\"name\":\"standardDAv4Family\"},{\"coreQuota\":0,\"name\":\"standardDASv4Family\"},{\"coreQuota\":0,\"name\":\"standardEAv4Family\"},{\"coreQuota\":0,\"name\":\"standardEASv4Family\"},{\"coreQuota\":0,\"name\":\"standardMSv2Family\"},{\"coreQuota\":0,\"name\":\"standardEIv3Family\"},{\"coreQuota\":0,\"name\":\"standardNVSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NCASv3_T4 Family\"},{\"coreQuota\":0,\"name\":\"standardXEIDSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NDASv4_A100 Family\"},{\"coreQuota\":0,\"name\":\"standardDCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardHBv3Family\"},{\"coreQuota\":0,\"name\":\"standardNPSFamily\"},{\"coreQuota\":0,\"name\":\"standardFXMDVSFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv5Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardNCADSA100v4Family\"},{\"coreQuota\":0,\"name\":\"standardDADSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEADSv5Family\"}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"lowPriorityCoreQuota\":0,\"poolAllocationMode\":\"BatchService\",\"poolQuota\":100,\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.Batch/batchAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4539" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolverController "msg"="applying ownership" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsForwardingRulesetController "msg"="Set owner reference" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BastionHostController "msg"="adding finalizer" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesAAAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4538" generation=2 uid="322bedb5-65ec-427b-ae49-df4aa8cf98bd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/AAAA/aso-sample-record-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolverController "msg"="Set owner reference" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesAAAARecordController "msg"="Determined Delete action" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesAAAARecordController "msg"="Starting delete of resource" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesAAAARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesAAAARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource not created yet, will check again" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" requeueAfter="1m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Didn't commit obj as there was no change" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsForwardingRulesetController "msg"="adding finalizer" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4544" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="updated resource in etcd" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4540" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolverController "msg"="adding finalizer" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4546" generation=2 uid="61faaf92-fa91-4194-8d2c-8f57a4489c81" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/A/aso-sample-record-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4459" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d52e315d-c532-48d4-930e-95021c9fd6a7?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BastionHostController "msg"="updated resource in etcd" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4547" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesAAAARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesAAAARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4545" generation=2 uid="1be92003-0656-4874-a4dd-b93d842d527a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/AAAA/aso-sample-recordset-aaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesARecordController "msg"="Reconcile invoked" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesARecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4552" generation=2 uid="b6e14555-d79f-40c9-a625-1fdddf8197b6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/A/aso-sample-recordset-a"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Determined CreateOrUpdate action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Resource successfully created/updated" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] VirtualNetworkGatewayController "msg"="Got ARM status" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" status="{\"etag\":\"W/\\\"8a340626-021a-418f-be4d-a41fd4d3696a\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway\",\"location\":\"westcentralus\",\"name\":\"samplevnetgateway\",\"properties\":{\"activeActive\":false,\"bgpSettings\":{\"asn\":65515,\"bgpPeeringAddress\":\"172.16.255.254\",\"bgpPeeringAddresses\":[{\"defaultBgpIpAddresses\":[\"172.16.255.254\"],\"ipconfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"tunnelIpAddresses\":[\"4.255.237.214\"]}],\"peerWeight\":0},\"enableBgp\":false,\"enablePrivateIpAddress\":false,\"gatewayType\":\"Vpn\",\"ipConfigurations\":[{\"etag\":\"W/\\\"8a340626-021a-418f-be4d-a41fd4d3696a\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway/ipConfigurations/config1\",\"name\":\"config1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet\"}}}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"736158cb-11bd-4a3c-aa15-9efbbaffd06f\",\"sku\":{\"capacity\":2,\"name\":\"VpnGw2\",\"tier\":\"VpnGw2\"},\"vpnGatewayGeneration\":\"Generation2\",\"vpnType\":\"RouteBased\"},\"type\":\"Microsoft.Network/virtualNetworkGateways\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesARecordController "msg"="Determined Delete action" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesARecordController "msg"="Starting delete of resource" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesARecordController "msg"="Determined Delete action" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesARecordController "msg"="Starting delete of resource" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesAAAARecordController "msg"="Determined Delete action" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesAAAARecordController "msg"="Starting delete of resource" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesAAAARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-aaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateDnsZonesAAAARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="updated resource in etcd" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="4553" generation=1 uid="f8eb1ebe-054b-4ed6-ba90-4618128ba782" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"b228d8d4-2637-4acd-9684-88045982e9f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BatchAccountController "msg"="Done with reconcile" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4554" generation=2 uid="b0408fcd-6b36-4888-b7a4-726d973938b9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CNAME/aso-sample-record-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:42Z] DnsZonesAAAARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-aaaa resource status: Operation cannot be fulfilled on dnszonesaaaarecords.network.azure.com "aso-sample-record-aaaa": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesaaaarecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-aaaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 322bedb5-65ec-427b-ae49-df4aa8cf98bd, UID in object meta: " name="aso-sample-record-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4556" generation=1 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateLinkServiceController "msg"="applying ownership" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="About to send resource to Azure" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] PrivateEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsForwardingRulesetController "msg"="updated resource in etcd" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4549" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesCNAMERecordController "msg"="Determined Delete action" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesCNAMERecordController "msg"="Starting delete of resource" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesCNAMERecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-cname" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsZonesCNAMERecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:42Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4555" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Set owner reference" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesMXRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4560" generation=2 uid="69c64cd3-ed7e-4ca1-83f7-451a3d587504" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/MX/aso-sample-record-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesCNAMERecordController "msg"="Reconcile invoked" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesCNAMERecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4559" generation=2 uid="f724b3e1-5a73-4a34-8421-8e4a6e86eee0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:42 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/CNAME/aso-sample-recordset-cname"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="About to send resource to Azure" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Successfully sent resource to Azure" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Reconcile invoked" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4566" generation=1 uid="3c0cea86-eb59-4a76-9dea-dbd7a12c17d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="applying ownership" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesMXRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesMXRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4569" generation=2 uid="be1d08b5-1e5c-49dc-a678-4bbc3ee32f42" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/MX/aso-sample-recordset-mx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] VirtualNetworkGatewayController "msg"="updated resource in etcd" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4573" generation=1 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] VirtualNetworkGatewayController "msg"="Done with reconcile" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="About to send resource to Azure" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Successfully sent resource to Azure" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesMXRecordController "msg"="Determined Delete action" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesMXRecordController "msg"="Starting delete of resource" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesMXRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesMXRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesAAAARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-aaaa resource status: Operation cannot be fulfilled on privatednszonesaaaarecords.network.azure.com "aso-sample-recordset-aaaa": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesaaaarecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-aaaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1be92003-0656-4874-a4dd-b93d842d527a, UID in object meta: " name="aso-sample-recordset-aaaa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesCNAMERecordController "msg"="Determined Delete action" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesCNAMERecordController "msg"="Starting delete of resource" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesCNAMERecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-cname" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesCNAMERecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-a resource status: Operation cannot be fulfilled on dnszonesarecords.network.azure.com "aso-sample-record-a": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesarecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-a, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 61faaf92-fa91-4194-8d2c-8f57a4489c81, UID in object meta: " name="aso-sample-record-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-a resource status: Operation cannot be fulfilled on privatednszonesarecords.network.azure.com "aso-sample-recordset-a": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesarecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-a, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b6e14555-d79f-40c9-a625-1fdddf8197b6, UID in object meta: " name="aso-sample-recordset-a" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="updated resource in etcd" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4574" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesCNAMERecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-cname resource status: Operation cannot be fulfilled on dnszonescnamerecords.network.azure.com "aso-sample-record-cname": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonescnamerecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-cname, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b0408fcd-6b36-4888-b7a4-726d973938b9, UID in object meta: " name="aso-sample-record-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesMXRecordController "msg"="Determined Delete action" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesMXRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesMXRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-mx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesMXRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesPTRRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4572" generation=2 uid="801ae683-0f1e-4624-9169-64845423a75a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/PTR/aso-sample-record-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4574" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4575" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesCAARecordController "msg"="Reconcile invoked" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesCAARecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4581" generation=2 uid="97856e1c-bef8-4bf6-8371-671a21a2c9eb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/CAA/aso-sample-record-caa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Set owner reference" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4577" generation=1 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesPTRRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesPTRRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4580" generation=2 uid="36c65297-1f55-452f-a85c-712490957811" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/PTR/aso-sample-recordset-ptr"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4576" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4584" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="adding finalizer" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4574" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesCAARecordController "msg"="Determined Delete action" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesCAARecordController "msg"="Starting delete of resource" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesCAARecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-caa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesCAARecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="updated resource in etcd" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4579" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="updated resource in etcd" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4588" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="About to send resource to Azure" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Successfully sent resource to Azure" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesPTRRecordController "msg"="Determined Delete action" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesPTRRecordController "msg"="Starting delete of resource" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesPTRRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesPTRRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesPTRRecordController "msg"="Determined Delete action" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesPTRRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesPTRRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-ptr" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesPTRRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="adding finalizer" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4588" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesSRVRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4592" generation=2 uid="0db0f3b5-401f-45c4-84b4-4fa8ee662c8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/SRV/aso-sample-recordset-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" requeueAfter="20s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesMXRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-mx resource status: Operation cannot be fulfilled on privatednszonesmxrecords.network.azure.com "aso-sample-recordset-mx": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesmxrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-mx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: be1d08b5-1e5c-49dc-a678-4bbc3ee32f42, UID in object meta: " name="aso-sample-recordset-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesNSRecordController "msg"="Reconcile invoked" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesNSRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4591" generation=2 uid="407c525a-0d23-4392-9a81-e27b010d01a8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/NS/aso-sample-record-ns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesMXRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-mx resource status: Operation cannot be fulfilled on dnszonesmxrecords.network.azure.com "aso-sample-record-mx": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesmxrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-mx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 69c64cd3-ed7e-4ca1-83f7-451a3d587504, UID in object meta: " name="aso-sample-record-mx" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Resource not created yet, will check again" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Didn't commit obj as there was no change" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesSRVRecordController "msg"="Reconcile invoked" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesSRVRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4598" generation=2 uid="be774fa5-6ad8-46df-99d6-95992560efee" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/SRV/aso-sample-record-srv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesSRVRecordController "msg"="Determined Delete action" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesSRVRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesSRVRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesSRVRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesCNAMERecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-cname resource status: Operation cannot be fulfilled on privatednszonescnamerecords.network.azure.com "aso-sample-recordset-cname": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonescnamerecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-cname, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f724b3e1-5a73-4a34-8421-8e4a6e86eee0, UID in object meta: " name="aso-sample-recordset-cname" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4574" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b31c495-a887-4765-ab22-6049cbbcc68d?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesNSRecordController "msg"="Determined Delete action" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesNSRecordController "msg"="Starting delete of resource" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesNSRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-ns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesNSRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesSRVRecordController "msg"="Determined Delete action" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesSRVRecordController "msg"="Starting delete of resource" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesSRVRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-srv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesSRVRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4594" generation=1 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4588" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Resource not created yet, will check again" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" kind="&TypeMeta{Kind:DnsZonesTXTRecord,APIVersion:network.azure.com/v1api20180501storage,}" resourceVersion="4606" generation=2 uid="de9a70b0-a5dd-4b20-bda9-17ff57f32156" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180501storage", Kind:"DnsZone", Name:"aso-sample-dz.com", UID:"17421763-ecf9-467e-b2e2-09dbd8e2c866", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-emkabl/providers/Microsoft.Network/dnsZones/aso-sample-dz.com/TXT/aso-sample-record-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-dz.com, Group/Kind: network.azure.com/DnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Didn't commit obj as there was no change" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesPTRRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-ptr resource status: Operation cannot be fulfilled on privatednszonesptrrecords.network.azure.com "aso-sample-recordset-ptr": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesptrrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-ptr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 36c65297-1f55-452f-a85c-712490957811, UID in object meta: " name="aso-sample-recordset-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Resource successfully created/updated" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Got ARM status" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" status="{\"etag\":\"W/\\\"155bffd8-0a4b-4171-ac34-e2fe2049cef2\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint\",\"location\":\"westus2\",\"name\":\"aso-sample-privateendpoint\",\"properties\":{\"customDnsConfigs\":[{\"fqdn\":\"asosamplestorage.blob.core.windows.net\",\"ipAddresses\":[\"10.0.0.4\"]}],\"customNetworkInterfaceName\":\"\",\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/networkInterfaces/aso-sample-privateendpoint.nic.b05002b2-74c2-4362-94bd-2a839f801184\"}],\"privateLinkServiceConnections\":[{\"etag\":\"W/\\\"155bffd8-0a4b-4171-ac34-e2fe2049cef2\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateLinkServiceConnections/testEndpoint\",\"name\":\"testEndpoint\",\"properties\":{\"groupIds\":[\"blob\"],\"privateLinkServiceConnectionState\":{\"actionsRequired\":\"None\",\"description\":\"Auto-Approved\",\"status\":\"Approved\"},\"privateLinkServiceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"}],\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1\"}},\"type\":\"Microsoft.Network/privateEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn\",\"location\":\"westus2\",\"name\":\"asotest-rg-vdecpn\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="updated resource in etcd" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4597" generation=1 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] NatGatewayController "msg"="Reconcile invoked" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4603" generation=1 uid="e5a2cbd5-a530-4bc1-9418-40af132a0d56" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] NatGatewayController "msg"="applying ownership" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesCAARecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-caa resource status: Operation cannot be fulfilled on dnszonescaarecords.network.azure.com "aso-sample-record-caa": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonescaarecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-caa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 97856e1c-bef8-4bf6-8371-671a21a2c9eb, UID in object meta: " name="aso-sample-record-caa" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesPTRRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ptr resource status: Operation cannot be fulfilled on dnszonesptrrecords.network.azure.com "aso-sample-record-ptr": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesptrrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ptr, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 801ae683-0f1e-4624-9169-64845423a75a, UID in object meta: " name="aso-sample-record-ptr" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="updated resource in etcd" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4595" generation=1 uid="3c0cea86-eb59-4a76-9dea-dbd7a12c17d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4609" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="applying ownership" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesTXTRecordController "msg"="Determined Delete action" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesTXTRecordController "msg"="Starting delete of resource" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesTXTRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" azureName="aso-sample-record-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsZonesTXTRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4611" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4612" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4613" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesTXTRecordController "msg"="Reconcile invoked" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesTXTRecord,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4607" generation=2 uid="7e095aa3-b1f2-40c9-b421-2963e9c83362" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:40 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/TXT/aso-sample-recordset-txt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Determined CreateOrUpdate action" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4614" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Determined CreateOrUpdate action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Extension post-reconcile check running" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Extension post-reconcile check succeeded" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" Result=extensions.PostReconcileCheckResult{action:"Success", severity:"", reason:conditions.Reason{Name:"", RetryClassification:""}, message:""} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4612" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4611" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4613" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4588" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesTXTRecordController "msg"="Determined Delete action" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesTXTRecordController "msg"="Starting delete of resource" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesTXTRecordController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-recordset-txt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesTXTRecordController "msg"="Delete succeeded, removing finalizer" name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" cannot be found. Progress is blocked until the owner is created." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" cannot be found. Progress is blocked until the owner is created." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] NatGatewayController "msg"="Set owner reference" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Resource not created yet, will check again" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Didn't commit obj as there was no change" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="4619" generation=2 uid="6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"aso-sample-pdz.com", UID:"e819ddb0-dc1b-4c18-8cee-6d58570bc2a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-srelix/providers/Microsoft.Network/privateDnsZones/aso-sample-pdz.com/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-pdz.com, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesNSRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ns resource status: Operation cannot be fulfilled on dnszonesnsrecords.network.azure.com "aso-sample-record-ns": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonesnsrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-ns, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 407c525a-0d23-4392-9a81-e27b010d01a8, UID in object meta: " name="aso-sample-record-ns" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="About to send resource to Azure" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesSRVRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-srv resource status: Operation cannot be fulfilled on dnszonessrvrecords.network.azure.com "aso-sample-record-srv": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonessrvrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-srv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: be774fa5-6ad8-46df-99d6-95992560efee, UID in object meta: " name="aso-sample-record-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4622" generation=1 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined Delete action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Starting delete of resource" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4614" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4588" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zRm9yd2FyZGluZ1J1bGVzZXQiLCJPcGVyYXRpb25JZCI6ImQ2YzkyZTUzLWM1NjMtNDJlMy04MmFkLTI5YjcxYTEyOTJlOCJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesSRVRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-srv resource status: Operation cannot be fulfilled on privatednszonessrvrecords.network.azure.com "aso-sample-recordset-srv": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonessrvrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-srv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0db0f3b5-401f-45c4-84b4-4fa8ee662c8d, UID in object meta: " name="aso-sample-recordset-srv" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Successfully sent resource to Azure" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4613" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="About to send resource to Azure" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Successfully sent resource to Azure" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsZonesTXTRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-txt resource status: Operation cannot be fulfilled on dnszonestxtrecords.network.azure.com "aso-sample-record-txt": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnszonestxtrecords/aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9/aso-sample-record-txt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: de9a70b0-a5dd-4b20-bda9-17ff57f32156, UID in object meta: " name="aso-sample-record-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-fd1b9" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Determined CreateOrUpdate action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Resource successfully created/updated" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Got ARM status" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" status="{\"etag\":\"\\\"3301edfd-0000-0400-0000-64ac9cec0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset\",\"location\":\"westus2\",\"name\":\"aso-sample-ruleset\",\"properties\":{\"dnsResolverOutboundEndpoints\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"57748b0d-282f-4667-9bd5-d9b5e5119442\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsForwardingRulesets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesTXTRecordController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-txt resource status: Operation cannot be fulfilled on privatednszonestxtrecords.network.azure.com "aso-sample-recordset-txt": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonestxtrecords/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-recordset-txt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7e095aa3-b1f2-40c9-b421-2963e9c83362, UID in object meta: " name="aso-sample-recordset-txt" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4613" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4614" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4611" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] NatGatewayController "msg"="adding finalizer" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4612" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Encountered error, re-queuing..." name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4626" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Encountered error, re-queuing..." name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="updated resource in etcd" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4632" generation=1 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointController "msg"="Done with reconcile" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4626" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="applying ownership" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4613" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4614" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4611" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="updated resource in etcd" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4634" generation=1 uid="3c0cea86-eb59-4a76-9dea-dbd7a12c17d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/221fa325-28d6-485d-9373-a9d020e36f45?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Done with reconcile" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4612" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="applying ownership" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Resource not created yet, will check again" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Didn't commit obj as there was no change" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Set owner reference" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=PrivateEndpoint" ownerName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="updated resource in etcd" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4638" generation=1 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77871966-8cb9-45fb-9e5a-dfc03dd2c9cd?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Done with reconcile" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vnetlink resource status: Operation cannot be fulfilled on privatednszonesvirtualnetworklinks.network.azure.com "aso-sample-vnetlink": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesvirtualnetworklinks/aso-test-samples-creationanddeletion-test-network-v1api20-ba68c/aso-sample-vnetlink, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6b0bf3f3-5f7a-4b81-ac31-725b9b1e43c4, UID in object meta: " name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-ba68c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="updated resource in etcd" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4636" generation=1 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRulesetController "msg"="Done with reconcile" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Reconcile invoked" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4634" generation=1 uid="3c0cea86-eb59-4a76-9dea-dbd7a12c17d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/221fa325-28d6-485d-9373-a9d020e36f45?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4614" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4613" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0RG5zUmVzb2x2ZXIiLCJPcGVyYXRpb25JZCI6IjRkNzRmZGIyLWU2ZTEtNDM4ZS1iMmNjLTBjMGUxNTRmN2E3YyJ9?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Set owner reference" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsForwardingRuleset" ownerName="aso-sample-ruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] NatGatewayController "msg"="updated resource in etcd" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4635" generation=1 uid="e5a2cbd5-a530-4bc1-9418-40af132a0d56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Determined CreateOrUpdate action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Resource successfully created/updated" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolverController "msg"="Got ARM status" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" status="{\"etag\":\"\\\"1300190d-0000-0400-0000-64ac9cf20000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver\",\"location\":\"westus2\",\"name\":\"aso-sample-resolver\",\"properties\":{\"dnsResolverState\":\"Connected\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"6b4fc71e-c4fb-47a6-bd22-f2e91b0ece8d\",\"virtualNetwork\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Determined CreateOrUpdate action" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Resource successfully created/updated" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PublicIPPrefixController "msg"="Got ARM status" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" status="{\"etag\":\"W/\\\"4919c6ee-e8a9-4c31-a133-164ae278686b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix\",\"location\":\"westus2\",\"name\":\"aso-sample-ipprefix\",\"properties\":{\"ipPrefix\":\"4.155.22.176/28\",\"prefixLength\":28,\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"resourceGuid\":\"374dd2d0-7628-4963-9cd2-53af27c1394d\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPPrefixes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4614" generation=2 uid="b228d8d4-2637-4acd-9684-88045982e9f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHVkRFVFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] NatGatewayController "msg"="Determined CreateOrUpdate action" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4638" generation=1 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77871966-8cb9-45fb-9e5a-dfc03dd2c9cd?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="adding finalizer" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Owner exists but is not ready. Current condition" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:43Z] DnsResolversOutboundEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" cannot be found. Progress is blocked until the owner is created." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotest-rg-gvdetx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Determined CreateOrUpdate action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Resource not created yet, will check again" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Didn't commit obj as there was no change" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Done with reconcile" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="1m20s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsForwardingRuleSetsForwardingRuleController "msg"="adding finalizer" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4611" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] DnsResolversInboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4638" generation=1 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77871966-8cb9-45fb-9e5a-dfc03dd2c9cd?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:43Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotest-rg-gvdetx aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotestxyqskx]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateLinkServiceController "msg"="Determined CreateOrUpdate action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateLinkServiceController "msg"="Resource successfully created/updated" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Resource not created yet, will check again" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" requeueAfter="2m40s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateLinkServiceController "msg"="Got ARM status" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" status="{\"etag\":\"W/\\\"6867568a-87c7-4440-a353-d90431cbd2c5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls\",\"location\":\"westus2\",\"name\":\"aso-sample-pls\",\"properties\":{\"alias\":\"aso-sample-pls.b85271a9-6824-4551-b758-edf24168337f.westus2.azure.privatelinkservice\",\"autoApproval\":{\"subscriptions\":[\"00000000-0000-0000-0000-000000000000\"]},\"enableProxyProtocol\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"6867568a-87c7-4440-a353-d90431cbd2c5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls/ipConfigurations/config\",\"name\":\"config\",\"properties\":{\"primary\":true,\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet\"}},\"type\":\"Microsoft.Network/privateLinkServices/ipConfigurations\"}],\"loadBalancerFrontendIpConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer/frontendIPConfigurations/LoadBalancerFrontend\"}],\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/networkInterfaces/aso-sample-pls.nic.facea96c-ab94-4dca-bda1-b1549018c505\"}],\"provisioningState\":\"Succeeded\",\"visibility\":{\"subscriptions\":[\"00000000-0000-0000-0000-000000000000\"]}},\"type\":\"Microsoft.Network/privateLinkServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Didn't commit obj as there was no change" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotest-rg-gvdetx resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gvdetx": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotest-rg-gvdetx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b228d8d4-2637-4acd-9684-88045982e9f6, UID in object meta: " name="asotest-rg-gvdetx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="About to send resource to Azure" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Successfully sent resource to Azure" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolverController "msg"="updated resource in etcd" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4650" generation=1 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolverController "msg"="Done with reconcile" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Encountered error, re-queuing..." name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4611" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="applying ownership" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4649" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4589" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e57cf296-661f-4102-8a73-e8128bec6204?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4651" generation=1 uid="2602a413-c084-459d-ac1d-323b827dea3c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Determined CreateOrUpdate action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Resource successfully created/updated" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Got ARM status" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" status="{\"etag\":\"W/\\\"f25241dd-e9e9-4def-b85f-119548ea60fa\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion\",\"location\":\"westus2\",\"name\":\"aso-sample-bastion\",\"properties\":{\"dnsName\":\"bst-9aee536d-7b1d-4974-86a1-88b55e65552e.bastion.azure.com\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion/bastionHostIpConfigurations/IpConf\"}],\"provisioningState\":\"Succeeded\",\"scaleUnits\":2},\"sku\":{\"name\":\"Basic\"},\"type\":\"Microsoft.Network/bastionHosts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4563" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="applying ownership" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPPrefixController "msg"="updated resource in etcd" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4656" generation=1 uid="3c0cea86-eb59-4a76-9dea-dbd7a12c17d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPPrefixController "msg"="Done with reconcile" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Determined CreateOrUpdate action" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateLinkServiceController "msg"="Successfully created resource" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" name="plsconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4658" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Set owner reference" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsResolver" ownerName="aso-sample-resolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4660" generation=1 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4654" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsForwardingRuleset", Name:"aso-sample-ruleset", UID:"79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Determined CreateOrUpdate action" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Set owner reference" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" ownerGvk="network.azure.com/v1api20220701storage, Kind=DnsResolver" ownerName="aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="updated resource in etcd" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4667" generation=1 uid="e5a2cbd5-a530-4bc1-9418-40af132a0d56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ac785157-55fe-42df-8d93-23952291ce39?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Done with reconcile" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BatchAccountController "msg"="Reconcile invoked" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="4662" generation=2 uid="f8eb1ebe-054b-4ed6-ba90-4618128ba782" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gvdetx", UID:"b228d8d4-2637-4acd-9684-88045982e9f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:44 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gvdetx/providers/Microsoft.Batch/batchAccounts/asotestxyqskx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-gvdetx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="updated resource in etcd" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4669" generation=1 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BastionHostController "msg"="Done with reconcile" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BatchAccountController "msg"="Determined Delete action" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BatchAccountController "msg"="Starting delete of resource" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BatchAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" azureName="asotestxyqskx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] BatchAccountController "msg"="Delete succeeded, removing finalizer" name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4665" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="About to send resource to Azure" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Successfully sent resource to Azure" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="adding finalizer" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="About to send resource to Azure" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Successfully sent resource to Azure" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Resource successfully created/updated" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Got ARM status" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" status="{\"etag\":\"\\\"9c0056af-0000-0400-0000-64ac9d020000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule\",\"name\":\"aso-sample-rule\",\"properties\":{\"domainName\":\"test.\",\"forwardingRuleState\":\"Disabled\",\"provisioningState\":\"Succeeded\",\"targetDnsServers\":[{\"ipAddress\":\"192.168.1.1\",\"port\":53}]},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsForwardingRulesets/forwardingRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Reconcile invoked" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4667" generation=1 uid="e5a2cbd5-a530-4bc1-9418-40af132a0d56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ac785157-55fe-42df-8d93-23952291ce39?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4668" generation=1 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4673" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Determined CreateOrUpdate action" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Resource successfully created/updated" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Got ARM status" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" status="{\"etag\":\"W/\\\"cf8664bc-6279-4b23-832b-410f1215e1c7\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw\",\"location\":\"westus2\",\"name\":\"aso-sample-netgw\",\"properties\":{\"idleTimeoutInMinutes\":4,\"provisioningState\":\"Succeeded\",\"publicIpAddresses\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip\"}],\"resourceGuid\":\"121d4457-4509-4c31-b389-c39d3fa99a2f\"},\"sku\":{\"name\":\"Standard\"},\"type\":\"Microsoft.Network/natGateways\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4675" generation=1 uid="2602a413-c084-459d-ac1d-323b827dea3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4672" generation=1 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4682" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/84dd0523-b1fc-47ea-8b9d-5a015fc773c1?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Done with reconcile" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh\",\"location\":\"westus2\",\"name\":\"asotest-rg-tayamh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="adding finalizer" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4679" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4685" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateLinkServiceController "msg"="updated resource in etcd" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4681" generation=1 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateLinkServiceController "msg"="Done with reconcile" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4682" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/84dd0523-b1fc-47ea-8b9d-5a015fc773c1?api-version=2022-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] BatchAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotestxyqskx resource status: Operation cannot be fulfilled on batchaccounts.batch.azure.com "asotestxyqskx": StorageError: invalid object, Code: 4, Key: /registry/batch.azure.com/batchaccounts/aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38/asotestxyqskx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f8eb1ebe-054b-4ed6-ba90-4618128ba782, UID in object meta: " name="asotestxyqskx" namespace="aso-test-samples-creationanddeletion-test-batch-v1beta-cr-ffe38" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4678" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4685" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Determined CreateOrUpdate action" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Resource successfully created/updated" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Got ARM status" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" status="{\"etag\":\"W/\\\"bf2f7b61-d78b-42cb-a9ee-7625d904e953\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup\",\"name\":\"aso-sample-dnszonegroup\",\"properties\":{\"privateDnsZoneConfigs\":[{\"name\":\"config\",\"properties\":{\"privateDnsZoneId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net\",\"recordSets\":[{\"fqdn\":\"asosamplestorage.privatelink.blob.core.windows.net\",\"ipAddresses\":[\"10.0.0.4\"],\"provisioningState\":\"Succeeded\",\"recordSetName\":\"asosamplestorage\",\"recordType\":\"A\",\"ttl\":10}]}}],\"provisioningState\":\"Succeeded\"}}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4689" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4688" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="updated resource in etcd" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4694" generation=1 uid="e5a2cbd5-a530-4bc1-9418-40af132a0d56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NatGatewayController "msg"="Done with reconcile" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4684" generation=1 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[]" owner= +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="updated resource in etcd" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4692" generation=1 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsForwardingRuleset", Name:"aso-sample-ruleset", UID:"79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Done with reconcile" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4697" generation=1 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh\",\"location\":\"westus2\",\"name\":\"asotest-rg-bhffyh\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4695" generation=1 uid="eed88b00-0ff3-4a00-8fd1-31518b00bd21" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner does not yet exist" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" NamespacedName="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="About to send resource to Azure" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss" not found)" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss" not found)" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4700" generation=1 uid="2602a413-c084-459d-ac1d-323b827dea3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/7b73b61c-230a-4226-aaf2-195b9b600cf0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4701" generation=1 uid="fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="About to send resource to Azure" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Successfully sent resource to Azure" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4700" generation=1 uid="2602a413-c084-459d-ac1d-323b827dea3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/7b73b61c-230a-4226-aaf2-195b9b600cf0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4709" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" status="{\"etag\":\"W/\\\"d73a85e6-6570-45f6-9a38-f99886a6b628\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1\",\"location\":\"westus3\",\"name\":\"samplevnetvmss1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"0e2f9cb8-90fd-41c1-91a3-16bf781cf718\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="updated resource in etcd" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4708" generation=1 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Done with reconcile" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4710" generation=1 uid="01c5fad8-b88c-41d2-b366-f0e7743efbab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4711" generation=1 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4685" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4709" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4716" generation=1 uid="5659786f-75cf-42ad-9bc0-02b231b0c4d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="applying ownership" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4685" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4723" generation=1 uid="4a73a847-256f-4a7d-8c86-36161fb6f0e2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="applying ownership" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4720" generation=1 uid="fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4726" generation=1 uid="2602a413-c084-459d-ac1d-323b827dea3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4727" generation=1 uid="eed88b00-0ff3-4a00-8fd1-31518b00bd21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4725" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="applying ownership" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Set owner reference" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4727" generation=1 uid="eed88b00-0ff3-4a00-8fd1-31518b00bd21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="Set owner reference" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4729" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss" not found)" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com "samplesubnetvmss" not found)" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4730" generation=1 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="applying ownership" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="adding finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4685" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4731" generation=1 uid="01c5fad8-b88c-41d2-b366-f0e7743efbab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4735" generation=1 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4736" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4738" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="adding finalizer" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="Set owner reference" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4733" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4685" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4743" generation=1 uid="fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39643c81-1740-4fa0-a6c6-d6752f655b01?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4743" generation=1 uid="fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39643c81-1740-4fa0-a6c6-d6752f655b01?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4742" generation=1 uid="da4013fb-f85f-42a9-a772-6172a1e09d41" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4741" generation=1 uid="4a73a847-256f-4a7d-8c86-36161fb6f0e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4739" generation=1 uid="5659786f-75cf-42ad-9bc0-02b231b0c4d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" status="{\"etag\":\"W/\\\"09f486a2-45ce-40d6-85cd-9abace79705d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.163.102.235\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"289b43c6-eda0-4f8c-98bd-250b21fd87a5\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="adding finalizer" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4709" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4748" generation=1 uid="bdfeca23-3903-446d-885d-680926772bb6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="applying ownership" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4709" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss does not exist (virtualnetworkssubnets.network.azure.com \\\"samplesubnetvmss\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4752" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] PublicIPAddressController "msg"="Set owner reference" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4746" generation=1 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4749" generation=1 uid="eed88b00-0ff3-4a00-8fd1-31518b00bd21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="updated resource in etcd" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4745" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp\",\"location\":\"westus2\",\"name\":\"asotest-rg-leywfp\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:44Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:44Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="871" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="applying ownership" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="About to send resource to Azure" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="updated resource in etcd" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4758" generation=1 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"2aefd140-4e60-4abd-86bf-41cdaefe1e06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Successfully sent resource to Azure" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="adding finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4767" generation=1 uid="01c5fad8-b88c-41d2-b366-f0e7743efbab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/6a87a0ce-ef44-4e13-9289-ebc87a5e9a00?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4765" generation=1 uid="fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4762" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="Set owner reference" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="adding finalizer" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4769" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4762" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="applying ownership" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4771" generation=1 uid="4a73a847-256f-4a7d-8c86-36161fb6f0e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/3ca13557-832e-4756-b1e0-2e8aa1962d6b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4766" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"2602a413-c084-459d-ac1d-323b827dea3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4767" generation=1 uid="01c5fad8-b88c-41d2-b366-f0e7743efbab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/6a87a0ce-ef44-4e13-9289-ebc87a5e9a00?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" status="{\"etag\":\"W/\\\"8625dd69-45b9-4c71-9b94-34d9199baff1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"8625dd69-45b9-4c71-9b94-34d9199baff1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"8625dd69-45b9-4c71-9b94-34d9199baff1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\",\"name\":\"samplenatpoolvmss\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d9bc0041-cc0d-4fb5-8c79-b50a8cc04d1b\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4772" generation=1 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="About to send resource to Azure" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Successfully sent resource to Azure" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4777" generation=1 uid="5659786f-75cf-42ad-9bc0-02b231b0c4d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2295eb92-651c-4d49-a964-61f325501f51?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="updated resource in etcd" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="873" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" status="{\"etag\":\"W/\\\"40b5d7df-1690-4469-99a3-4ddf84241448\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet\",\"location\":\"westus3\",\"name\":\"samplevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e7abbab9-314f-423b-b2b5-e4fc1f4f4c6a\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="updated resource in etcd" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4779" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4778" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Set owner reference" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4769" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4771" generation=1 uid="4a73a847-256f-4a7d-8c86-36161fb6f0e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/3ca13557-832e-4756-b1e0-2e8aa1962d6b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4773" generation=1 uid="bdfeca23-3903-446d-885d-680926772bb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] FleetController "msg"="About to send resource to Azure" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4777" generation=1 uid="5659786f-75cf-42ad-9bc0-02b231b0c4d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/2295eb92-651c-4d49-a964-61f325501f51?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4778" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" status="{\"etag\":\"W/\\\"5362d2e8-41bf-4cec-8221-dc5204065c1d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss\",\"location\":\"westus3\",\"name\":\"samplevnetvmss\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26a22888-10e5-4213-8ade-6ed3773c5793\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4779" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4785" generation=1 uid="da4013fb-f85f-42a9-a772-6172a1e09d41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4713" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0SW5ib3VuZEVuZHBvaW50IiwiT3BlcmF0aW9uSWQiOiIzMzVjYjMxZi1hNDhjLTRlOGEtOGJhOC1mMjM4ZjZiODQ4ZDIifQ==?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Resource not created yet, will check again" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Got ARM status" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" status="{\"etag\":\"W/\\\"755b37dc-360d-493b-8bdb-d605cbb9779c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1\",\"location\":\"westus3\",\"name\":\"samplevnet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"2584e5d2-badb-451e-9de3-3de5d1452239\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="About to send resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Didn't commit obj as there was no change" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="adding finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="updated resource in etcd" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4788" generation=1 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"2aefd140-4e60-4abd-86bf-41cdaefe1e06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7a5cbb3c-bbe1-41ea-afc4-2aee8b823d0f?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4793" generation=1 uid="01c5fad8-b88c-41d2-b366-f0e7743efbab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4791" generation=1 uid="eed88b00-0ff3-4a00-8fd1-31518b00bd21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Resource not created yet, will check again" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Didn't commit obj as there was no change" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Resource successfully created/updated" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Got ARM status" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" status="{\"etag\":\"\\\"5100f3cb-0000-0400-0000-64ac9da00000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep\",\"location\":\"westus2\",\"name\":\"aso-sample-inbound-ep\",\"properties\":{\"ipConfigurations\":[{\"privateIpAddress\":\"10.0.0.4\",\"privateIpAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep\"}}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"314bc9ec-590d-4e44-983b-c0de0437c285\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers/inboundEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4779" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4785" generation=1 uid="da4013fb-f85f-42a9-a772-6172a1e09d41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4722" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationStatuses/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/locations/westus2/dnsResolverOperationResults/eyJPcGVyYXRpb25UeXBlIjoiVXBzZXJ0T3V0Ym91bmRFbmRwb2ludCIsIk9wZXJhdGlvbklkIjoiYWZlNDVkMzEtYWQzNC00NGEzLTg2ZjUtOTYxOGJlN2MyODNlIn0=?api-version=2022-07-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep?api-version=2022-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4796" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Resource not created yet, will check again" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Didn't commit obj as there was no change" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4788" generation=1 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"2aefd140-4e60-4abd-86bf-41cdaefe1e06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7a5cbb3c-bbe1-41ea-afc4-2aee8b823d0f?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4792" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Determined CreateOrUpdate action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Resource successfully created/updated" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Got ARM status" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" status="{\"etag\":\"\\\"510056cc-0000-0400-0000-64ac9dbf0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep\",\"location\":\"westus2\",\"name\":\"aso-sample-outbound-ep\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c04d984b-c2d9-44bb-b05c-15fde636c575\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep\"}},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.Network/dnsResolvers/outboundEndpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4799" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"2602a413-c084-459d-ac1d-323b827dea3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/8e0066ca-0a4d-4972-8862-46a6b33599a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4801" generation=1 uid="4a73a847-256f-4a7d-8c86-36161fb6f0e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Owner does not yet exist" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4805" generation=1 uid="bdfeca23-3903-446d-885d-680926772bb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/af68cb5b-3aba-4866-a043-d6e335f6776b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Resource not created yet, will check again" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Didn't commit obj as there was no change" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4778" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4799" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"2602a413-c084-459d-ac1d-323b827dea3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/8e0066ca-0a4d-4972-8862-46a6b33599a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4796" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4706" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4779" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/d47d1e8b-8ad4-424d-a358-8392081af8f5?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4803" generation=1 uid="ae33fb85-22f9-4bcd-8809-1021a5dcbb17" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="applying ownership" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Resource successfully created/updated" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Got ARM status" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi\",\"kind\":\"cdn\",\"location\":\"Global\",\"name\":\"asotestcklqfi\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"},\"sku\":{\"name\":\"Standard_Microsoft\"},\"type\":\"Microsoft.Cdn/profiles\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4805" generation=1 uid="bdfeca23-3903-446d-885d-680926772bb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/af68cb5b-3aba-4866-a043-d6e335f6776b?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4788" generation=1 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"2aefd140-4e60-4abd-86bf-41cdaefe1e06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7a5cbb3c-bbe1-41ea-afc4-2aee8b823d0f?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4778" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" status="{\"etag\":\"W/\\\"cbb5901f-6e11-42a6-9691-74cd566f60ec\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\",\"name\":\"samplesubnetvmss1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4798" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplepublicipvmss1, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4806" generation=1 uid="5659786f-75cf-42ad-9bc0-02b231b0c4d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestcklqfi, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Determined CreateOrUpdate action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Resource successfully created/updated" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Got ARM status" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz\",\"kind\":\"cdn\",\"location\":\"Global\",\"name\":\"asotestojccxz\",\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"},\"sku\":{\"name\":\"Standard_Microsoft\"},\"type\":\"Microsoft.Cdn/profiles\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Got ARM status" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" status="{\"etag\":\"W/\\\"5a93dea7-59f8-47ba-ae91-8c9fa150149a\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\",\"location\":\"westus3\",\"name\":\"samplepublicipvmss1\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.163.101.100\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"45cc15ae-7a76-4225-9adb-f73a7dd9e7a8\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnetvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4403" generation=2 uid="e6b3035d-053d-4892-861e-9970aaf026df" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:35 +0000 UTC" deletionTimestamp="2023-09-08 21:48:41 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHQ1VQU1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Set owner reference" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="updated resource in etcd" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4813" generation=1 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversInboundEndpointController "msg"="Done with reconcile" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4769" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4674" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4810" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="asotest-rg-gcupsz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="updated resource in etcd" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4818" generation=1 uid="bdfeca23-3903-446d-885d-680926772bb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Done with reconcile" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Owner exists but is not ready. Current condition" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojccxz, Group/Kind: cdn.azure.com/Profile" cannot be found. Progress is blocked until the owner is created." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="updated resource in etcd" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="4820" generation=1 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] DnsResolversOutboundEndpointController "msg"="Done with reconcile" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4769" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Resource creation/update failure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\n--------------------------------------------------------------------------------\nRESPONSE 429: 429 Too Many Requests\nERROR CODE: RetryableError\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"RetryableError\",\n \"message\": \"A retryable error occurred.\",\n \"details\": [\n {\n \"code\": \"ReferencedResourceNotProvisioned\",\n \"message\": \"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\"\n }\n ]\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Encountered error impacting Ready condition" "err"="Reason: RetryableError, Severity: Warning, RetryClassification: RetrySlow, Cause: A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 429: 429 Too Many Requests +[controller:test-integration-envtest] ERROR CODE: RetryableError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "RetryableError", +[controller:test-integration-envtest] "message": "A retryable error occurred.", +[controller:test-integration-envtest] "details": [ +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "code": "ReferencedResourceNotProvisioned", +[controller:test-integration-envtest] "message": "Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] ] +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="adding finalizer" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4821" generation=1 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="applying ownership" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="updated resource in etcd" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4824" generation=1 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4823" generation=1 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"2602a413-c084-459d-ac1d-323b827dea3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplevnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4755" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="applying ownership" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4704" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Owner does not yet exist" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Set owner reference" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="updated resource in etcd" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4827" generation=1 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"2aefd140-4e60-4abd-86bf-41cdaefe1e06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfileController "msg"="Done with reconcile" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="adding finalizer" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4832" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4825" generation=1 uid="da4013fb-f85f-42a9-a772-6172a1e09d41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4830" generation=1 uid="ae33fb85-22f9-4bcd-8809-1021a5dcbb17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4835" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Encountered error, re-queuing..." name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4829" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"01c5fad8-b88c-41d2-b366-f0e7743efbab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/asotest-rg-gcupsz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gcupsz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/asotest-rg-gcupsz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6b3035d-053d-4892-861e-9970aaf026df, UID in object meta: " name="asotest-rg-gcupsz" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Modifying ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="About to send resource to Azure" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4835" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Set owner reference" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" ownerGvk="cdn.azure.com/v1api20210601storage, Kind=Profile" ownerName="asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4753" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="applying ownership" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4796" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4831" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"4a73a847-256f-4a7d-8c86-36161fb6f0e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/asotest-rg-gcupsz aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaypublicip aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet2 aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaysubnet aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroute aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnetgateway aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleloadbalancer aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplensg aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepublicip aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplesubnet aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepeering aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplenic aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplerule]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" status="{\"etag\":\"W/\\\"249a5b24-ec5c-49b1-ae7a-3532de1b328e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1\",\"location\":\"westus3\",\"name\":\"samplenicvmss1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"xcoc4dx3sdaudendc05xqhhxda.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"249a5b24-ec5c-49b1-ae7a-3532de1b328e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9c813ead-8651-4285-b3c3-443472b1d335\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4838" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Encountered error, re-queuing..." name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Set owner reference" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" ownerGvk="cdn.azure.com/v1api20210601storage, Kind=Profile" ownerName="asotestojccxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4796" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4838" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"RetryableError\", Message = \"A retryable error occurred.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\\n--------------------------------------------------------------------------------\\nRESPONSE 429: 429 Too Many Requests\\nERROR CODE: RetryableError\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"RetryableError\\\",\\n \\\"message\\\": \\\"A retryable error occurred.\\\",\\n \\\"details\\\": [\\n {\\n \\\"code\\\": \\\"ReferencedResourceNotProvisioned\\\",\\n \\\"message\\\": \\\"Cannot proceed with operation because resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1 used by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1 is not in Succeeded state. Resource is in Updating state and the last operation that updated/is updating the resource is PutPublicIpAddressOperation.\\\"\\n }\\n ]\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Determined CreateOrUpdate action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4841" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"5659786f-75cf-42ad-9bc0-02b231b0c4d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplevnet1, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="adding finalizer" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="updated resource in etcd" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4839" generation=1 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4846" generation=1 uid="ae33fb85-22f9-4bcd-8809-1021a5dcbb17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f28d1064-60fd-45c0-a154-032e5bfa62b0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4769" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="adding finalizer" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Modifying ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully modified ARM payload" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="About to send resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4846" generation=1 uid="ae33fb85-22f9-4bcd-8809-1021a5dcbb17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f28d1064-60fd-45c0-a154-032e5bfa62b0?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully sent resource to Azure" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Resource successfully created/updated" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Got ARM status" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" status="{\"etag\":\"W/\\\"b61fc111-62cc-481f-bab1-00610818f63f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1\",\"location\":\"westus3\",\"name\":\"sampleloadbalancervmss1\",\"properties\":{\"frontendIPConfigurations\":[{\"etag\":\"W/\\\"b61fc111-62cc-481f-bab1-00610818f63f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\",\"name\":\"LoadBalancerFrontend\",\"properties\":{\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1\"}},\"type\":\"Microsoft.Network/loadBalancers/frontendIPConfigurations\"}],\"inboundNatPools\":[{\"etag\":\"W/\\\"b61fc111-62cc-481f-bab1-00610818f63f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\",\"name\":\"samplenatpoolvmss1\",\"properties\":{\"backendPort\":22,\"enableFloatingIP\":false,\"enableTcpReset\":false,\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/frontendIPConfigurations/LoadBalancerFrontend\"},\"frontendPortRangeEnd\":51000,\"frontendPortRangeStart\":50000,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/loadBalancers/inboundNatPools\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"dfd9c9a1-c9b9-435c-8f57-37ccf3d2e6f1\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/loadBalancers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4835" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4850" generation=1 uid="da4013fb-f85f-42a9-a772-6172a1e09d41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4769" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="applying ownership" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Got ARM status" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" status="{\"etag\":\"W/\\\"c5594995-1c4b-41ed-b605-dc58a36c529b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet\",\"location\":\"eastus\",\"name\":\"samplesqlvnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"392989eb-6491-49a8-8f38-cb91a9b2be1d\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4852" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"01c5fad8-b88c-41d2-b366-f0e7743efbab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39e2c47d-310d-4268-8c70-2d7e5d57fad5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4847" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4835" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4855" generation=2 uid="b3f828c3-ccdc-495b-831e-c100c46eeb43" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:36 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Set owner reference" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4857" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:38 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4860" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"4a73a847-256f-4a7d-8c86-36161fb6f0e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00063f5d-5592-4f22-864e-453e69f1b061?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4860" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"4a73a847-256f-4a7d-8c86-36161fb6f0e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00063f5d-5592-4f22-864e-453e69f1b061?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Determined Delete action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Starting delete of resource" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4862" generation=2 uid="16e6be88-3e9c-4900-a571-ef0a5a49791a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4852" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"01c5fad8-b88c-41d2-b366-f0e7743efbab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/39e2c47d-310d-4268-8c70-2d7e5d57fad5?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4853" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestcklqfi, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4858" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"28ff2db9-5002-4254-ad6d-0fb32b94af8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojccxz, Group/Kind: cdn.azure.com/Profile\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" status="{\"etag\":\"W/\\\"77838bb1-9cb5-4658-b3d1-5641d7e9dd4f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\",\"name\":\"samplesubnetvmss\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" status="{\"etag\":\"W/\\\"275de5d1-fd1f-46b0-938d-e6c4a3ef7ba1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic\",\"location\":\"westus3\",\"name\":\"samplenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"xg3kxz0pge3ufmvv2t4b4t0mnc.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"275de5d1-fd1f-46b0-938d-e6c4a3ef7ba1\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a35c9152-594e-41c8-be75-3b9a1dfaa2e3\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" status="{\"etag\":\"W/\\\"91a15d21-23b5-405a-ba2f-f08eb775ea51\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet\",\"name\":\"samplesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="updated resource in etcd" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4865" generation=1 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/459c3a33-7f0b-4297-930e-82033c447f81?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Done with reconcile" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="updated resource in etcd" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4869" generation=1 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Done with reconcile" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="adding finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4872" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"5659786f-75cf-42ad-9bc0-02b231b0c4d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e546c25f-c1eb-426b-ae86-d62f277a3c7e?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4835" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4868" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnetvmss, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="About to send resource to Azure" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4865" generation=1 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/459c3a33-7f0b-4297-930e-82033c447f81?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaypublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "gatewaypublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaypublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b3f828c3-ccdc-495b-831e-c100c46eeb43, UID in object meta: " name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Successfully sent resource to Azure" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="About to send resource to Azure" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="updated resource in etcd" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4879" generation=1 uid="ae33fb85-22f9-4bcd-8809-1021a5dcbb17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Done with reconcile" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ProfilesEndpointController "msg"="Successfully sent resource to Azure" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4871" generation=2 uid="6da899ca-ca86-46ce-acc7-ef5ec297c98a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4835" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="applying ownership" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet2 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet2": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 16e6be88-3e9c-4900-a571-ef0a5a49791a, UID in object meta: " name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkGatewayController "msg"="Determined Delete action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkGatewayController "msg"="Starting delete of resource" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkGatewayController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworkGatewayController "msg"="Delete succeeded, removing finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Done with reconcile" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4881" generation=1 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4872" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"5659786f-75cf-42ad-9bc0-02b231b0c4d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/e546c25f-c1eb-426b-ae86-d62f277a3c7e?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4883" generation=1 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"4a73a847-256f-4a7d-8c86-36161fb6f0e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4884" generation=1 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"01c5fad8-b88c-41d2-b366-f0e7743efbab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4878" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref samplesubnet1, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4865" generation=1 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus/asyncoperations/459c3a33-7f0b-4297-930e-82033c447f81?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4886" generation=2 uid="bb734aaa-0266-41e9-a1ca-538a6819d0f2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:45Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" status="{\"etag\":\"W/\\\"9cb814e7-5743-45c3-bcab-e79aebadd7f6\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss\",\"location\":\"westus3\",\"name\":\"samplenicvmss\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"raukejxfcajufcw4n1jxopcxsd.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"9cb814e7-5743-45c3-bcab-e79aebadd7f6\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"c6c450fb-93ae-4c3a-920d-e533f16345b1\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" status="{\"etag\":\"W/\\\"d0563865-453c-442c-ba9a-fda948a8cb08\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\",\"name\":\"samplesubnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Got ARM status" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage\",\"kind\":\"BlobStorage\",\"location\":\"eastus\",\"name\":\"asotestsqlstorage\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestsqlstorage.blob.core.windows.net/\",\"dfs\":\"https://asotestsqlstorage.dfs.core.windows.net/\",\"table\":\"https://asotestsqlstorage.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:45Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="samplesqlvnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Got ARM status" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" status="{\"etag\":\"W/\\\"31955d74-13a9-44ed-9e8b-9b2775e278bd\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1\",\"location\":\"westus3\",\"name\":\"samplenic1\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"0lsyijo1xipelhpdhxs3crjchb.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"31955d74-13a9-44ed-9e8b-9b2775e278bd\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"314e7535-16a9-43b2-adf8-be9c1a788d24\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountController "msg"="Successfully created resource" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" name="sqlstoragesecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4893" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"28ff2db9-5002-4254-ad6d-0fb32b94af8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7c2ab0ef-f71d-44c5-b4e3-81721beff561?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4889" generation=2 uid="ef5f82cc-635b-49b7-b0e3-679d4ac6377f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleloadbalancer resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancer": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleloadbalancer, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bb734aaa-0266-41e9-a1ca-538a6819d0f2, UID in object meta: " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4893" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"28ff2db9-5002-4254-ad6d-0fb32b94af8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/operationresults/7c2ab0ef-f71d-44c5-b4e3-81721beff561?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] VirtualNetworkGatewayController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnetgateway resource status: Operation cannot be fulfilled on virtualnetworkgateways.network.azure.com "samplevnetgateway": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkgateways/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnetgateway, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6da899ca-ca86-46ce-acc7-ef5ec297c98a, UID in object meta: " name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4899" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Resource successfully created/updated" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Got ARM status" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko\",\"location\":\"Global\",\"name\":\"asotestypmeko\",\"properties\":{\"contentTypesToCompress\":[\"application/json\"],\"hostName\":\"asotestypmeko.azureedge.net\",\"isCompressionEnabled\":true,\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"origins\":[{\"name\":\"source\",\"properties\":{\"enabled\":true,\"hostName\":\"example.com\",\"priority\":1,\"weight\":1000}}],\"provisioningState\":\"Succeeded\",\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"resourceState\":\"Running\"},\"type\":\"Microsoft.Cdn/profiles/endpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4902" generation=1 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4901" generation=1 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"5659786f-75cf-42ad-9bc0-02b231b0c4d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4897" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"ae33fb85-22f9-4bcd-8809-1021a5dcbb17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountController "msg"="updated resource in etcd" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4904" generation=1 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountController "msg"="Done with reconcile" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4899" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="updated resource in etcd" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4906" generation=1 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Done with reconcile" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4903" generation=2 uid="2f69e529-5664-4eb9-81ef-570ccecab79f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4843" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "samplensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ef5f82cc-635b-49b7-b0e3-679d4ac6377f, UID in object meta: " name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Resource not created yet, will check again" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Didn't commit obj as there was no change" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4912" generation=1 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"28ff2db9-5002-4254-ad6d-0fb32b94af8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestsqlstorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4899" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4911" generation=2 uid="a52464fc-e23a-4d57-9263-48b225eeb039" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTableController "msg"="Determined Delete action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTableController "msg"="Starting delete of resource" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTableController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTableController "msg"="Delete succeeded, removing finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Resource not created yet, will check again" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Didn't commit obj as there was no change" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2f69e529-5664-4eb9-81ef-570ccecab79f, UID in object meta: " name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4899" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4918" generation=2 uid="b0507a02-9de3-452e-b997-d79a34b5cf41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4923" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"ae33fb85-22f9-4bcd-8809-1021a5dcbb17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e4f00de1-9cb7-4326-924a-a036c70c7649?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] RouteTableController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable resource status: Operation cannot be fulfilled on routetables.network.azure.com "sampleroutetable": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetables/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroutetable, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a52464fc-e23a-4d57-9263-48b225eeb039, UID in object meta: " name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Resource not created yet, will check again" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Didn't commit obj as there was no change" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4925" generation=2 uid="8784b204-4126-485e-a302-55d9ba15df4e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gcupsz", UID:"e6b3035d-053d-4892-861e-9970aaf026df", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-gcupsz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4899" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/operationresults/c995b45f-c315-4a22-b848-3934b162b90e?api-version=2021-06-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne?api-version=2021-06-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4923" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"ae33fb85-22f9-4bcd-8809-1021a5dcbb17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e4f00de1-9cb7-4326-924a-a036c70c7649?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4926" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4921" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestsqlstorage", UID:"04dbabe1-0cb2-4cf6-83e5-f6d835e2df85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Determined CreateOrUpdate action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Resource successfully created/updated" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Got ARM status" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne\",\"location\":\"Global\",\"name\":\"asotestbnocne\",\"properties\":{\"contentTypesToCompress\":[\"application/json\"],\"hostName\":\"asotestbnocne.azureedge.net\",\"isCompressionEnabled\":true,\"isHttpAllowed\":false,\"isHttpsAllowed\":true,\"origins\":[{\"name\":\"source\",\"properties\":{\"enabled\":true,\"hostName\":\"example.com\",\"priority\":1,\"weight\":1000}}],\"provisioningState\":\"Succeeded\",\"queryStringCachingBehavior\":\"IgnoreQueryString\",\"resourceState\":\"Running\"},\"type\":\"Microsoft.Cdn/profiles/endpoints\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Resource not created yet, will check again" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Didn't commit obj as there was no change" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b0507a02-9de3-452e-b997-d79a34b5cf41, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4923" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"ae33fb85-22f9-4bcd-8809-1021a5dcbb17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e4f00de1-9cb7-4326-924a-a036c70c7649?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" status="{\"etag\":\"W/\\\"5d760e84-4152-4bff-bd6b-9cebe63cc18f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet\",\"name\":\"samplesqlsubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\",\"serviceEndpoints\":[{\"locations\":[\"eastus\"],\"provisioningState\":\"Succeeded\",\"service\":\"Microsoft.Sql\"}]},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8784b204-4126-485e-a302-55d9ba15df4e, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4940" generation=1 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestsqlstorage", UID:"04dbabe1-0cb2-4cf6-83e5-f6d835e2df85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4939" generation=2 uid="31fbb70c-bc5e-413b-85a1-38ab7a3f9466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"16e6be88-3e9c-4900-a571-ef0a5a49791a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:36 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:37 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="updated resource in etcd" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="4941" generation=1 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ProfilesEndpointController "msg"="Done with reconcile" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4943" generation=1 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"ae33fb85-22f9-4bcd-8809-1021a5dcbb17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4819" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="sqlstorageservice" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4946" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4947" generation=2 uid="eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"ef5f82cc-635b-49b7-b0e3-679d4ac6377f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaysubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "gatewaysubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/gatewaysubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 31fbb70c-bc5e-413b-85a1-38ab7a3f9466, UID in object meta: " name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4953" generation=2 uid="a5f60acc-a003-40be-bbdc-de7bc4e19eb4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"a52464fc-e23a-4d57-9263-48b225eeb039", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTablesRouteController "msg"="Determined Delete action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTablesRouteController "msg"="Starting delete of resource" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTablesRouteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] RouteTablesRouteController "msg"="Delete succeeded, removing finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplerule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "samplerule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplerule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eeee58c7-af0a-436b-b2d9-c6f2fd46b6ae, UID in object meta: " name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4959" generation=2 uid="427c3a0b-4f25-4424-b735-f33b84fa9d95" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4958" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"8d9a16f4-6682-4b45-ab58-d29ec67900c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4962" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="4963" generation=2 uid="3a587d1b-7e7e-46f4-b6e7-64625b0cc121" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"b0507a02-9de3-452e-b997-d79a34b5cf41", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gcupsz/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] RouteTablesRouteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroute resource status: Operation cannot be fulfilled on routetablesroutes.network.azure.com "sampleroute": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetablesroutes/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/sampleroute, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a5f60acc-a003-40be-bbdc-de7bc4e19eb4, UID in object meta: " name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] FleetController "msg"="Successfully sent resource to Azure" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" id="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 427c3a0b-4f25-4424-b735-f33b84fa9d95, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined Delete action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Starting delete of resource" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Delete succeeded, removing finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4971" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="applying ownership" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] FleetController "msg"="updated resource in etcd" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4975" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="applying ownership" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4979" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"8d9a16f4-6682-4b45-ab58-d29ec67900c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Set owner reference" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4979" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"8d9a16f4-6682-4b45-ab58-d29ec67900c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4976" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepeering resource status: Operation cannot be fulfilled on virtualnetworksvirtualnetworkpeerings.network.azure.com "samplepeering": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworksvirtualnetworkpeerings/aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff/samplepeering, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3a587d1b-7e7e-46f4-b6e7-64625b0cc121, UID in object meta: " name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1beta2-bd3ff" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" status="{\"etag\":\"\\\"0x8DB7EF63A5F3492\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments\",\"name\":\"vulnerabilityassessments\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4980" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="applying ownership" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="adding finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Set owner reference" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4986" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="applying ownership" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4610" generation=2 uid="dad192e9-2f00-4e36-b562-faf1005e601c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:43 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJQ0hXUEItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="asotest-rg-ichwpb" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Set owner reference" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4985" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="adding finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="4992" generation=1 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"8d9a16f4-6682-4b45-ab58-d29ec67900c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="4993" generation=1 uid="e590b9ef-20b2-430e-87fc-86cd7b4c7b96" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="applying ownership" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4988" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/asotest-rg-ichwpb aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaypublicip aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2 aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaysubnet aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepublicip aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleinboundnatrule aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplenic aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplensg aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplerule aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepeering aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroutetable aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroute aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnetgateway]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Resource creation/update failure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE: NotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"NotFound\",\n \"message\": \"The entity was not found in this Azure location.\",\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ImageController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE: NotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "The entity was not found in this Azure location.", +[controller:test-integration-envtest] "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="adding finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="Set owner reference" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Resource creation/update failure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\n--------------------------------------------------------------------------------\nRESPONSE 404: 404 Not Found\nERROR CODE: NotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"NotFound\",\n \"message\": \"The entity was not found in this Azure location.\",\n \"target\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ImageController "msg"="Encountered error impacting Ready condition" "err"="Reason: NotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 404: 404 Not Found +[controller:test-integration-envtest] ERROR CODE: NotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "NotFound", +[controller:test-integration-envtest] "message": "The entity was not found in this Azure location.", +[controller:test-integration-envtest] "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/asotest-rg-ichwpb resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ichwpb": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/asotest-rg-ichwpb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dad192e9-2f00-4e36-b562-faf1005e601c, UID in object meta: " name="asotest-rg-ichwpb" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="4997" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5000" generation=1 uid="07e4a093-bc32-4360-b0cc-4693912851bb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="applying ownership" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4936" generation=2 uid="2aefd140-4e60-4abd-86bf-41cdaefe1e06" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCSEZGWUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotest-rg-bhffyh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="adding finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5003" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/ca66eba2-c537-447e-8cd0-0426d0f1e335?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="Set owner reference" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Reconcile invoked" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5005" generation=2 uid="466bb101-497f-46e6-aa01-577328baaf68" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/gatewaypublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4965" generation=2 uid="3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUQVlBTUgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5009" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5003" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/ca66eba2-c537-447e-8cd0-0426d0f1e335?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Encountered error, re-queuing..." name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="About to send resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5008" generation=1 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5014" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Encountered error, re-queuing..." name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotest-rg-tayamh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5011" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="applying ownership" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="adding finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Determined Delete action" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Starting delete of resource" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaypublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5009" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotest-rg-bhffyh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bhffyh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotest-rg-bhffyh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2aefd140-4e60-4abd-86bf-41cdaefe1e06, UID in object meta: " name="asotest-rg-bhffyh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5013" generation=2 uid="498b6f35-ae19-441a-8a1e-34607fe5c109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss\",\"location\":\"westus3\",\"name\":\"samplevmss\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"uniqueId\":\"f75cdd4e-c783-4b76-a16a-9a5af507b906\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"samplenicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"sampleipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss/inboundNatPools/samplenatpoolvmss\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"standard_d1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5010" generation=1 uid="e590b9ef-20b2-430e-87fc-86cd7b4c7b96" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Set owner reference" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5014" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5006" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaypublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "gatewaypublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaypublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 466bb101-497f-46e6-aa01-577328baaf68, UID in object meta: " name="gatewaypublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5016" generation=1 uid="07e4a093-bc32-4360-b0cc-4693912851bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5023" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="About to send resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="Successfully sent resource to Azure" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5019" generation=2 uid="9d5a63d4-69fd-47da-a92e-4ce344ba12af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/publicIPAddresses/samplepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet2": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 498b6f35-ae19-441a-8a1e-34607fe5c109, UID in object meta: " name="samplevnet2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotest-rg-bhffyh aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestojccxz aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestypmeko]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="About to send resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5029" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5018" generation=1 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotest-rg-tayamh aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestcklqfi aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestbnocne]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotest-rg-tayamh resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-tayamh": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotest-rg-tayamh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe, UID in object meta: " name="asotest-rg-tayamh" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5028" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Successfully sent resource to Azure" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="About to send resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5030" generation=2 uid="a22b168f-e467-41d8-8712-35899a4593d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="Successfully sent resource to Azure" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="About to send resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineScaleSetController "msg"="Successfully sent resource to Azure" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5027" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/4d993a98-b6a4-4b8c-9bd3-1e32f9e4efe6?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks\",\"location\":\"westus2\",\"name\":\"asotest-rg-abbxks\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="adding finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5026" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a79c60b0-6b53-4796-857f-339146989f58?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5032" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5027" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/4d993a98-b6a4-4b8c-9bd3-1e32f9e4efe6?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersVirtualNetworkRuleController "msg"="Owner does not yet exist" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ServersVirtualNetworkRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:46Z] ServersVirtualNetworkRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Resource successfully created/updated" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5026" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/a79c60b0-6b53-4796-857f-339146989f58?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] VirtualMachineController "msg"="Got ARM status" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm\",\"location\":\"westus3\",\"name\":\"aso-sample-vm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"assessmentMode\":\"ImageDefault\",\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"deleteOption\":\"Detach\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/aso-sample-vm_OsDisk_1_b6b585178b694a9f8f2c76dbf3f4fe5d\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"aso-sample-vm_OsDisk_1_b6b585178b694a9f8f2c76dbf3f4fe5d\",\"osType\":\"Linux\"}},\"timeCreated\":\"2023-07-10T22:16:01.0657327+00:00\",\"vmId\":\"cc285731-3c22-452e-80e8-755ce04814b3\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5044" generation=1 uid="e590b9ef-20b2-430e-87fc-86cd7b4c7b96" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5046" generation=1 uid="07e4a093-bc32-4360-b0cc-4693912851bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:46Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5049" generation=1 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5045" generation=2 uid="ae705af6-97d9-4672-b0aa-1051249130cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9d5a63d4-69fd-47da-a92e-4ce344ba12af, UID in object meta: " name="samplepublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a22b168f-e467-41d8-8712-35899a4593d1, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5050" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="applying ownership" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Owner does not yet exist" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Reconcile invoked" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="5040" generation=2 uid="28ff2db9-5002-4254-ad6d-0fb32b94af8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bhffyh", UID:"2aefd140-4e60-4abd-86bf-41cdaefe1e06", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-bhffyh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20220301\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5046" generation=1 uid="07e4a093-bc32-4360-b0cc-4693912851bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/DiskOperations/9652ed49-b442-43c6-a9a9-34c43d5ae1e9?p=44bc44cc-a60e-4a56-99da-4d4b35541eb8\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Reconcile invoked" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:Profile,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="5048" generation=2 uid="54269160-ceac-45fe-ac3a-d53bb98074a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tayamh", UID:"3ed6d8b7-83a3-47f7-8ae6-a13fc1ed17fe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:46 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-tayamh, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5035" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c145328a-3f58-4e48-83c9-16dec8525e99?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5044" generation=1 uid="e590b9ef-20b2-430e-87fc-86cd7b4c7b96" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026api-version=2020-09-30\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus3/DiskOperations/0a74f5b5-a4f6-4428-8ece-8c31e1c41278?p=85f172eb-bf4f-4a7d-a9d5-4623a78e85c2\\u0026monitor=true\\u0026api-version=2020-09-30\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk?api-version=2020-09-30\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Determined Delete action" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Starting delete of resource" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5035" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus2/operations/c145328a-3f58-4e48-83c9-16dec8525e99?p=293bc17d-9efb-4af6-9c31-0eb97e7abc2e\\u0026api-version=2021-07-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"NotFound\", Message = \"The entity was not found in this Azure location.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\\n--------------------------------------------------------------------------------\\nRESPONSE 404: 404 Not Found\\nERROR CODE: NotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"NotFound\\\",\\n \\\"message\\\": \\\"The entity was not found in this Azure location.\\\",\\n \\\"target\\\": \\\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestcklqfi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Delete succeeded, removing finalizer" name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5054" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/3655972a-e2d4-4dd8-b44b-d87d516c8404?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] DiskController "msg"="Determined CreateOrUpdate action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Determined Delete action" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Starting delete of resource" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestojccxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfileController "msg"="Delete succeeded, removing finalizer" name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] DiskController "msg"="Resource successfully created/updated" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Encountered error, re-queuing..." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] SnapshotController "msg"="Determined CreateOrUpdate action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] SnapshotController "msg"="Resource successfully created/updated" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] SnapshotController "msg"="Got ARM status" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\",\"location\":\"westus2\",\"name\":\"aso-sample-snapshot\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeBytes\":34359738368,\"diskSizeGB\":32,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:01.0676272+00:00\",\"uniqueId\":\"25fc167c-1844-4caf-b8a1-d2f91601ca9a\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/snapshots\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] DiskController "msg"="Got ARM status" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk\",\"location\":\"westus3\",\"name\":\"sampledisk\",\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskIOPSReadWrite\":500,\"diskMBpsReadWrite\":60,\"diskSizeBytes\":536870912000,\"diskSizeGB\":500,\"diskState\":\"Unattached\",\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"networkAccessPolicy\":\"AllowAll\",\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2023-07-10T22:16:00.928832+00:00\",\"uniqueId\":\"1e8adf54-eb39-4c4c-9130-167c716016ba\"},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/disks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5047" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Determined CreateOrUpdate action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Resource successfully created/updated" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Got ARM status" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701\",\"location\":\"westus2\",\"name\":\"aso-sample-image-20210701\",\"properties\":{\"hyperVGeneration\":\"V2\",\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"osDisk\":{\"caching\":\"None\",\"diskSizeGB\":32,\"osState\":\"Generalized\",\"osType\":\"Linux\",\"snapshot\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot\"},\"storageAccountType\":\"Standard_LRS\"}}},\"type\":\"Microsoft.Compute/images\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5053" generation=2 uid="641d3a2a-217c-42e8-b8df-590a4a56744b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5054" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/3655972a-e2d4-4dd8-b44b-d87d516c8404?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2022-03-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1?api-version=2022-03-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5057" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="applying ownership" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5063" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Done with reconcile" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ProfileController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestojccxz resource status: Operation cannot be fulfilled on profiles.cdn.azure.com "asotestojccxz": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profiles/aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestojccxz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 28ff2db9-5002-4254-ad6d-0fb32b94af8f, UID in object meta: " name="asotestojccxz" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5061" generation=2 uid="29730eb5-7953-4ab2-b521-de29decc319b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ProfileController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestcklqfi resource status: Operation cannot be fulfilled on profiles.cdn.azure.com "asotestcklqfi": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profiles/aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestcklqfi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 54269160-ceac-45fe-ac3a-d53bb98074a4, UID in object meta: " name="asotestcklqfi" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="Resource successfully created/updated" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="Got ARM status" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1\",\"location\":\"westus3\",\"name\":\"samplevmss1\",\"properties\":{\"doNotRunExtensionsOnOverprovisionedVMs\":false,\"orchestrationMode\":\"Uniform\",\"overprovision\":true,\"platformFaultDomainCount\":2,\"provisioningState\":\"Succeeded\",\"singlePlacementGroup\":false,\"timeCreated\":\"2023-07-10T22:16:01.1438804+00:00\",\"uniqueId\":\"60f176f1-acdd-47a2-8308-4f9a795ad7ec\",\"upgradePolicy\":{\"mode\":\"Automatic\"},\"virtualMachineProfile\":{\"extensionProfile\":{\"extensions\":[{\"name\":\"mycustomextension\",\"properties\":{\"autoUpgradeMinorVersion\":false,\"publisher\":\"Microsoft.Azure.Extensions\",\"settings\":{\"commandToExecute\":\"/bin/bash -c \\\"echo hello\\\"\"},\"type\":\"CustomScript\",\"typeHandlerVersion\":\"2.0\"}}]},\"networkProfile\":{\"networkInterfaceConfigurations\":[{\"name\":\"mynicconfig\",\"properties\":{\"dnsSettings\":{},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"myipconfiguration\",\"properties\":{\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1/inboundNatPools/samplenatpoolvmss1\"}],\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1\"}}}],\"primary\":true}}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerNamePrefix\":\"computer\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"provisionVMAgent\":true}},\"storageProfile\":{\"imageReference\":{\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"None\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"storageAccountType\":\"Standard_LRS\"},\"osType\":\"Linux\"}}}},\"sku\":{\"capacity\":1,\"name\":\"STANDARD_D1_v2\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Compute/virtualMachineScaleSets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleloadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5065" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="Set owner reference" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5068" generation=1 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="About to send resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Owner does not yet exist" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" NamespacedName="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ae705af6-97d9-4672-b0aa-1051249130cf, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5071" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="applying ownership" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="updated resource in etcd" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5076" generation=1 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ImageController "msg"="Done with reconcile" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5074" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] SnapshotController "msg"="updated resource in etcd" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5080" generation=1 uid="07e4a093-bc32-4360-b0cc-4693912851bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] SnapshotController "msg"="Done with reconcile" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] RouteTableController "msg"="Reconcile invoked" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTable,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5075" generation=2 uid="2cee6293-0dee-4944-8153-ab4ced9c6130" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "samplensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 641d3a2a-217c-42e8-b8df-590a4a56744b, UID in object meta: " name="samplensg" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] RouteTableController "msg"="Determined Delete action" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] RouteTableController "msg"="Starting delete of resource" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] RouteTableController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroutetable" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] RouteTableController "msg"="Delete succeeded, removing finalizer" name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="adding finalizer" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] DiskController "msg"="updated resource in etcd" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5090" generation=1 uid="e590b9ef-20b2-430e-87fc-86cd7b4c7b96" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] DiskController "msg"="Done with reconcile" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="5081" generation=2 uid="3c9bd583-9bdc-4cb4-ab54-8551f9aafad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestojccxz", UID:"28ff2db9-5002-4254-ad6d-0fb32b94af8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bhffyh/providers/Microsoft.Cdn/profiles/asotestojccxz/endpoints/asotestypmeko"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestojccxz, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5086" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineScaleSetController "msg"="Done with reconcile" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Determined Delete action" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Starting delete of resource" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" azureName="asotestypmeko" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Delete succeeded, removing finalizer" name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5089" generation=1 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="applying ownership" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Encountered error, re-queuing..." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancer": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleloadbalancer, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 29730eb5-7953-4ab2-b521-de29decc319b, UID in object meta: " name="sampleloadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5088" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworkGatewayController "msg"="Reconcile invoked" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworkGateway,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5087" generation=2 uid="28810b57-12ce-41c4-8c11-d0d208d569c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ichwpb", UID:"dad192e9-2f00-4e36-b562-faf1005e601c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworkGateways/samplevnetgateway"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-ichwpb, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Reconcile invoked" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" kind="&TypeMeta{Kind:ProfilesEndpoint,APIVersion:cdn.azure.com/v1api20210601storage,}" resourceVersion="5085" generation=2 uid="238d2d90-cf79-46a2-ad13-8374d5d70d5d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"cdn.azure.com/v1api20210601storage", Kind:"Profile", Name:"asotestcklqfi", UID:"54269160-ceac-45fe-ac3a-d53bb98074a4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tayamh/providers/Microsoft.Cdn/profiles/asotestcklqfi/endpoints/asotestbnocne"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestcklqfi, Group/Kind: cdn.azure.com/Profile" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Determined Delete action" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Starting delete of resource" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" azureName="asotestbnocne" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Delete succeeded, removing finalizer" name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworkGatewayController "msg"="Determined Delete action" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworkGatewayController "msg"="Starting delete of resource" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworkGatewayController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplevnetgateway" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworkGatewayController "msg"="Delete succeeded, removing finalizer" name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5094" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/b97408f9-74e0-47c2-9044-53b6f308d631?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5094" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/b97408f9-74e0-47c2-9044-53b6f308d631?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5097" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] RouteTableController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroutetable resource status: Operation cannot be fulfilled on routetables.network.azure.com "sampleroutetable": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetables/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroutetable, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2cee6293-0dee-4944-8153-ab4ced9c6130, UID in object meta: " name="sampleroutetable" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="Set owner reference" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-abbxks" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5100" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="applying ownership" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Resource successfully created/updated" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5092" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5103" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Got ARM status" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm\",\"location\":\"westus3\",\"name\":\"samplevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/samplevm_OsDisk_1_72981c73114842eab163ea7d47665d09\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"samplevm_OsDisk_1_72981c73114842eab163ea7d47665d09\",\"osType\":\"Linux\"}},\"vmId\":\"d3f03373-33e8-4cf5-b799-b99e775be9e2\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="adding finalizer" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5106" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestypmeko resource status: Operation cannot be fulfilled on profilesendpoints.cdn.azure.com "asotestypmeko": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profilesendpoints/aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262/asotestypmeko, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3c9bd583-9bdc-4cb4-ab54-8551f9aafad2, UID in object meta: " name="asotestypmeko" namespace="aso-test-samples-creationanddeletion-test-cdn-v1beta-crea-63262" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="applying ownership" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5112" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersConnectionPolicyController "msg"="applying ownership" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="About to send resource to Azure" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="Successfully sent resource to Azure" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] VirtualNetworkGatewayController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnetgateway resource status: Operation cannot be fulfilled on virtualnetworkgateways.network.azure.com "samplevnetgateway": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkgateways/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplevnetgateway, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 28810b57-12ce-41c4-8c11-d0d208d569c4, UID in object meta: " name="samplevnetgateway" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5110" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersConnectionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersConnectionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersConnectionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5120" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5121" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Encountered error, re-queuing..." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="updated resource in etcd" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5113" generation=1 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"e45a5d96-c728-4055-aa7b-ca3040825017", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5122" generation=2 uid="88b933e9-6223-4633-b273-a785ec98eb0c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet2", UID:"498b6f35-ae19-441a-8a1e-34607fe5c109", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet2/subnets/gatewaysubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="samplevnet2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5121" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5117" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5124" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverOperationResults/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="Done with reconcile" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5120" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="applying ownership" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5123" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualMachineController "msg"="Done with reconcile" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="gatewaysubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="About to send resource to Azure" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersVirtualNetworkRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5127" generation=2 uid="8b5e869c-e7a4-42fc-a55d-3e95999e593d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5124" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverAzureAsyncOperation/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/serverOperationResults/7ec08081-7f3e-47ca-bf7b-2d17050ec5ff?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersVulnerabilityAssessmentController "msg"="applying ownership" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5126" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] 2023/09/08 21:48:48 http: TLS handshake error from 127.0.0.1:56260: EOF +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:47Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5139" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5133" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServerController "msg"="Resource successfully created/updated" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="applying ownership" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServerController "msg"="Got ARM status" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo\",\"kind\":\"v12.0\",\"location\":\"eastus\",\"name\":\"asotestwidzfo\",\"properties\":{\"administratorLogin\":\"myadmin\",\"fullyQualifiedDomainName\":\"asotestwidzfo.database.windows.net\",\"minimalTlsVersion\":\"None\",\"publicNetworkAccess\":\"Enabled\",\"restrictOutboundNetworkAccess\":\"Disabled\",\"state\":\"Ready\",\"version\":\"12.0\"},\"type\":\"Microsoft.Sql/servers\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5132" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] 2023/09/08 21:48:48 http: TLS handshake error from 127.0.0.1:56232: EOF +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5136" generation=1 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5132" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="applying ownership" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Encountered error, re-queuing..." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Reconcile invoked" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:VirtualNetworksVirtualNetworkPeering,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5140" generation=2 uid="4df48235-d2e4-4f33-8029-25c95a067867" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"a22b168f-e467-41d8-8712-35899a4593d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:47 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/virtualNetworks/samplevnet/virtualNetworkPeerings/samplepeering"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5120" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaysubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "gatewaysubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/gatewaysubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 88b933e9-6223-4633-b273-a785ec98eb0c, UID in object meta: " name="gatewaysubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5139" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Owner exists but is not ready. Current condition" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="updated resource in etcd" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5142" generation=1 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"e45a5d96-c728-4055-aa7b-ca3040825017", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/0911ce36-9ec3-4982-81ba-a22f135027fe?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Done with reconcile" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner does not yet exist" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5120" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="applying ownership" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Determined Delete action" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Starting delete of resource" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplepeering" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Delete succeeded, removing finalizer" name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5142" generation=1 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"e45a5d96-c728-4055-aa7b-ca3040825017", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/0911ce36-9ec3-4982-81ba-a22f135027fe?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5145" generation=1 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5143" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5121" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Done with reconcile" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5148" generation=1 uid="a4bc6956-a41b-4116-ba48-3a04aa77c6db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="applying ownership" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5121" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5142" generation=1 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"e45a5d96-c728-4055-aa7b-ca3040825017", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/0911ce36-9ec3-4982-81ba-a22f135027fe?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Resource successfully created/updated" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Got ARM status" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw\",\"kind\":\"StorageV2\",\"location\":\"westcentralus\",\"name\":\"asotestyhvgvw\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asotestyhvgvw.blob.core.windows.net/\",\"dfs\":\"https://asotestyhvgvw.dfs.core.windows.net/\",\"file\":\"https://asotestyhvgvw.file.core.windows.net/\",\"queue\":\"https://asotestyhvgvw.queue.core.windows.net/\",\"table\":\"https://asotestyhvgvw.table.core.windows.net/\",\"web\":\"https://asotestyhvgvw.z4.web.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5154" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Encountered error, re-queuing..." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="Owner exists but is not ready. Current condition" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwidzfo, Group/Kind: sql.azure.com/Server" cannot be found. Progress is blocked until the owner is created." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8b5e869c-e7a4-42fc-a55d-3e95999e593d, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5153" generation=2 uid="4c30c845-0752-4f55-bac3-d4ec06d8e36e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"samplensg", UID:"641d3a2a-217c-42e8-b8df-590a4a56744b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/networkSecurityGroups/samplensg/securityRules/samplerule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="samplensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5151" generation=1 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5132" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Encountered error, re-queuing..." name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5154" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="applying ownership" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5159" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServerController "msg"="Done with reconcile" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="samplerule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5070" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="applying ownership" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5139" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5139" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx\",\"location\":\"westus2\",\"name\":\"asotest-rg-zstldx\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] LoadBalancersInboundNatRuleController "msg"="Reconcile invoked" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:LoadBalancersInboundNatRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5160" generation=2 uid="b1d93a2e-4a6a-4f18-808f-8806396e1b6e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"LoadBalancer", Name:"sampleloadbalancer", UID:"29730eb5-7953-4ab2-b521-de29decc319b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/loadBalancers/sampleloadbalancer/inboundNatRules/sampleinboundnatrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleloadbalancer, Group/Kind: network.azure.com/LoadBalancer" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] VirtualNetworksVirtualNetworkPeeringController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepeering resource status: Operation cannot be fulfilled on virtualnetworksvirtualnetworkpeerings.network.azure.com "samplepeering": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworksvirtualnetworkpeerings/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplepeering, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4df48235-d2e4-4f33-8029-25c95a067867, UID in object meta: " name="samplepeering" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5156" generation=1 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersElasticPoolController "msg"="Set owner reference" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5132" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="applying ownership" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Encountered error, re-queuing..." name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVulnerabilityAssessmentController "msg"="Set owner reference" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5120" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] LoadBalancersInboundNatRuleController "msg"="Determined Delete action" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] LoadBalancersInboundNatRuleController "msg"="Starting delete of resource" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] LoadBalancersInboundNatRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleinboundnatrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] LoadBalancersInboundNatRuleController "msg"="Delete succeeded, removing finalizer" name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner does not yet exist" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Owner exists but is not ready. Current condition" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab\",\"location\":\"westus2\",\"name\":\"asotest-rg-buwtab\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5166" generation=1 uid="a4bc6956-a41b-4116-ba48-3a04aa77c6db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="Encountered error, re-queuing..." name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5056" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersVirtualNetworkRuleController "msg"="applying ownership" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplerule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "samplerule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/samplerule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4c30c845-0752-4f55-bac3-d4ec06d8e36e, UID in object meta: " name="samplerule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersIPV6FirewallRuleController "msg"="Reconcile invoked" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5163" generation=1 uid="1dbf83f1-a1cb-4b57-b3e1-6a5e09a0e319" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersIPV6FirewallRuleController "msg"="applying ownership" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5166" generation=1 uid="a4bc6956-a41b-4116-ba48-3a04aa77c6db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersFirewallRuleController "msg"="applying ownership" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5121" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersConnectionPolicyController "msg"="Set owner reference" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5120" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersSecurityAlertPolicyController "msg"="applying ownership" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Owner exists but is not ready. Current condition" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServiceController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" cannot be found. Progress is blocked until the owner is created." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] RouteTablesRouteController "msg"="Reconcile invoked" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" kind="&TypeMeta{Kind:RouteTablesRoute,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5168" generation=2 uid="9d6ebfd7-b007-4473-a4f5-92463b8f5fdf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"RouteTable", Name:"sampleroutetable", UID:"2cee6293-0dee-4944-8153-ab4ced9c6130", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:41 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ichwpb/providers/Microsoft.Network/routeTables/sampleroutetable/routes/sampleroute"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="sampleroutetable, Group/Kind: network.azure.com/RouteTable" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5121" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] RouteTablesRouteController "msg"="Determined Delete action" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] RouteTablesRouteController "msg"="Starting delete of resource" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] RouteTablesRouteController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" azureName="sampleroute" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] RouteTablesRouteController "msg"="Delete succeeded, removing finalizer" name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5139" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsManagementPolicyController "msg"="Encountered error, re-queuing..." name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:48Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:48Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] LoadBalancersInboundNatRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleinboundnatrule resource status: Operation cannot be fulfilled on loadbalancersinboundnatrules.network.azure.com "sampleinboundnatrule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancersinboundnatrules/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleinboundnatrule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b1d93a2e-4a6a-4f18-808f-8806396e1b6e, UID in object meta: " name="sampleinboundnatrule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Encountered error, re-queuing..." name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="adding finalizer" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner does not yet exist" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5139" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="applying ownership" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5172" generation=1 uid="d34df41f-48e3-4bfc-81e8-457fbcf5ef8f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="applying ownership" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAdvancedThreatProtectionSettingController "msg"="Set owner reference" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5174" generation=1 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountController "msg"="updated resource in etcd" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5175" generation=1 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"e45a5d96-c728-4055-aa7b-ca3040825017", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountController "msg"="Done with reconcile" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5116" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="applying ownership" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner does not yet exist" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="Set owner reference" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="Set owner reference" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVirtualNetworkRuleController "msg"="Set owner reference" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="adding finalizer" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersSecurityAlertPolicyController "msg"="Set owner reference" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersConnectionPolicyController "msg"="adding finalizer" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner does not yet exist" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Encountered error, re-queuing..." name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="Set owner reference" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Owner does not yet exist" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="Set owner reference" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5102" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="applying ownership" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Set owner reference" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner does not yet exist" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" NamespacedName="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="adding finalizer" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5184" generation=1 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5178" generation=1 uid="32151def-8ab6-4584-965d-e802bc903ad7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAuditingSettingController "msg"="applying ownership" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5182" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="applying ownership" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="adding finalizer" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5179" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] RouteTablesRouteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroute resource status: Operation cannot be fulfilled on routetablesroutes.network.azure.com "sampleroute": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/routetablesroutes/aso-test-samples-creationanddeletion-test-network-v1api20-6eea1/sampleroute, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9d6ebfd7-b007-4473-a4f5-92463b8f5fdf, UID in object meta: " name="sampleroute" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-6eea1" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAdvancedThreatProtectionSettingController "msg"="adding finalizer" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersSecurityAlertPolicyController "msg"="adding finalizer" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5186" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabaseController "msg"="applying ownership" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="adding finalizer" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVirtualNetworkRuleController "msg"="adding finalizer" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAuditingSettingController "msg"="Set owner reference" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Set owner reference" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccount" ownerName="asotestyhvgvw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="adding finalizer" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="adding finalizer" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="Set owner reference" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabaseController "msg"="Set owner reference" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=Server" ownerName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5180" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5190" generation=1 uid="e006825c-2f05-4470-adc4-8b1c1b5d66e3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="updated resource in etcd" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5187" generation=1 uid="1dbf83f1-a1cb-4b57-b3e1-6a5e09a0e319" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5192" generation=1 uid="d34df41f-48e3-4bfc-81e8-457fbcf5ef8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5196" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="About to send resource to Azure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Resource creation/update failure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"VulnerabilityAssessmentADSIsDisabled\",\n \"message\": \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Classifying CloudError" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" Message="Advanced Data Security should be enabled in order to use Vulnerability Assessment." Code="VulnerabilityAssessmentADSIsDisabled" Target="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="CloudError classified" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" Classification="retryable" Code="VulnerabilityAssessmentADSIsDisabled" Message="Advanced Data Security should be enabled in order to use Vulnerability Assessment." +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: VulnerabilityAssessmentADSIsDisabled, Severity: Warning, RetryClassification: RetrySlow, Cause: Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: VulnerabilityAssessmentADSIsDisabled +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "VulnerabilityAssessmentADSIsDisabled", +[controller:test-integration-envtest] "message": "Advanced Data Security should be enabled in order to use Vulnerability Assessment." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="adding finalizer" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="adding finalizer" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5193" generation=1 uid="a4bc6956-a41b-4116-ba48-3a04aa77c6db" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5194" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5198" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5191" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAuditingSettingController "msg"="adding finalizer" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersSecurityAlertPolicyController "msg"="Determined CreateOrUpdate action" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVirtualNetworkRuleController "msg"="Determined CreateOrUpdate action" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabaseController "msg"="adding finalizer" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAdvancedThreatProtectionSettingController "msg"="Determined CreateOrUpdate action" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="About to send resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="Successfully sent resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5189" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwidzfo, Group/Kind: sql.azure.com/Server\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="About to send resource to Azure" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="Resource successfully created/updated" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="Got ARM status" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv\",\"name\":\"asotestggernv\",\"properties\":{\"endIPv6Address\":\"2001:db8:0000:0000:0000:0000:00ff:ffff\",\"startIPv6Address\":\"2001:db8::\"},\"type\":\"Microsoft.Sql/servers/ipv6FirewallRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5201" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="4877" generation=2 uid="2c4a2064-b23a-4d24-a86f-d33a400f35a3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:45 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRGQVNFQUYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Determined CreateOrUpdate action" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersConnectionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="About to send resource to Azure" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5204" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5200" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAdvancedThreatProtectionSettingController "msg"="About to send resource to Azure" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAdvancedThreatProtectionSettingController "msg"="Successfully sent resource to Azure" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asotest-rg-faseaf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersSecurityAlertPolicyController "msg"="About to send resource to Azure" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVirtualNetworkRuleController "msg"="About to send resource to Azure" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVirtualNetworkRuleController "msg"="Successfully sent resource to Azure" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="updated resource in etcd" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5203" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersConnectionPolicyController "msg"="About to send resource to Azure" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersConnectionPolicyController "msg"="Successfully sent resource to Azure" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Determined CreateOrUpdate action" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="Determined CreateOrUpdate action" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="About to send resource to Azure" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Successfully sent resource to Azure" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Resource successfully created/updated" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServiceController "msg"="Got ARM status" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]},\"deleteRetentionPolicy\":{\"enabled\":false}},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Storage/storageAccounts/blobServices\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="About to send resource to Azure" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5209" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersSecurityAlertPolicyController "msg"="Successfully sent resource to Azure" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="Successfully sent resource to Azure" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="Resource successfully created/updated" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersFirewallRuleController "msg"="Got ARM status" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi\",\"name\":\"asotesthozjgi\",\"properties\":{\"endIpAddress\":\"0.0.0.0\",\"startIpAddress\":\"0.0.0.0\"},\"type\":\"Microsoft.Sql/servers/firewallRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5208" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="About to send resource to Azure" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5205" generation=1 uid="32151def-8ab6-4584-965d-e802bc903ad7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="updated resource in etcd" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5217" generation=1 uid="1dbf83f1-a1cb-4b57-b3e1-6a5e09a0e319" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersIPV6FirewallRuleController "msg"="Done with reconcile" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] SignalRController "msg"="Successfully sent resource to Azure" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5219" generation=1 uid="d34df41f-48e3-4bfc-81e8-457fbcf5ef8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesAzureAsyncOperation/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesOperationResults/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="Done with reconcile" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asotest-rg-faseaf resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-faseaf": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asotest-rg-faseaf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2c4a2064-b23a-4d24-a86f-d33a400f35a3, UID in object meta: " name="asotest-rg-faseaf" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5209" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:49Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="About to send resource to Azure" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Successfully sent resource to Azure" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Resource successfully created/updated" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="About to send resource to Azure" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsQueueServiceController "msg"="Got ARM status" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default\",\"name\":\"default\",\"properties\":{\"cors\":{\"corsRules\":[]}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="Successfully sent resource to Azure" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="Resource successfully created/updated" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] StorageAccountsManagementPolicyController "msg"="Got ARM status" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default\",\"name\":\"DefaultManagementPolicy\",\"properties\":{\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"policy\":{\"rules\":[{\"definition\":{\"actions\":{\"version\":{\"delete\":{\"daysAfterCreationGreaterThan\":30}}},\"filters\":{\"blobIndexMatch\":null,\"blobTypes\":[\"blockBlob\"],\"prefixMatch\":[\"sample-container/blob1\"]}},\"enabled\":true,\"name\":\"test-rule\",\"type\":\"Lifecycle\"}]}},\"type\":\"Microsoft.Storage/storageAccounts/managementPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5213" generation=1 uid="e006825c-2f05-4470-adc4-8b1c1b5d66e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5224" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:49Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5219" generation=1 uid="d34df41f-48e3-4bfc-81e8-457fbcf5ef8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesAzureAsyncOperation/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/outboundFirewallRulesOperationResults/76d35686-a7eb-4f70-9a60-e5b156aaf9b7?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersOutboundFirewallRuleController "msg"="Determined CreateOrUpdate action" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersOutboundFirewallRuleController "msg"="Resource successfully created/updated" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersOutboundFirewallRuleController "msg"="Got ARM status" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net\",\"name\":\"server.database.windows.net\",\"properties\":{\"provisioningState\":\"Ready\"},\"type\":\"Microsoft.Sql/servers/outboundFirewallRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5224" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/80dca1b4-70da-48c8-a2e3-d829d68513c3?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asotest-rg-faseaf aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-loadbalancer aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-inbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet1 aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/privatelink.blob.core.windows.net aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep-dnsforwardingruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asosamplestorage aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep-dnsforwardingruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vnetlink aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn2 aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1 aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-bastion aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/bastionpublicip aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-publicip aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-privateendpoint aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-bastion aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-pls aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ipprefix aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-rule aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-inbound-ep aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-netgw aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-dnszonegroup]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5226" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionAzureAsyncOperation/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionOperationResults/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="Done with reconcile" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5223" generation=1 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Resource creation/update failure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: InternalServerError\n--------------------------------------------------------------------------------\n{\n \"name\": \"80dca1b4-70da-48c8-a2e3-d829d68513c3\",\n \"status\": \"Failed\",\n \"startTime\": \"2001-02-03T04:05:06Z\",\n \"error\": {\n \"code\": \"InternalServerError\",\n \"message\": \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Encountered error impacting Ready condition" "err"="Reason: InternalServerError, Severity: Warning, RetryClassification: RetrySlow, Cause: An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: InternalServerError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "name": "80dca1b4-70da-48c8-a2e3-d829d68513c3", +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "startTime": "2001-02-03T04:05:06Z", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InternalServerError", +[controller:test-integration-envtest] "message": "An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5226" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionAzureAsyncOperation/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/advancedThreatProtectionOperationResults/5b8f3930-9912-4af1-80a8-09d4bc136b56?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="About to send resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="About to send resource to Azure" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Successfully sent resource to Azure" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5233" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesAzureAsyncOperation/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesOperationResults/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="Done with reconcile" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5229" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesAzureAsyncOperation/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesOperationResults/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="Done with reconcile" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5233" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesAzureAsyncOperation/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/connectionPoliciesOperationResults/dfa32e8c-2b8d-404d-8f89-166ba4835796?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5229" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesAzureAsyncOperation/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/securityAlertPoliciesOperationResults/155a05bb-9510-4247-b992-202a0c2aa88a?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="Determined CreateOrUpdate action" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="Resource successfully created/updated" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="Got ARM status" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Enabled\"},\"type\":\"Microsoft.Sql/servers/advancedThreatProtectionSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Owner exists but is not ready. Current condition" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" cannot be found. Progress is blocked until the owner is created." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersFirewallRuleController "msg"="updated resource in etcd" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5230" generation=1 uid="a4bc6956-a41b-4116-ba48-3a04aa77c6db" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersFirewallRuleController "msg"="Done with reconcile" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5234" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesAzureAsyncOperation/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesOperationResults/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="Done with reconcile" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="About to send resource to Azure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Successfully sent resource to Azure" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServiceController "msg"="updated resource in etcd" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5236" generation=1 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServiceController "msg"="Done with reconcile" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServiceController "msg"="updated resource in etcd" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5239" generation=1 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServiceController "msg"="Done with reconcile" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="Determined CreateOrUpdate action" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="Resource successfully created/updated" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="Got ARM status" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"disabledAlerts\":[\"\"],\"emailAccountAdmins\":false,\"emailAddresses\":[\"\"],\"retentionDays\":0,\"state\":\"Enabled\",\"storageEndpoint\":\"\"},\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5234" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesAzureAsyncOperation/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/virtualNetworkRulesOperationResults/b70bc58a-1850-42ba-9467-83fe79a30c14?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="Resource successfully created/updated" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="Got ARM status" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default\",\"location\":\"eastus\",\"name\":\"default\",\"properties\":{\"connectionType\":\"Default\"},\"type\":\"Microsoft.Sql/servers/connectionPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="updated resource in etcd" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsManagementPolicyController "msg"="updated resource in etcd" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5243" generation=1 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsManagementPolicyController "msg"="Done with reconcile" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="Determined CreateOrUpdate action" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="Resource successfully created/updated" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="Got ARM status" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg\",\"name\":\"asotestulcgqg\",\"properties\":{\"ignoreMissingVnetServiceEndpoint\":false,\"state\":\"Ready\",\"virtualNetworkSubnetId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet\"},\"type\":\"Microsoft.Sql/servers/virtualNetworkRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] LoadBalancerController "msg"="Reconcile invoked" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5241" generation=2 uid="9e36d3ec-f8c7-4be9-aba5-04ec61d899d7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/loadBalancers/aso-sample-loadbalancer"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5246" generation=1 uid="e006825c-2f05-4470-adc4-8b1c1b5d66e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5242" generation=1 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersOutboundFirewallRuleController "msg"="updated resource in etcd" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5248" generation=1 uid="d34df41f-48e3-4bfc-81e8-457fbcf5ef8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersOutboundFirewallRuleController "msg"="Done with reconcile" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5252" generation=1 uid="32151def-8ab6-4584-965d-e802bc903ad7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsAzureAsyncOperation/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsOperationResults/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Done with reconcile" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz\",\"location\":\"westus2\",\"name\":\"asotest-rg-bstmoz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5250" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Encountered error, re-queuing..." name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] LoadBalancerController "msg"="Determined Delete action" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] LoadBalancerController "msg"="Starting delete of resource" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-loadbalancer" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5246" generation=1 uid="e006825c-2f05-4470-adc4-8b1c1b5d66e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5257" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PrivateDnsZoneController "msg"="Reconcile invoked" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZone,APIVersion:network.azure.com/v1api20180901storage,}" resourceVersion="5255" generation=2 uid="17acd52c-25b9-4d37-aa24-10c433db7ba8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5249" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Done with reconcile" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" cannot be found. Progress is blocked until the owner is created." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="updated resource in etcd" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5259" generation=1 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVirtualNetworkRuleController "msg"="Done with reconcile" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PrivateDnsZoneController "msg"="Determined Delete action" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PrivateDnsZoneController "msg"="Starting delete of resource" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PrivateDnsZoneController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="privatelink.blob.core.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PrivateDnsZoneController "msg"="Delete succeeded, removing finalizer" name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5252" generation=1 uid="32151def-8ab6-4584-965d-e802bc903ad7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsAzureAsyncOperation/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus/auditingSettingsOperationResults/220057b1-acca-438d-ab09-ab6c7d378034?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5250" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5249" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"VulnerabilityAssessmentADSIsDisabled\", Message = \"Advanced Data Security should be enabled in order to use Vulnerability Assessment.: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: VulnerabilityAssessmentADSIsDisabled\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"VulnerabilityAssessmentADSIsDisabled\\\",\\n \\\"message\\\": \\\"Advanced Data Security should be enabled in order to use Vulnerability Assessment.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Encountered error, re-queuing..." name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5260" generation=1 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAdvancedThreatProtectionSettingController "msg"="Done with reconcile" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5261" generation=1 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="updated resource in etcd" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5258" generation=1 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersConnectionPolicyController "msg"="Done with reconcile" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersSecurityAlertPolicyController "msg"="Done with reconcile" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5257" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/8e921aee-5171-4f1d-9c46-bd8b157dc19e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Resource creation/update failure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: ConflictingServerOperation\n--------------------------------------------------------------------------------\n{\n \"name\": \"8e921aee-5171-4f1d-9c46-bd8b157dc19e\",\n \"status\": \"Failed\",\n \"startTime\": \"2001-02-03T04:05:06Z\",\n \"error\": {\n \"code\": \"ConflictingServerOperation\",\n \"message\": \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Encountered error impacting Ready condition" "err"="Reason: ConflictingServerOperation, Severity: Warning, RetryClassification: RetrySlow, Cause: Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: ConflictingServerOperation +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "name": "8e921aee-5171-4f1d-9c46-bd8b157dc19e", +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "startTime": "2001-02-03T04:05:06Z", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "ConflictingServerOperation", +[controller:test-integration-envtest] "message": "Server 'asotestwidzfo' is busy with another operation. Please try your operation later." +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Resource successfully created/updated" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Got ARM status" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/Default\",\"name\":\"Default\",\"properties\":{\"recurringScans\":{\"emailSubscriptionAdmins\":true,\"isEnabled\":false},\"storageContainerPath\":\"https://asotestsqlstorage.blob.core.windows.net/vulnerabilityassessments/\"},\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Resource successfully created/updated" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Got ARM status" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/Default\",\"name\":\"Default\",\"properties\":{\"auditActionsAndGroups\":[\"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP\",\"FAILED_DATABASE_AUTHENTICATION_GROUP\",\"BATCH_COMPLETED_GROUP\"],\"isAzureMonitorTargetEnabled\":false,\"isManagedIdentityInUse\":false,\"isStorageSecondaryKeyInUse\":false,\"retentionDays\":0,\"state\":\"Enabled\",\"storageAccountSubscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"storageEndpoint\":\"https://asotestsqlstorage.blob.core.windows.net/\"},\"type\":\"Microsoft.Sql/servers/auditingSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountController "msg"="Reconcile invoked" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5263" generation=2 uid="c1071b8c-8214-4394-b127-90decae71701" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Storage/storageAccounts/asosamplestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"47bc033a-83f5-4664-ae60-b5ecbc3cf487\",\"principalId\":\"5f823609-6edd-4946-a40f-55eebd4f49f4\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5128" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="applying ownership" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountController "msg"="Determined Delete action" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountController "msg"="Starting delete of resource" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="asosamplestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5266" generation=1 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-loadbalancer resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "aso-sample-loadbalancer": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-loadbalancer, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9e36d3ec-f8c7-4be9-aba5-04ec61d899d7, UID in object meta: " name="aso-sample-loadbalancer" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5267" generation=2 uid="62da1bfb-8d06-4c42-a594-d5e07d4ac2bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="Encountered error, re-queuing..." name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] DnsResolverController "msg"="Determined Delete action" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] DnsResolverController "msg"="Starting delete of resource" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] DnsResolverController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] DnsResolverController "msg"="Delete succeeded, removing finalizer" name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="About to send resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="Set owner reference" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsBlobService" ownerName="asotesttuhlss" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Successfully sent resource to Azure" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] PrivateDnsZoneController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/privatelink.blob.core.windows.net resource status: Operation cannot be fulfilled on privatednszones.network.azure.com "privatelink.blob.core.windows.net": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszones/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/privatelink.blob.core.windows.net, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 17acd52c-25b9-4d37-aa24-10c433db7ba8, UID in object meta: " name="privatelink.blob.core.windows.net" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5099" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="applying ownership" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5164" generation=2 uid="d829c834-79cd-4bb1-9473-b8a895cee945" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:48 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWREVDUE4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5275" generation=2 uid="5b722bf4-814e-417d-87b9-a5703908e3de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:39 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="updated resource in etcd" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5279" generation=1 uid="32151def-8ab6-4584-965d-e802bc903ad7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersAuditingSettingController "msg"="Done with reconcile" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5278" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5280" generation=1 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersVulnerabilityAssessmentController "msg"="Done with reconcile" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Encountered error, re-queuing..." name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="asotest-rg-vdecpn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asosamplestorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asosamplestorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/asosamplestorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c1071b8c-8214-4394-b127-90decae71701, UID in object meta: " name="asosamplestorage" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="Set owner reference" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" ownerGvk="storage.azure.com/v1api20220901storage, Kind=StorageAccountsQueueService" ownerName="asotestosmmrs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5278" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5285" generation=2 uid="0bf28bc6-66fb-43ee-8161-35027ea38a52" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] DnsResolverController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset resource status: Operation cannot be fulfilled on dnsresolvers.network.azure.com "aso-sample-resolver-dnsforwardingruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolvers/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver-dnsforwardingruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 62da1bfb-8d06-4c42-a594-d5e07d4ac2bb, UID in object meta: " name="aso-sample-resolver-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5286" generation=1 uid="e006825c-2f05-4470-adc4-8b1c1b5d66e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5282" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Resource not created yet, will check again" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Didn't commit obj as there was no change" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsBlobServicesContainerController "msg"="adding finalizer" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5282" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5291" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Resource not created yet, will check again" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Didn't commit obj as there was no change" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="About to send resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabaseController "msg"="Successfully sent resource to Azure" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vdecpn": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d829c834-79cd-4bb1-9473-b8a895cee945, UID in object meta: " name="asotest-rg-vdecpn" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sample-vmss-secret aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sample-vmsecret aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20210701 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20220301 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vm aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss1 aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampledisk aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-snapshot aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevm]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="Reconcile invoked" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5294" generation=2 uid="538babe3-4c11-4481-b8d3-fa0e9c321e93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/bastionpublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn2 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn2": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn2, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5b722bf4-814e-417d-87b9-a5703908e3de, UID in object meta: " name="aso-sample-vn2" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] StorageAccountsQueueServicesQueueController "msg"="adding finalizer" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5238" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationStatuses/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc/operationResults/7881e64f-d59f-4dd5-9fc1-79777a2ff334?api-version=2021-10-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc?api-version=2021-10-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5297" generation=1 uid="9ae087b1-49fd-4d70-ac0b-3dceb79423e5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="applying ownership" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5282" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolOperationResults/a283ea34-da90-45f0-838c-776e87e562c0?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/elasticPoolAzureAsyncOperation/80dca1b4-70da-48c8-a2e3-d829d68513c3\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"80dca1b4-70da-48c8-a2e3-d829d68513c3\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '8fdef9dc-1a06-4c9d-8831-572424a1d2ee'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:50Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0bf28bc6-66fb-43ee-8161-35027ea38a52, UID in object meta: " name="aso-sample-vn1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5299" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] VaultController "msg"="applying ownership" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="Determined Delete action" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="Starting delete of resource" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="bastionpublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:50Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersElasticPoolController "msg"="Determined CreateOrUpdate action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersElasticPoolController "msg"="Resource successfully created/updated" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersElasticPoolController "msg"="Got ARM status" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht\",\"kind\":\"pool\",\"location\":\"eastus\",\"name\":\"asotesttcwsht\",\"properties\":{\"creationDate\":\"2001-02-03T04:05:06Z\",\"maintenanceConfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\"maxSizeBytes\":107374182400,\"perDatabaseSettings\":{\"maxCapacity\":100,\"minCapacity\":0},\"state\":\"Ready\",\"zoneRedundant\":false},\"sku\":{\"capacity\":100,\"name\":\"StandardPool\",\"tier\":\"Standard\"},\"type\":\"Microsoft.Sql/servers/elasticPools\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5295" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"0b9467c8-aa4e-4dad-9e7c-857fc17831d2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] SignalRController "msg"="Determined CreateOrUpdate action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] SignalRController "msg"="Resource successfully created/updated" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] SignalRController "msg"="Got ARM status" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/SignalR/asotestwegjbc\",\"identity\":{\"principalId\":\"a2a62780-05ab-4211-928c-51b04c64aad7\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"kind\":\"SignalR\",\"location\":\"westcentralus\",\"name\":\"asotestwegjbc\",\"properties\":{\"cors\":{\"allowedOrigins\":[\"https://foo.com\",\"https://bar.com\"]},\"disableAadAuth\":false,\"disableLocalAuth\":false,\"externalIP\":\"20.69.0.202\",\"features\":[{\"flag\":\"ServiceMode\",\"value\":\"Classic\"},{\"flag\":\"EnableConnectivityLogs\",\"value\":\"True\"},{\"flag\":\"EnableMessagingLogs\",\"value\":\"True\"},{\"flag\":\"EnableLiveTrace\",\"value\":\"True\"}],\"hostName\":\"asotestwegjbc.service.signalr.net\",\"hostNamePrefix\":\"asotestwegjbc\",\"networkACLs\":{\"defaultAction\":\"Deny\",\"publicNetwork\":{\"allow\":[\"ClientConnection\"]}},\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\",\"publicPort\":443,\"serverPort\":443,\"tls\":{\"clientCertEnabled\":false},\"upstream\":{\"templates\":[{\"categoryPattern\":\"*\",\"eventPattern\":\"connect,disconnect\",\"hubPattern\":\"*\",\"urlTemplate\":\"https://example.com/chat/api/connect\"}]},\"version\":\"1.0\"},\"sku\":{\"capacity\":1,\"name\":\"Standard_S1\",\"size\":\"S1\",\"tier\":\"Standard\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"5fe8acba-4694-403d-8c10-581a22063ff8\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.SignalRService/SignalR\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5303" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Reconcile invoked" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5302" generation=2 uid="0166aa66-f385-4104-a832-c448ad18867c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:50 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPAddresses/aso-sample-publicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Determined Delete action" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Starting delete of resource" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-publicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="Set owner reference" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Set owner reference" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5313" generation=2 uid="2dc23dda-2f8c-47a5-827a-953fe012fcad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5300" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="About to send resource to Azure" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Successfully sent resource to Azure" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/bastionpublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "bastionpublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/bastionpublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 538babe3-4c11-4481-b8d3-fa0e9c321e93, UID in object meta: " name="bastionpublicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn-dnsresolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="Reconcile invoked" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5314" generation=1 uid="34e0ad39-6723-41b6-8c36-4d4315bd5181" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="applying ownership" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5063" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="adding finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5308" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestosmmrs", UID:"87896101-f6fb-4eb1-b631-c72a57073cf0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5300" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersElasticPoolController "msg"="updated resource in etcd" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5320" generation=1 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersElasticPoolController "msg"="Done with reconcile" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5319" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Resource not created yet, will check again" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Didn't commit obj as there was no change" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsQueueServicesQueueController "msg"="Determined CreateOrUpdate action" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="Set owner reference" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Reconcile invoked" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5318" generation=2 uid="ace5377f-23b8-4da8-b804-b23d2b481eb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-publicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "aso-sample-publicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-publicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0166aa66-f385-4104-a832-c448ad18867c, UID in object meta: " name="aso-sample-publicip" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5086" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5028" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Determined Delete action" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Starting delete of resource" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] SignalRController "msg"="updated resource in etcd" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5322" generation=1 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] SignalRController "msg"="Done with reconcile" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5123" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5300" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseOperationResults/7cccf9f4-b13e-4de6-b7cf-072a0e792186?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="adding finalizer" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="adding finalizer" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Owner exists but is not ready. Current condition" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PrivateEndpointController "msg"="Reconcile invoked" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5329" generation=2 uid="54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Determined CreateOrUpdate action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Resource successfully created/updated" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Got ARM status" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm\",\"kind\":\"v12.0,user,vcore\",\"location\":\"eastus\",\"name\":\"asotestkekpcm\",\"properties\":{\"catalogCollation\":\"SQL_Latin1_General_CP1_CI_AS\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"creationDate\":\"2001-02-03T04:05:06Z\",\"currentBackupStorageRedundancy\":\"Geo\",\"currentServiceObjectiveName\":\"GP_Gen5_2\",\"currentSku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5\",\"tier\":\"GeneralPurpose\"},\"databaseId\":\"5f69146c-2ff8-4262-8aba-34b7887c83e2\",\"defaultSecondaryLocation\":\"westus\",\"isInfraEncryptionEnabled\":false,\"isLedgerOn\":false,\"licenseType\":\"LicenseIncluded\",\"maintenanceConfigurationId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default\",\"maxLogSizeBytes\":193273528320,\"maxSizeBytes\":34359738368,\"readScale\":\"Disabled\",\"requestedBackupStorageRedundancy\":\"Geo\",\"requestedServiceObjectiveName\":\"GP_Gen5_2\",\"status\":\"Online\",\"zoneRedundant\":false},\"sku\":{\"capacity\":2,\"family\":\"Gen5\",\"name\":\"GP_Gen5\",\"tier\":\"GeneralPurpose\"},\"type\":\"Microsoft.Sql/servers/databases\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn-dnsresolver": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn-dnsresolver, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2dc23dda-2f8c-47a5-827a-953fe012fcad, UID in object meta: " name="aso-sample-vn-dnsresolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5324" generation=1 uid="9ae087b1-49fd-4d70-ac0b-3dceb79423e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PrivateEndpointController "msg"="Determined Delete action" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PrivateEndpointController "msg"="Starting delete of resource" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PrivateEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-privateendpoint" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PrivateEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Owner exists but is not ready. Current condition" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Owner exists but is not ready. Current condition" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5327" generation=1 uid="f80ba4f5-ac53-48cf-af20-4d507c094ab2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupController "msg"="applying ownership" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Owner exists but is not ready. Current condition" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ConflictingServerOperation\", Message = \"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.: GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/databaseAzureAsyncOperation/8e921aee-5171-4f1d-9c46-bd8b157dc19e\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: ConflictingServerOperation\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8e921aee-5171-4f1d-9c46-bd8b157dc19e\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"ConflictingServerOperation\\\",\\n \\\"message\\\": \\\"Server 'asotestwidzfo' is busy with another operation. Please try your operation later.\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] ServersDatabasesAuditingSettingController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" cannot be found. Progress is blocked until the owner is created." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsQueueServicesQueueController "msg"="About to send resource to Azure" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsQueueServicesQueueController "msg"="Successfully sent resource to Azure" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsQueueServicesQueueController "msg"="Resource successfully created/updated" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsQueueServicesQueueController "msg"="Got ARM status" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj\",\"name\":\"asotestpfarbj\",\"properties\":{\"approximateMessageCount\":0,\"metadata\":{}},\"type\":\"Microsoft.Storage/storageAccounts/queueServices/queues\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5330" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"0b9467c8-aa4e-4dad-9e7c-857fc17831d2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5337" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupController "msg"="Set owner reference" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "aso-sample-vn": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ace5377f-23b8-4da8-b804-b23d2b481eb9, UID in object meta: " name="aso-sample-vn" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] BastionHostController "msg"="Reconcile invoked" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:BastionHost,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5335" generation=2 uid="9cdf1291-03f9-42bb-b759-f8b67b5903b2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/bastionHosts/aso-sample-bastion"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5337" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5330" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"0b9467c8-aa4e-4dad-9e7c-857fc17831d2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf?api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] BastionHostController "msg"="Determined Delete action" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] BastionHostController "msg"="Starting delete of resource" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] BastionHostController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-bastion" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5336" generation=1 uid="f08f96ce-368c-4dd7-8a1c-c43ea28390e9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] BastionHostController "msg"="Delete succeeded, removing finalizer" name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="applying ownership" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="About to send resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Encountered error, re-queuing..." name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5334" generation=2 uid="2602a413-c084-459d-ac1d-323b827dea3c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] PublicIPAddressController "msg"="Got ARM status" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" status="{\"etag\":\"W/\\\"cd823fe2-610e-48c4-b352-214619390b9e\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\",\"location\":\"westus3\",\"name\":\"workspacescomputepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.171.45.67\",\"ipConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\"},\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"e1049feb-9994-48a1-92bd-6b70b3c465c4\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="updated resource in etcd" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5332" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Encountered error, re-queuing..." name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:51Z] PrivateEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-privateendpoint resource status: Operation cannot be fulfilled on privateendpoints.network.azure.com "aso-sample-privateendpoint": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privateendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-privateendpoint, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448, UID in object meta: " name="aso-sample-privateendpoint" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Encountered error, re-queuing..." name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5041" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="applying ownership" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="updated resource in etcd" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5338" generation=1 uid="34e0ad39-6723-41b6-8c36-4d4315bd5181" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5207" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesSecurityAlertPolicyController "msg"="applying ownership" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5149" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="applying ownership" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5095" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="applying ownership" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5341" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5344" generation=2 uid="eceae1b7-7970-481c-bee2-7dcc2b6dde94" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] NetworkSecurityGroupController "msg"="adding finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] DnsForwardingRulesetController "msg"="Reconcile invoked" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleset,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5342" generation=2 uid="79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="updated resource in etcd" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5348" generation=1 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ServersDatabaseController "msg"="Done with reconcile" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Determined CreateOrUpdate action" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Resource successfully created/updated" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] StorageAccountsBlobServicesContainerController "msg"="Got ARM status" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" status="{\"etag\":\"\\\"0x8DB6BCE86E73AF4\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf\",\"name\":\"asotestsdayuf\",\"properties\":{\"defaultEncryptionScope\":\"$account-encryption-key\",\"deleted\":false,\"denyEncryptionScopeOverride\":false,\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false,\"lastModifiedTime\":\"2001-02-03T04:05:06Z\",\"leaseState\":\"Available\",\"leaseStatus\":\"Unlocked\",\"legalHold\":{\"hasLegalHold\":false,\"tags\":[]},\"metadata\":null,\"publicAccess\":\"None\",\"remainingRetentionDays\":0},\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] VaultController "msg"="Determined CreateOrUpdate action" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5346" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsForwardingRulesetController "msg"="Determined Delete action" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsForwardingRulesetController "msg"="Starting delete of resource" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsForwardingRulesetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsForwardingRulesetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] BastionHostController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-bastion resource status: Operation cannot be fulfilled on bastionhosts.network.azure.com "aso-sample-bastion": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/bastionhosts/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-bastion, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9cdf1291-03f9-42bb-b759-f8b67b5903b2, UID in object meta: " name="aso-sample-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Set owner reference" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="About to send resource to Azure" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Successfully sent resource to Azure" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Resource successfully created/updated" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Got ARM status" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault\",\"location\":\"westus3\",\"name\":\"aso-ml-vault\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"c8d42d17-0044-4119-99f9-9207b705c9df\",\"objectId\":\"2735f286-1d85-49bc-bfec-c5994ede7e7f\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://aso-ml-vault.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolverController "msg"="Reconcile invoked" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolver,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5350" generation=2 uid="1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Encountered error, re-queuing..." name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Encountered error, re-queuing..." name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Set owner reference" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Set owner reference" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5354" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="applying ownership" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="Set owner reference" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Set owner reference" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5107" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="applying ownership" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountsQueueServicesQueueController "msg"="updated resource in etcd" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5361" generation=1 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestosmmrs", UID:"87896101-f6fb-4eb1-b631-c72a57073cf0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountsQueueServicesQueueController "msg"="Done with reconcile" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5357" generation=2 uid="6cb592c9-1922-4c9a-abb9-51f77ea08777" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolverController "msg"="Determined Delete action" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolverController "msg"="Starting delete of resource" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolverController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-resolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolverController "msg"="Delete succeeded, removing finalizer" name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5037" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="applying ownership" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5158" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="applying ownership" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="adding finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5365" generation=1 uid="9ae087b1-49fd-4d70-ac0b-3dceb79423e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Done with reconcile" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5363" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2602a413-c084-459d-ac1d-323b827dea3c, UID in object meta: " name="samplevnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Set owner reference" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="About to send resource to Azure" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Successfully sent resource to Azure" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] DnsForwardingRulesetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset resource status: Operation cannot be fulfilled on dnsforwardingrulesets.network.azure.com "aso-sample-ruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsforwardingrulesets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05, UID in object meta: " name="aso-sample-ruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eceae1b7-7970-481c-bee2-7dcc2b6dde94, UID in object meta: " name="samplenic" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="adding finalizer" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Set owner reference" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Set owner reference" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateLinkServiceController "msg"="Reconcile invoked" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateLinkService,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5366" generation=2 uid="76dfc791-fac2-4383-9aad-96246088e0b1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateLinkServices/aso-sample-pls"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5363" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Set owner reference" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" ownerGvk="sql.azure.com/v1api20211101storage, Kind=ServersDatabase" ownerName="asotestkekpcm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="adding finalizer" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountsBlobServicesContainerController "msg"="updated resource in etcd" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5372" generation=1 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"0b9467c8-aa4e-4dad-9e7c-857fc17831d2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountsBlobServicesContainerController "msg"="Done with reconcile" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5358" generation=1 uid="f80ba4f5-ac53-48cf-af20-4d507c094ab2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5374" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateLinkServiceController "msg"="Determined Delete action" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateLinkServiceController "msg"="Starting delete of resource" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateLinkServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-pls" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateLinkServiceController "msg"="Delete succeeded, removing finalizer" name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5380" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="updated resource in etcd" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5381" generation=1 uid="34e0ad39-6723-41b6-8c36-4d4315bd5181" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Done with reconcile" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] DnsResolverController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver resource status: Operation cannot be fulfilled on dnsresolvers.network.azure.com "aso-sample-resolver": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolvers/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-resolver, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1, UID in object meta: " name="aso-sample-resolver" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5370" generation=2 uid="eed88b00-0ff3-4a00-8fd1-31518b00bd21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPPrefixController "msg"="Reconcile invoked" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PublicIPPrefix,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5379" generation=2 uid="3c0cea86-eb59-4a76-9dea-dbd7a12c17d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/publicIPPrefixes/aso-sample-ipprefix"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:43 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6cb592c9-1922-4c9a-abb9-51f77ea08777, UID in object meta: " name="samplenicvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5380" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5337" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5374" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5375" generation=1 uid="f08f96ce-368c-4dd7-8a1c-c43ea28390e9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPPrefixController "msg"="Determined Delete action" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPPrefixController "msg"="Starting delete of resource" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPPrefixController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-ipprefix" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPPrefixController "msg"="Delete succeeded, removing finalizer" name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="adding finalizer" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NatGatewayController "msg"="Reconcile invoked" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:NatGateway,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5385" generation=2 uid="e5a2cbd5-a530-4bc1-9418-40af132a0d56" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-faseaf", UID:"2c4a2064-b23a-4d24-a86f-d33a400f35a3", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/natGateways/aso-sample-netgw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-faseaf, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="adding finalizer" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="adding finalizer" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5337" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="updated resource in etcd" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5387" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5380" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Found subnets to include on VNET" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" count=1 names=[]string{"workspacescomputesubnet"} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NatGatewayController "msg"="Determined Delete action" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NatGatewayController "msg"="Starting delete of resource" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="About to send resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NatGatewayController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-netgw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NatGatewayController "msg"="Delete succeeded, removing finalizer" name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Got ARM status" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" status="{\"etag\":\"W/\\\"4ead219f-76f2-4efa-8aa7-e612ee674d3b\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet\",\"location\":\"westus3\",\"name\":\"workspacescomputevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"31e946d7-25a4-4853-9562-dbaae3b85428\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5384" generation=2 uid="fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5387" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="adding finalizer" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5382" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="updated resource in etcd" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5383" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] PublicIPPrefixController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ipprefix resource status: Operation cannot be fulfilled on publicipprefixes.network.azure.com "aso-sample-ipprefix": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipprefixes/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-ipprefix, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3c0cea86-eb59-4a76-9dea-dbd7a12c17d1, UID in object meta: " name="aso-sample-ipprefix" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="adding finalizer" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Determined CreateOrUpdate action" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Resource not created yet, will check again" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5397" generation=1 uid="f80ba4f5-ac53-48cf-af20-4d507c094ab2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/43815d01-c64f-4443-9d16-d82ecf304f02?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] PrivateLinkServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-pls resource status: Operation cannot be fulfilled on privatelinkservices.network.azure.com "aso-sample-pls": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatelinkservices/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-pls, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 76dfc791-fac2-4383-9aad-96246088e0b1, UID in object meta: " name="aso-sample-pls" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5380" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5396" generation=2 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5397" generation=1 uid="f80ba4f5-ac53-48cf-af20-4d507c094ab2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/43815d01-c64f-4443-9d16-d82ecf304f02?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5387" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5393" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Resource not created yet, will check again" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="adding finalizer" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eed88b00-0ff3-4a00-8fd1-31518b00bd21, UID in object meta: " name="sampleloadbalancervmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Got ARM status" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" status="{\"etag\":\"W/\\\"2da67d4c-cf3f-4442-8826-35f761752a1d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\",\"location\":\"westus3\",\"name\":\"workspacescomputensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllOutBound\"}],\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"51a9ec44-32b7-48de-86e8-16f21c04e234\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5374" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5392" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5394" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="Determined CreateOrUpdate action" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="About to send resource to Azure" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5401" generation=2 uid="01c5fad8-b88c-41d2-b366-f0e7743efbab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5374" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5399" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NatGatewayController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-netgw resource status: Operation cannot be fulfilled on natgateways.network.azure.com "aso-sample-netgw": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/natgateways/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-netgw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e5a2cbd5-a530-4bc1-9418-40af132a0d56, UID in object meta: " name="aso-sample-netgw" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5403" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5380" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fb36975a-8de5-4afa-b8d9-d1d75ad4c7c5, UID in object meta: " name="samplepublicipvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="About to send resource to Azure" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Successfully sent resource to Azure" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Resource successfully created/updated" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Got ARM status" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"state\":\"Enabled\"},\"type\":\"Microsoft.Sql/servers/databases/advancedThreatProtectionSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5387" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5408" generation=1 uid="f08f96ce-368c-4dd7-8a1c-c43ea28390e9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5413" generation=2 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5410" generation=2 uid="5659786f-75cf-42ad-9bc0-02b231b0c4d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="About to send resource to Azure" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="Successfully sent resource to Azure" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="Resource successfully created/updated" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="Got ARM status" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/Default\",\"name\":\"Default\",\"properties\":{\"creationTime\":\"2001-02-03T04:05:06Z\",\"disabledAlerts\":[\"\"],\"emailAccountAdmins\":false,\"emailAddresses\":[\"\"],\"retentionDays\":0,\"state\":\"Enabled\",\"storageEndpoint\":\"\"},\"type\":\"Microsoft.Sql/servers/databases/securityAlertPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Resource not created yet, will check again" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5415" generation=2 uid="4a73a847-256f-4a7d-8c86-36161fb6f0e2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5416" generation=1 uid="f80ba4f5-ac53-48cf-af20-4d507c094ab2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5363" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="About to send resource to Azure" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Successfully sent resource to Azure" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="updated resource in etcd" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Determined Delete action" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5387" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="About to send resource to Azure" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Successfully sent resource to Azure" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5363" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5411" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 01c5fad8-b88c-41d2-b366-f0e7743efbab, UID in object meta: " name="samplevnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="updated resource in etcd" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5421" generation=1 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Done with reconcile" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5413" generation=2 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Reconcile invoked" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:LoadBalancer,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5422" generation=2 uid="71a4275d-01ca-43a5-b609-f06f510ff109" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/loadBalancers/sampleloadbalancervmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Determined CreateOrUpdate action" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5380" generation=2 uid="a8c9927f-a33f-42f7-adf3-9b805a2f9065" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:51 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaU1RMRFgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Resource successfully created/updated" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="About to send resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Got ARM status" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany\",\"location\":\"westcentralus\",\"name\":\"asotestpawany\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"47bc033a-83f5-4664-ae60-b5ecbc3cf487\",\"objectId\":\"5f823609-6edd-4946-a40f-55eebd4f49f4\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},{\"applicationId\":\"1c793267-c310-d4ae-7bd5-5af5bef875d3\",\"objectId\":\"1C793267-c310-d4ae-7BD5-5Af5BEF875D3\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://asotestpawany.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Successfully sent resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4a73a847-256f-4a7d-8c86-36161fb6f0e2, UID in object meta: " name="samplevnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="About to send resource to Azure" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Successfully sent resource to Azure" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1 resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplevnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5659786f-75cf-42ad-9bc0-02b231b0c4d1, UID in object meta: " name="samplevnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotest-rg-zstldx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Determined Delete action" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Starting delete of resource" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampleloadbalancervmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Delete succeeded, removing finalizer" name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5429" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyAzureAsyncOperation/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyOperationResults/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Done with reconcile" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="updated resource in etcd" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5430" generation=1 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesSecurityAlertPolicyController "msg"="Done with reconcile" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5413" generation=2 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5306" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5429" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyAzureAsyncOperation/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/shortTermRetentionPolicyOperationResults/33db3d8e-b662-4930-ac45-9a820275675c?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5434" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyAzureAsyncOperation/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyOperationResults/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5431" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"f08f96ce-368c-4dd7-8a1c-c43ea28390e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Done with reconcile" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Resource successfully created/updated" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Got ARM status" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default\",\"name\":\"default\",\"properties\":{\"diffBackupIntervalInHours\":12,\"retentionDays\":7},\"type\":\"Microsoft.Sql/servers/databases/backupShortTermRetentionPolicies\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5432" generation=2 uid="07ade0fa-ac62-40bf-8906-b341132bea73" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenic1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="About to send resource to Azure" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Successfully sent resource to Azure" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenic1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotest-rg-zstldx resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-zstldx": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotest-rg-zstldx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a8c9927f-a33f-42f7-adf3-9b805a2f9065, UID in object meta: " name="asotest-rg-zstldx" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5337" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="adding finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Resource successfully created/updated" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Got ARM status" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/Default\",\"name\":\"Default\",\"properties\":{\"recurringScans\":{\"emailSubscriptionAdmins\":true,\"isEnabled\":false},\"storageContainerPath\":\"https://asotestsqlstorage.blob.core.windows.net/vulnerabilityassessments/\"},\"type\":\"Microsoft.Sql/servers/databases/vulnerabilityAssessments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="updated resource in etcd" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5442" generation=1 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VaultController "msg"="Done with reconcile" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5441" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Done with reconcile" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5337" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5434" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyAzureAsyncOperation/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/longTermRetentionPolicyOperationResults/86318a1b-b997-4e8f-a10d-aaadcbb3956e?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] LoadBalancerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss1 resource status: Operation cannot be fulfilled on loadbalancers.network.azure.com "sampleloadbalancervmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/loadbalancers/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampleloadbalancervmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 71a4275d-01ca-43a5-b609-f06f510ff109, UID in object meta: " name="sampleloadbalancervmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5413" generation=2 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Determined CreateOrUpdate action" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Resource successfully created/updated" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Got ARM status" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default\",\"name\":\"default\",\"properties\":{\"monthlyRetention\":\"PT0S\",\"weekOfYear\":0,\"weeklyRetention\":\"P30D\",\"yearlyRetention\":\"PT0S\"},\"type\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5441" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default?api-version=2021-11-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" status="{\"etag\":\"W/\\\"2be38f61-4dde-455b-abf9-ca06b399de4c\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\",\"name\":\"workspacescomputesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5447" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Done with reconcile" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Reconcile invoked" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5443" generation=2 uid="da4013fb-f85f-42a9-a772-6172a1e09d41" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/networkInterfaces/samplenicvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenic1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenic1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 07ade0fa-ac62-40bf-8906-b341132bea73, UID in object meta: " name="samplenic1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5448" generation=1 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Done with reconcile" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Determined CreateOrUpdate action" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Determined Delete action" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Starting delete of resource" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotest-rg-zstldx aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotestwegjbc]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Resource successfully created/updated" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5413" generation=2 uid="e45a5d96-c728-4055-aa7b-ca3040825017" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBQkJYS1MtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5447" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/8d2a8b52-6dc1-4028-b773-d38f2b55a425?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Got ARM status" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/Default\",\"name\":\"Default\",\"properties\":{\"auditActionsAndGroups\":[\"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP\",\"FAILED_DATABASE_AUTHENTICATION_GROUP\",\"BATCH_COMPLETED_GROUP\"],\"isAzureMonitorTargetEnabled\":false,\"isManagedIdentityInUse\":false,\"isStorageSecondaryKeyInUse\":false,\"retentionDays\":0,\"state\":\"Enabled\",\"storageAccountSubscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"storageEndpoint\":\"https://asotestsqlstorage.blob.core.windows.net/\"},\"type\":\"Microsoft.Sql/servers/databases/auditingSettings\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplenicvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5453" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Resource creation/update failure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" error="GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\n--------------------------------------------------------------------------------\nRESPONSE 200: 200 OK\nERROR CODE: InternalServerError\n--------------------------------------------------------------------------------\n{\n \"name\": \"8d2a8b52-6dc1-4028-b773-d38f2b55a425\",\n \"status\": \"Failed\",\n \"startTime\": \"2001-02-03T04:05:06Z\",\n \"error\": {\n \"code\": \"InternalServerError\",\n \"message\": \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotest-rg-abbxks" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: InternalServerError, Severity: Warning, RetryClassification: RetrySlow, Cause: An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 200: 200 OK +[controller:test-integration-envtest] ERROR CODE: InternalServerError +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "name": "8d2a8b52-6dc1-4028-b773-d38f2b55a425", +[controller:test-integration-envtest] "status": "Failed", +[controller:test-integration-envtest] "startTime": "2001-02-03T04:05:06Z", +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "InternalServerError", +[controller:test-integration-envtest] "message": "An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="updated resource in etcd" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5457" generation=1 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Done with reconcile" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5450" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputesubnet, Group/Kind: network.azure.com/VirtualNetworksSubnet doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5462" generation=1 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"f08f96ce-368c-4dd7-8a1c-c43ea28390e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Reconcile invoked" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5458" generation=2 uid="bdfeca23-3903-446d-885d-680926772bb6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/publicIPAddresses/samplepublicipvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5454" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"f80ba4f5-ac53-48cf-af20-4d507c094ab2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="adding finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Determined Delete action" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Starting delete of resource" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplepublicipvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Reconcile invoked" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateDnsZonesVirtualNetworkLink,APIVersion:network.azure.com/v1api20200601storage,}" resourceVersion="5463" generation=2 uid="4d09a43e-fe1c-46bb-a57e-c183a1555cb9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20180901storage", Kind:"PrivateDnsZone", Name:"privatelink.blob.core.windows.net", UID:"17acd52c-25b9-4d37-aa24-10c433db7ba8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateDnsZones/privatelink.blob.core.windows.net/virtualNetworkLinks/aso-sample-vnetlink"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:40 +0000 UTC\"]" owner="privatelink.blob.core.windows.net, Group/Kind: network.azure.com/PrivateDnsZone" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss1 resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "samplenicvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplenicvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: da4013fb-f85f-42a9-a772-6172a1e09d41, UID in object meta: " name="samplenicvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Determined Delete action" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Starting delete of resource" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-vnetlink" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="updated resource in etcd" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5459" generation=1 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Done with reconcile" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="updated resource in etcd" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5470" generation=1 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesAuditingSettingController "msg"="Done with reconcile" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotest-rg-abbxks resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-abbxks": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotest-rg-abbxks, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e45a5d96-c728-4055-aa7b-ca3040825017, UID in object meta: " name="asotest-rg-abbxks" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5351" generation=1 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] SignalRController "msg"="Reconcile invoked" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" kind="&TypeMeta{Kind:SignalR,APIVersion:signalrservice.azure.com/v1api20211001storage,}" resourceVersion="5473" generation=2 uid="164ff597-3d29-4570-ad25-807f9bc84466" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zstldx", UID:"a8c9927f-a33f-42f7-adf3-9b805a2f9065", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zstldx/providers/Microsoft.SignalRService/signalR/asotestwegjbc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-zstldx, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5472" generation=2 uid="3065f320-398c-4294-9b08-9d3ca80965a1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver-dnsforwardingruleset", UID:"62da1bfb-8d06-4c42-a594-d5e07d4ac2bb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver-dnsforwardingruleset/outboundEndpoints/aso-sample-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner="aso-sample-resolver-dnsforwardingruleset, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5479" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Encountered error, re-queuing..." name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] NetworkInterfaceController "msg"="Got ARM status" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" status="{\"etag\":\"W/\\\"6e0d379e-ffdb-4c93-a213-129a56a9d8c0\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\",\"location\":\"westus3\",\"name\":\"workspacescomputenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"03dosmneevjurflc1ovohocufa.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"6e0d379e-ffdb-4c93-a213-129a56a9d8c0\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"macAddress\":\"60-45-BD-C9-6F-4E\",\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\"},\"nicType\":\"Standard\",\"primary\":true,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"e0f9e2e6-b610-4a49-a0d5-aa29a6b01c9f\",\"virtualMachine\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolversOutboundEndpointController "msg"="Determined Delete action" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolversOutboundEndpointController "msg"="Starting delete of resource" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolversOutboundEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] SignalRController "msg"="Determined Delete action" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] SignalRController "msg"="Starting delete of resource" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] SignalRController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" azureName="asotestwegjbc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] SignalRController "msg"="Delete succeeded, removing finalizer" name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] DnsResolversOutboundEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5481" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss1 resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "samplepublicipvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplepublicipvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bdfeca23-3903-446d-885d-680926772bb6, UID in object meta: " name="samplepublicipvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:52Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5479" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:52Z] PrivateDnsZonesVirtualNetworkLinkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vnetlink resource status: Operation cannot be fulfilled on privatednszonesvirtualnetworklinks.network.azure.com "aso-sample-vnetlink": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privatednszonesvirtualnetworklinks/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-vnetlink, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4d09a43e-fe1c-46bb-a57e-c183a1555cb9, UID in object meta: " name="aso-sample-vnetlink" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5483" generation=2 uid="4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn2", UID:"5b722bf4-814e-417d-87b9-a5703908e3de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn2/subnets/AzureBastionSubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn2, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5419" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/575d3d69-7063-44e2-a82c-39effd7808c5?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5481" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5475" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="updated resource in etcd" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotest-rg-abbxks aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestosmmrs aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestpfarbj aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotesttuhlss aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestsdayuf aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestgcmprw]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Resource successfully created/updated" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Got ARM status" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage\",\"kind\":\"BlobStorage\",\"location\":\"westus3\",\"name\":\"asomlworkspacestorage\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asomlworkspacestorage.blob.core.windows.net/\",\"dfs\":\"https://asomlworkspacestorage.dfs.core.windows.net/\",\"table\":\"https://asomlworkspacestorage.table.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="AzureBastionSubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5345" generation=1 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5474" generation=2 uid="d3fcf2d8-af01-4de2-8626-68406fa5b6e0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] SignalRController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotestwegjbc resource status: Operation cannot be fulfilled on signalrs.signalrservice.azure.com "asotestwegjbc": StorageError: invalid object, Code: 4, Key: /registry/signalrservice.azure.com/signalrs/aso-test-samples-creationanddeletion-test-signalrservice--a71f6/asotestwegjbc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 164ff597-3d29-4570-ad25-807f9bc84466, UID in object meta: " name="asotestwegjbc" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a71f6" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5486" generation=2 uid="61eff198-fe25-48ef-b5e8-51ecd94c43c4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20210701"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5489" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"f80ba4f5-ac53-48cf-af20-4d507c094ab2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/c2d90fb3-3e96-4506-b1a4-ab7430d6912d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5481" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] DnsResolversOutboundEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep-dnsforwardingruleset resource status: Operation cannot be fulfilled on dnsresolversoutboundendpoints.network.azure.com "aso-sample-outbound-ep-dnsforwardingruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolversoutboundendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep-dnsforwardingruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3065f320-398c-4294-9b08-9d3ca80965a1, UID in object meta: " name="aso-sample-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-bastion resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-bastion": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-bastion, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4cd0c14a-a6d3-4a61-9774-d13e24a8b2e6, UID in object meta: " name="aso-sample-subnet-bastion" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5492" generation=1 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkInterfaceController "msg"="Done with reconcile" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Reconcile invoked" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Image,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5495" generation=2 uid="345f538b-dcaf-495b-982d-97afd9f2c40e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/images/aso-sample-image-20220301"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="About to send resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Successfully created resource" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="updated resource in etcd" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5491" generation=2 uid="6d9b7d3d-87ef-4d86-9397-623ca4245193" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn1", UID:"0bf28bc6-66fb-43ee-8161-35027ea38a52", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn1/subnets/aso-sample-subnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="About to send resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Successfully sent resource to Azure" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Reconcile invoked" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5497" generation=2 uid="7451afc5-1131-4744-8b14-a6dcaf447450" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-abbxks", UID:"e45a5d96-c728-4055-aa7b-ca3040825017", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotest-rg-abbxks, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20210701" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Determined Delete action" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Starting delete of resource" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-image-20220301" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ImageController "msg"="Delete succeeded, removing finalizer" name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5489" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"f80ba4f5-ac53-48cf-af20-4d507c094ab2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/c2d90fb3-3e96-4506-b1a4-ab7430d6912d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5499" generation=2 uid="dbdac09d-2260-4f2d-b21d-afc96407031d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Determined Delete action" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Starting delete of resource" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestyhvgvw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5481" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" status="{\"etag\":\"W/\\\"fa67a3d7-453f-4df2-8bdb-84ffd9fedb2f\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule\",\"name\":\"workspacescomputensgrule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to any source port\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"direction\":\"Inbound\",\"priority\":101,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"*\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5356" generation=1 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d3fcf2d8-af01-4de2-8626-68406fa5b6e0, UID in object meta: " name="samplevmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20220301 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20220301": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20220301, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 345f538b-dcaf-495b-982d-97afd9f2c40e, UID in object meta: " name="aso-sample-image-20220301" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Reconcile invoked" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5502" generation=2 uid="f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/aso-sample-vm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Determined CreateOrUpdate action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6d9b7d3d-87ef-4d86-9397-623ca4245193, UID in object meta: " name="aso-sample-subnet1" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined Delete action" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Starting delete of resource" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-vm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5504" generation=2 uid="fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn-dnsresolver", UID:"2dc23dda-2f8c-47a5-827a-953fe012fcad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn-dnsresolver/subnets/aso-sample-subnet-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn-dnsresolver, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="updated resource in etcd" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5516" generation=1 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Done with reconcile" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5507" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] ImageController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20210701 resource status: Operation cannot be fulfilled on images.compute.azure.com "aso-sample-image-20210701": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/images/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-image-20210701, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 61eff198-fe25-48ef-b5e8-51ecd94c43c4, UID in object meta: " name="aso-sample-image-20210701" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Done with reconcile" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5519" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestyhvgvw": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestyhvgvw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7451afc5-1131-4744-8b14-a6dcaf447450, UID in object meta: " name="asotestyhvgvw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5481" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5517" generation=2 uid="3144f1ea-7be4-4dcd-b4ac-9a72eeb23762" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:38 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet-outbound-ep-dnsforwardingruleset"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DiskController "msg"="Reconcile invoked" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Disk,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5522" generation=2 uid="e590b9ef-20b2-430e-87fc-86cd7b4c7b96" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/disks/sampledisk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5507" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionOperationResults/51148b49-5363-4a6c-b5ed-446fcbceb4fd?api-version=2021-11-01\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current?api-version=2021-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"InternalServerError\", Message = \"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8': GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/locations/eastus/transparentDataEncryptionAzureAsyncOperation/8d2a8b52-6dc1-4028-b773-d38f2b55a425\\n--------------------------------------------------------------------------------\\nRESPONSE 200: 200 OK\\nERROR CODE: InternalServerError\\n--------------------------------------------------------------------------------\\n{\\n \\\"name\\\": \\\"8d2a8b52-6dc1-4028-b773-d38f2b55a425\\\",\\n \\\"status\\\": \\\"Failed\\\",\\n \\\"startTime\\\": \\\"2001-02-03T04:05:06Z\\\",\\n \\\"error\\\": {\\n \\\"code\\\": \\\"InternalServerError\\\",\\n \\\"message\\\": \\\"An unexpected error occured while processing the request. Tracking ID: '76016e89-e281-483b-a323-354fc76f19c8'\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-inbound-ep resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-inbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-inbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dbdac09d-2260-4f2d-b21d-afc96407031d, UID in object meta: " name="aso-sample-subnet-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5519" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet-outbound-ep-dnsforwardingruleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5525" generation=1 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"f80ba4f5-ac53-48cf-af20-4d507c094ab2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-outbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fdbdafca-a4e8-4ea7-a718-cbf1ee3d8363, UID in object meta: " name="aso-sample-subnet-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5481" generation=2 uid="ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:52 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCVVdUQUItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Resource successfully created/updated" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5523" generation=1 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined CreateOrUpdate action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Resource successfully created/updated" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Got ARM status" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/Current\",\"name\":\"Current\",\"properties\":{\"state\":\"Enabled\"},\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DiskController "msg"="Determined Delete action" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Got ARM status" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\",\"location\":\"westus3\",\"name\":\"workspacescomputevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/disks/workspacescomputevm_disk1_0868db3e5469496ab6b9f7583e2e0666\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"workspacescomputevm_disk1_0868db3e5469496ab6b9f7583e2e0666\",\"osType\":\"Linux\"}},\"vmId\":\"c16d4495-8374-4ff5-9a78-dccd35b0259b\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DiskController "msg"="Starting delete of resource" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DiskController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="sampledisk" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotest-rg-buwtab" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5529" generation=2 uid="3e01d648-e43f-4d86-87c1-5ebb3a199b78" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"aso-sample-vn", UID:"ace5377f-23b8-4da8-b804-b23d2b481eb9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:39 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/virtualNetworks/aso-sample-vn/subnets/aso-sample-subnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:41 +0000 UTC\"]" owner="aso-sample-vn, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "aso-sample-vm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-vm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f0dfc742-4c41-40bc-b4cb-32e1ebf0f4d3, UID in object meta: " name="aso-sample-vm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="updated resource in etcd" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsQueueServiceController "msg"="Reconcile invoked" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5530" generation=2 uid="87896101-f6fb-4eb1-b631-c72a57073cf0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DiskController "msg"="Delete succeeded, removing finalizer" name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-subnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] SnapshotController "msg"="Reconcile invoked" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:Snapshot,APIVersion:compute.azure.com/v1api20200930storage,}" resourceVersion="5533" generation=2 uid="07e4a093-bc32-4360-b0cc-4693912851bb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/snapshots/aso-sample-snapshot"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:47 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsQueueServiceController "msg"="Determined Delete action" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsQueueServiceController "msg"="Starting delete of resource" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsQueueServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsQueueServiceController "msg"="Delete succeeded, removing finalizer" name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep-dnsforwardingruleset resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet-outbound-ep-dnsforwardingruleset": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet-outbound-ep-dnsforwardingruleset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3144f1ea-7be4-4dcd-b4ac-9a72eeb23762, UID in object meta: " name="aso-sample-subnet-outbound-ep-dnsforwardingruleset" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5353" generation=1 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] SnapshotController "msg"="Determined Delete action" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] SnapshotController "msg"="Starting delete of resource" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] SnapshotController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="aso-sample-snapshot" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] SnapshotController "msg"="Delete succeeded, removing finalizer" name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotest-rg-buwtab resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-buwtab": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotest-rg-buwtab, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2, UID in object meta: " name="asotest-rg-buwtab" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotest-rg-buwtab aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotestpawany]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Reconcile invoked" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:PrivateEndpointsPrivateDnsZoneGroup,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5536" generation=2 uid="51a4fd66-fc25-4bb2-9bd5-2991ced15cad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"PrivateEndpoint", Name:"aso-sample-privateendpoint", UID:"54fe9b42-b4a9-4e4f-9f2f-a578c4e0f448", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/privateEndpoints/aso-sample-privateendpoint/privateDnsZoneGroups/aso-sample-dnszonegroup"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-privateendpoint, Group/Kind: network.azure.com/PrivateEndpoint" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5539" generation=2 uid="0b9467c8-aa4e-4dad-9e7c-857fc17831d2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Encountered error, re-queuing..." name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="updated resource in etcd" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5540" generation=1 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ServersDatabasesTransparentDataEncryptionController "msg"="Done with reconcile" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] DiskController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampledisk resource status: Operation cannot be fulfilled on disks.compute.azure.com "sampledisk": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/disks/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/sampledisk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e590b9ef-20b2-430e-87fc-86cd7b4c7b96, UID in object meta: " name="sampledisk" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] StorageAccountsQueueServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestosmmrs resource status: Operation cannot be fulfilled on storageaccountsqueueservices.storage.azure.com "asotestosmmrs": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservices/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestosmmrs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 87896101-f6fb-4eb1-b631-c72a57073cf0, UID in object meta: " name="asotestosmmrs" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Determined Delete action" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com "asotest-rg-vdecpn" not found)" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Starting delete of resource" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-dnszonegroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Delete succeeded, removing finalizer" name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Reconcile invoked" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachineScaleSet,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5515" generation=2 uid="98ca0d8a-3f62-413b-9c78-724c05712330" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachineScaleSets/samplevmss1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "aso-sample-subnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-subnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3e01d648-e43f-4d86-87c1-5ebb3a199b78, UID in object meta: " name="aso-sample-subnet" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5550" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] SnapshotController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-snapshot resource status: Operation cannot be fulfilled on snapshots.compute.azure.com "aso-sample-snapshot": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/snapshots/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/aso-sample-snapshot, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 07e4a093-bc32-4360-b0cc-4693912851bb, UID in object meta: " name="aso-sample-snapshot" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Reconcile invoked" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsForwardingRuleSetsForwardingRule,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5547" generation=2 uid="08dcf386-79c7-4305-a8d6-8b487d561dc8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsForwardingRuleset", Name:"aso-sample-ruleset", UID:"79368f3b-b4a3-4b00-a1bd-f5e59cdb3a05", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsForwardingRulesets/aso-sample-ruleset/forwardingRules/aso-sample-rule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner="aso-sample-ruleset, Group/Kind: network.azure.com/DnsForwardingRuleset" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Determined Delete action" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Starting delete of resource" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Delete succeeded, removing finalizer" name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Determined Delete action" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Starting delete of resource" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-rule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Delete succeeded, removing finalizer" name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsManagementPolicyController "msg"="Reconcile invoked" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsManagementPolicy,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5552" generation=2 uid="e545ec42-6c55-4784-80e5-a51cdee05a6c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestyhvgvw", UID:"7451afc5-1131-4744-8b14-a6dcaf447450", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/managementPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestyhvgvw, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5542" generation=1 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Reconcile invoked" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5546" generation=2 uid="f8fe7134-44af-45d4-8dd4-89fb9cd1e899" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vdecpn", UID:"d829c834-79cd-4bb1-9473-b8a895cee945", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Compute/virtualMachines/samplevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/asotest-rg-vdecpn does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-vdecpn\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-vdecpn, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsManagementPolicyController "msg"="Determined Delete action" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsManagementPolicyController "msg"="Starting delete of resource" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsManagementPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] StorageAccountsManagementPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5555" generation=2 uid="e006825c-2f05-4470-adc4-8b1c1b5d66e3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotesttuhlss resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "asotesttuhlss": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotesttuhlss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0b9467c8-aa4e-4dad-9e7c-857fc17831d2, UID in object meta: " name="asotesttuhlss" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] PrivateEndpointsPrivateDnsZoneGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-dnszonegroup resource status: Operation cannot be fulfilled on privateendpointsprivatednszonegroups.network.azure.com "aso-sample-dnszonegroup": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/privateendpointsprivatednszonegroups/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-dnszonegroup, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 51a4fd66-fc25-4bb2-9bd5-2991ced15cad, UID in object meta: " name="aso-sample-dnszonegroup" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsResolversOutboundEndpointController "msg"="Reconcile invoked" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversOutboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5554" generation=2 uid="bd92deed-5f60-4f63-bce4-ffdfc927df87" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:42 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/outboundEndpoints/aso-sample-outbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsResolversOutboundEndpointController "msg"="Determined Delete action" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsResolversOutboundEndpointController "msg"="Starting delete of resource" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsResolversOutboundEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-outbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsResolversOutboundEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby\",\"location\":\"westus2\",\"name\":\"asotest-rg-bwxmby\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Determined Delete action" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Starting delete of resource" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplevm" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineScaleSetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss1 resource status: Operation cannot be fulfilled on virtualmachinescalesets.compute.azure.com "samplevmss1": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachinescalesets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 98ca0d8a-3f62-413b-9c78-724c05712330, UID in object meta: " name="samplevmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5565" generation=1 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] VaultController "msg"="Reconcile invoked" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5562" generation=2 uid="ce365ea4-a74a-4243-9456-be448f21fa45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-buwtab", UID:"ec8eb2f0-5c40-4a1c-bcbc-919d8519cfe2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-buwtab/providers/Microsoft.KeyVault/vaults/asotestpawany"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-buwtab, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "samplevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f8fe7134-44af-45d4-8dd4-89fb9cd1e899, UID in object meta: " name="samplevm" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e006825c-2f05-4470-adc4-8b1c1b5d66e3, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:53Z] DnsForwardingRuleSetsForwardingRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-rule resource status: Operation cannot be fulfilled on dnsforwardingrulesetsforwardingrules.network.azure.com "aso-sample-rule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsforwardingrulesetsforwardingrules/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-rule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 08dcf386-79c7-4305-a8d6-8b487d561dc8, UID in object meta: " name="aso-sample-rule" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:53Z] DnsResolversInboundEndpointController "msg"="Reconcile invoked" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" kind="&TypeMeta{Kind:DnsResolversInboundEndpoint,APIVersion:network.azure.com/v1api20220701storage,}" resourceVersion="5563" generation=2 uid="0066be74-60a2-4821-b8b2-2383b5717d45" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20220701storage", Kind:"DnsResolver", Name:"aso-sample-resolver", UID:"1f1b20a7-88dc-472f-a8b6-86f0ba5ab4b1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:43 +0000 UTC" deletionTimestamp="2023-09-08 21:48:53 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-faseaf/providers/Microsoft.Network/dnsResolvers/aso-sample-resolver/inboundEndpoints/aso-sample-inbound-ep"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="aso-sample-resolver, Group/Kind: network.azure.com/DnsResolver" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] DnsResolversInboundEndpointController "msg"="Determined Delete action" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] DnsResolversInboundEndpointController "msg"="Starting delete of resource" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] DnsResolversInboundEndpointController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" azureName="aso-sample-inbound-ep" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] DnsResolversInboundEndpointController "msg"="Delete succeeded, removing finalizer" name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VaultController "msg"="Determined Delete action" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VaultController "msg"="Starting delete of resource" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" azureName="asotestpawany" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VaultController "msg"="Delete succeeded, removing finalizer" name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] StorageAccountsManagementPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestgcmprw resource status: Operation cannot be fulfilled on storageaccountsmanagementpolicies.storage.azure.com "asotestgcmprw": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsmanagementpolicies/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestgcmprw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e545ec42-6c55-4784-80e5-a51cdee05a6c, UID in object meta: " name="asotestgcmprw" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] DnsResolversOutboundEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep resource status: Operation cannot be fulfilled on dnsresolversoutboundendpoints.network.azure.com "aso-sample-outbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolversoutboundendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-outbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bd92deed-5f60-4f63-bce4-ffdfc927df87, UID in object meta: " name="aso-sample-outbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5575" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="applying ownership" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsQueueServicesQueueController "msg"="Reconcile invoked" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsQueueServicesQueue,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5574" generation=2 uid="f4d38222-bd6d-407e-afd6-de552ee240d1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsQueueService", Name:"asotestosmmrs", UID:"87896101-f6fb-4eb1-b631-c72a57073cf0", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/queueServices/default/queues/asotestpfarbj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotestosmmrs, Group/Kind: storage.azure.com/StorageAccountsQueueService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Set owner reference" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotestpawany resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "asotestpawany": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919/asotestpawany, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ce365ea4-a74a-4243-9456-be448f21fa45, UID in object meta: " name="asotestpawany" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1api--9c919" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsQueueServicesQueueController "msg"="Determined Delete action" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsQueueServicesQueueController "msg"="Starting delete of resource" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsQueueServicesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestpfarbj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsQueueServicesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] DnsResolversInboundEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-inbound-ep resource status: Operation cannot be fulfilled on dnsresolversinboundendpoints.network.azure.com "aso-sample-inbound-ep": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/dnsresolversinboundendpoints/aso-test-samples-creationanddeletion-test-network-v1api20-e4cba/aso-sample-inbound-ep, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0066be74-60a2-4821-b8b2-2383b5717d45, UID in object meta: " name="aso-sample-inbound-ep" namespace="aso-test-samples-creationanddeletion-test-network-v1api20-e4cba" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5580" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Owner does not yet exist" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" NamespacedName="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5583" generation=2 uid="20a92e19-bd07-4b92-83d6-360fc0e95670" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"asotesttuhlss", UID:"0b9467c8-aa4e-4dad-9e7c-857fc17831d2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-abbxks/providers/Microsoft.Storage/storageAccounts/asotestyhvgvw/blobServices/default/containers/asotestsdayuf"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotesttuhlss, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] StorageAccountsQueueServicesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestpfarbj resource status: Operation cannot be fulfilled on storageaccountsqueueservicesqueues.storage.azure.com "asotestpfarbj": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsqueueservicesqueues/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestpfarbj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f4d38222-bd6d-407e-afd6-de552ee240d1, UID in object meta: " name="asotestpfarbj" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" azureName="asotestsdayuf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5587" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="adding finalizer" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5586" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5591" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestsdayuf resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "asotestsdayuf": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a/asotestsdayuf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 20a92e19-bd07-4b92-83d6-360fc0e95670, UID in object meta: " name="asotestsdayuf" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-70b8a" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5592" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Owner does not yet exist" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" NamespacedName="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="updated resource in etcd" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5597" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5601" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="applying ownership" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5599" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:44 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Set owner reference" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5604" generation=2 uid="5ed9bdc3-724e-48bc-96a0-b6e63e2476da" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss1", UID:"2602a413-c084-459d-ac1d-323b827dea3c", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss1/subnets/samplesubnetvmss1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5606" generation=1 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="adding finalizer" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5609" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5614" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5613" generation=2 uid="3c534b70-a1a9-4ae5-b5f1-5bb84f766f07" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet", UID:"01c5fad8-b88c-41d2-b366-f0e7743efbab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet/subnets/samplesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5619" generation=1 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5618" generation=1 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="updated resource in etcd" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5616" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5620" generation=1 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw\",\"location\":\"westus2\",\"name\":\"asotest-rg-tspxpw\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5ed9bdc3-724e-48bc-96a0-b6e63e2476da, UID in object meta: " name="samplesubnetvmss1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5624" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="About to send resource to Azure" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5624" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3c534b70-a1a9-4ae5-b5f1-5bb84f766f07, UID in object meta: " name="samplesubnet" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="updated resource in etcd" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5626" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5629" generation=1 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5628" generation=1 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5631" generation=2 uid="215bb973-2c5e-460a-8e0f-bf01eef46947" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnet1", UID:"5659786f-75cf-42ad-9bc0-02b231b0c4d1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnet1/subnets/samplesubnet1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnet1, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5626" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5633" generation=1 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5624" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="updated resource in etcd" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns\",\"location\":\"westus2\",\"name\":\"asotest-rg-vbehns\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin\",\"location\":\"westus2\",\"name\":\"asotest-rg-ddhnin\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnet1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5624" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5626" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5640" generation=2 uid="52300c6c-a2bd-49c5-91a0-da733671d3f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplevnetvmss", UID:"4a73a847-256f-4a7d-8c86-36161fb6f0e2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vdecpn/providers/Microsoft.Network/virtualNetworks/samplevnetvmss/subnets/samplesubnetvmss"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="samplevnetvmss, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1 resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnet1": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnet1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 215bb973-2c5e-460a-8e0f-bf01eef46947, UID in object meta: " name="samplesubnet1" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5624" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" azureName="samplesubnetvmss" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5644" generation=1 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5626" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5624" generation=2 uid="a1db61c8-986e-4a23-a380-96bc29d57626" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 21:48:54 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMRVlXRlAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesubnetvmss": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f/samplesubnetvmss, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 52300c6c-a2bd-49c5-91a0-da733671d3f7, UID in object meta: " name="samplesubnetvmss" namespace="aso-test-samples-creationanddeletion-test-compute-v1api-c-1933f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5649" generation=1 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5626" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vTRiS7ZUQfykhCf74_kvMmT789WuJXNjqjHnXs0jrdQ?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotest-rg-leywfp" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5650" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Got ARM status" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw\",\"identity\":{\"principalId\":\"aaf502ff-2e02-4913-aa3c-fe248535aaf8\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"asotestwokcjw\",\"properties\":{\"allowPublicAccessWhenBehindVnet\":true,\"description\":\"\",\"discoveryUrl\":\"https://westus3.api.azureml.ms/discovery\",\"friendlyName\":\"\",\"hbiWorkspace\":false,\"keyVault\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Keyvault/vaults/aso-ml-vault\",\"mlFlowTrackingUri\":\"azureml://westus3.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw\",\"notebookInfo\":{\"fqdn\":\"ml-asotestwokcjw-westus3-16f3b61c-1882-48c5-a127-3bc612a511ac.westus2.notebooks.azure.net\",\"resourceId\":\"4749ece93ecf44fe98a16e0f47fbec8c\"},\"privateLinkCount\":0,\"provisioningState\":\"Succeeded\",\"storageAccount\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage\",\"storageHnsEnabled\":false,\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"workspaceId\":\"16f3b61c-1882-48c5-a127-3bc612a511ac\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.MachineLearningServices/workspaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Getting Kubernetes resources for export" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspaceController "msg"="Successfully created resource" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" name="workspace-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:54Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5655" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="applying ownership" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/aso-sample-sqlsecret aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/vulnerabilityassessments aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlvnet aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlsubnet aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestsqlstorage aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestvinoxb aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestoxzset aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestulcgqg aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdwzgal aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestzmywpu aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwenbxt aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestlboexz aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdqgjqg aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestjdhujz aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkrftcu aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttdlrym aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttcwsht aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesthozjgi aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestggernv aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestiduxfx aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestyllufl aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestubsqct]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5658" generation=1 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5654" generation=1 uid="a382c141-946f-4329-8039-1094fc1310b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] VirtualNetworkController "msg"="applying ownership" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:54Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5637" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Set owner reference" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-leywfp": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a1db61c8-986e-4a23-a380-96bc29d57626, UID in object meta: " name="asotest-rg-leywfp" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspaceController "msg"="updated resource in etcd" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5666" generation=1 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspaceController "msg"="Done with reconcile" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Set owner reference" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5605" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5665" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Resource successfully created/updated" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5603" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="applying ownership" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="adding finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Got ARM status" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj\",\"location\":\"West Central US\",\"name\":\"asotesthzpbpj\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"metricId\":\"00000000-0000-0000-0000-000000000000:asotesthzpbpj\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotesthzpbpj.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5668" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="applying ownership" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Set owner reference" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5159" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:48 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="adding finalizer" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="Set owner reference" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestwokcjw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5671" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Set owner reference" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com "asotest-rg-leywfp" not found)" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="adding finalizer" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5593" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="applying ownership" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Reconcile invoked" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5679" generation=2 uid="ae33fb85-22f9-4bcd-8809-1021a5dcbb17" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp="2023-09-08 21:48:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="updated resource in etcd" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5684" generation=1 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Done with reconcile" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="adding finalizer" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5681" generation=1 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="updated resource in etcd" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5675" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5683" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5678" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VaultController "msg"="applying ownership" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Determined Delete action" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Starting delete of resource" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlvnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5677" generation=1 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5676" generation=1 uid="a382c141-946f-4329-8039-1094fc1310b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="adding finalizer" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VaultController "msg"="Set owner reference" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Modifying ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Successfully modified ARM payload" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="About to send resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Successfully sent resource to Azure" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Set owner reference" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5686" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ServerController "msg"="updated resource in etcd" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5692" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-leywfp\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="About to send resource to Azure" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5690" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlvnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "samplesqlvnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlvnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ae33fb85-22f9-4bcd-8809-1021a5dcbb17, UID in object meta: " name="samplesqlvnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5692" generation=1 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-leywfp\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5689" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Determined CreateOrUpdate action" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ServerController "msg"="Determined CreateOrUpdate action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Reconcile invoked" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5698" generation=2 uid="04dbabe1-0cb2-4cf6-83e5-f6d835e2df85" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp="2023-09-08 21:48:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] VaultController "msg"="adding finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5636" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="applying ownership" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5697" generation=1 uid="259651be-203e-4c5b-a309-88f5c340d8d9" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5635" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] PublicIPAddressController "msg"="applying ownership" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="About to send resource to Azure" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="adding finalizer" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Successfully sent resource to Azure" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Resource successfully created/updated" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesConnectionController "msg"="Got ARM status" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz\",\"name\":\"asotestsflbjz\",\"properties\":{\"authType\":\"PAT\",\"category\":\"ACR\",\"target\":\"www.sample.com\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/connections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:55Z] ServerController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com "asotest-rg-leywfp" not found)" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5694" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="updated resource in etcd" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5708" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5706" generation=1 uid="a382c141-946f-4329-8039-1094fc1310b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Determined Delete action" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Starting delete of resource" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestsqlstorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5691" generation=1 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5696" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:55Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5704" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServerController "msg"="Encountered error, re-queuing..." name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5706" generation=1 uid="a382c141-946f-4329-8039-1094fc1310b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5707" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq\",\"location\":\"westus2\",\"name\":\"asotest-rg-kktczq\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5711" generation=1 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/98c9f124-b307-4d50-9f35-d8aee5d7929d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Set owner reference" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServerController "msg"="Reconcile invoked" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:Server,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5705" generation=2 uid="6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-leywfp", UID:"a1db61c8-986e-4a23-a380-96bc29d57626", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotest-rg-leywfp does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-leywfp\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-leywfp, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5714" generation=1 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesConnectionController "msg"="Done with reconcile" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner does not yet exist" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" NamespacedName="aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5708" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"f1c6ca99-20c0-43f8-bc3d-ef80e19f24aa\",\"principalId\":\"9eb30ccf-608b-4e7d-9223-6b2f4a5035c9\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServerController "msg"="Determined Delete action" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServerController "msg"="Starting delete of resource" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestwidzfo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServerController "msg"="Delete succeeded, removing finalizer" name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5710" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Set owner reference" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="About to send resource to Azure" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Successfully sent resource to Azure" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="About to send resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5711" generation=1 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/98c9f124-b307-4d50-9f35-d8aee5d7929d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Successfully sent resource to Azure" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="adding finalizer" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5716" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5721" generation=1 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="adding finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Resource not created yet, will check again" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" requeueAfter="10s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Didn't commit obj as there was no change" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5708" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestsqlstorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asotestsqlstorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestsqlstorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 04dbabe1-0cb2-4cf6-83e5-f6d835e2df85, UID in object meta: " name="asotestsqlstorage" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="About to send resource to Azure" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Successfully sent resource to Azure" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Got ARM status" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx\",\"name\":\"asotestgadbkx\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5708" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5728" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5711" generation=1 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/98c9f124-b307-4d50-9f35-d8aee5d7929d?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] ServerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo resource status: Operation cannot be fulfilled on servers.sql.azure.com "asotestwidzfo": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/servers/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwidzfo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f, UID in object meta: " name="asotestwidzfo" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Determined CreateOrUpdate action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Resource successfully created/updated" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Got ARM status" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" status="{\"etag\":\"W/\\\"c0d65d1b-c44c-49a8-898d-81798a19286d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet\",\"location\":\"westus3\",\"name\":\"workspacescomputevnet\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"a937acb7-b374-4b82-b879-5a79964025fc\"},\"type\":\"Microsoft.Network/virtualNetworks\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5726" generation=1 uid="4ace3d99-4968-4777-9fb7-a27017136338" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="applying ownership" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5728" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5730" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5736" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5727" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5735" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Set owner reference" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5708" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5736" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputepublicip, Group/Kind: network.azure.com/PublicIPAddress doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5731" generation=1 uid="259651be-203e-4c5b-a309-88f5c340d8d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5739" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/8564fe05-b72b-4a67-8e32-1dc2703a44f4?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5738" generation=1 uid="f6ac3cf9-1eab-4669-b789-7da840b03b34" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5735" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" cannot be found. Progress is blocked until the owner is created." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="adding finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/authorizationrules/asotestymtocl\",\"name\":\"asotestymtocl\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Getting Kubernetes resources for export" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" ResourcesToWrite=1 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5743" generation=1 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Done with reconcile" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="About to send resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Successfully sent resource to Azure" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="17s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5741" generation=1 uid="a382c141-946f-4329-8039-1094fc1310b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5739" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/8564fe05-b72b-4a67-8e32-1dc2703a44f4?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Got ARM status" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz\",\"location\":\"West Central US\",\"name\":\"asotestpqebnz\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestpqebnz\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestpqebnz.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5740" generation=2 uid="6d925e9e-c0d8-4963-bc13-27dd300ef175" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"samplesqlvnet", UID:"ae33fb85-22f9-4bcd-8809-1021a5dcbb17", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Network/virtualNetworks/samplesqlvnet/subnets/samplesqlsubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="samplesqlvnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Got ARM status" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb\",\"name\":\"asotestwurheb\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountsBlobServiceController "msg"="Reconcile invoked" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobService,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5748" generation=2 uid="8d9a16f4-6682-4b45-ab58-d29ec67900c8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccount", Name:"asotestsqlstorage", UID:"04dbabe1-0cb2-4cf6-83e5-f6d835e2df85", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="asotestsqlstorage, Group/Kind: storage.azure.com/StorageAccount" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Successfully created resource" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" name="authsecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup doesn't have an assigned ARM ID" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5754" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5728" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Encountered error, re-queuing..." name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5735" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="updated resource in etcd" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5751" generation=1 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworkController "msg"="Done with reconcile" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5756" generation=1 uid="259651be-203e-4c5b-a309-88f5c340d8d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/fc5d3d58-d6e2-41e6-86d1-a065ff1acf52?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Done with reconcile" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5753" generation=1 uid="4ace3d99-4968-4777-9fb7-a27017136338" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Resource not created yet, will check again" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Didn't commit obj as there was no change" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="samplesqlsubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountsBlobServiceController "msg"="Determined Delete action" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountsBlobServiceController "msg"="Starting delete of resource" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountsBlobServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountsBlobServiceController "msg"="Delete succeeded, removing finalizer" name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5600" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5758" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="applying ownership" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5754" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5739" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/8564fe05-b72b-4a67-8e32-1dc2703a44f4?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5756" generation=1 uid="259651be-203e-4c5b-a309-88f5c340d8d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/fc5d3d58-d6e2-41e6-86d1-a065ff1acf52?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVirtualNetworkRuleController "msg"="Reconcile invoked" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVirtualNetworkRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5762" generation=2 uid="834fa5d1-8709-4ed8-82ed-00974c0d30d6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/virtualNetworkRules/asotestulcgqg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5728" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="applying ownership" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Modifying ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Successfully modified ARM payload" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="About to send resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Successfully sent resource to Azure" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Resource successfully created/updated" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Got ARM status" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac\",\"location\":\"westus3\",\"name\":\"asotestbruoac\",\"properties\":{\"computeLocation\":\"westus3\",\"computeType\":\"VirtualMachine\",\"createdOn\":\"2023-07-07T17:44:09.1938707+00:00\",\"disableLocalAuth\":true,\"isAttachedCompute\":true,\"modifiedOn\":\"2023-07-07T17:44:12.0304592+00:00\",\"properties\":{\"address\":\"20.171.45.67\",\"sshPort\":22,\"virtualMachineSize\":\"STANDARD_A1_V2\"},\"provisioningState\":\"Succeeded\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/computes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5735" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Determined CreateOrUpdate action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Resource successfully created/updated" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Got ARM status" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" status="{\"etag\":\"W/\\\"949b609a-6370-48b2-a414-b4eb6ff63b23\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\",\"location\":\"westus3\",\"name\":\"workspacescomputepublicip\",\"properties\":{\"idleTimeoutInMinutes\":4,\"ipAddress\":\"20.168.38.196\",\"provisioningState\":\"Succeeded\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Static\",\"resourceGuid\":\"55024ed7-2c30-4024-94a0-4609b2a0ac8d\"},\"sku\":{\"name\":\"Standard\",\"tier\":\"Regional\"},\"type\":\"Microsoft.Network/publicIPAddresses\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVirtualNetworkRuleController "msg"="Determined Delete action" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVirtualNetworkRuleController "msg"="Starting delete of resource" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Set owner reference" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] StorageAccountsBlobServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice resource status: Operation cannot be fulfilled on storageaccountsblobservices.storage.azure.com "sqlstorageservice": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservices/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/sqlstorageservice, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8d9a16f4-6682-4b45-ab58-d29ec67900c8, UID in object meta: " name="sqlstorageservice" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Resource not created yet, will check again" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Didn't commit obj as there was no change" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="updated resource in etcd" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5764" generation=1 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespaceController "msg"="Done with reconcile" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5695" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="applying ownership" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlsubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "samplesqlsubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/samplesqlsubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6d925e9e-c0d8-4963-bc13-27dd300ef175, UID in object meta: " name="samplesqlsubnet" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVirtualNetworkRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestulcgqg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVirtualNetworkRuleController "msg"="Delete succeeded, removing finalizer" name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotestgadbkx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5735" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Set owner reference" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="network.azure.com/v1api20201101storage, Kind=VirtualNetwork" ownerName="workspacescomputevnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5768" generation=1 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Determined CreateOrUpdate action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Resource successfully created/updated" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Got ARM status" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault\",\"location\":\"westus3\",\"name\":\"mlworkspaces-vault\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"c8d42d17-0044-4119-99f9-9207b705c9df\",\"objectId\":\"2735f286-1d85-49bc-bfec-c5994ede7e7f\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://mlworkspaces-vault.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Set owner reference" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5766" generation=1 uid="f6ac3cf9-1eab-4669-b789-7da840b03b34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5775" generation=1 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5770" generation=2 uid="31baa225-dca7-4c50-9217-799966a6d3cf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Error claiming resource" "err"="failed to add initial resource state: Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="adding finalizer" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="adding finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5778" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Encountered error, re-queuing..." name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] ServersVirtualNetworkRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestulcgqg resource status: Operation cannot be fulfilled on serversvirtualnetworkrules.sql.azure.com "asotestulcgqg": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversvirtualnetworkrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestulcgqg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 834fa5d1-8709-4ed8-82ed-00974c0d30d6, UID in object meta: " name="asotestulcgqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVulnerabilityAssessmentController "msg"="Determined Delete action" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVulnerabilityAssessmentController "msg"="Starting delete of resource" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVulnerabilityAssessmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersVulnerabilityAssessmentController "msg"="Delete succeeded, removing finalizer" name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5778" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="applying ownership" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="adding finalizer" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5682" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="applying ownership" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5785" generation=2 uid="4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/securityAlertPolicies/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5787" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="updated resource in etcd" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5786" generation=1 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Done with reconcile" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5781" generation=1 uid="4ace3d99-4968-4777-9fb7-a27017136338" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00a0d252-ff69-41ca-8026-eb4a6c3dc19c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="updated resource in etcd" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5789" generation=1 uid="259651be-203e-4c5b-a309-88f5c340d8d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] PublicIPAddressController "msg"="Done with reconcile" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersSecurityAlertPolicyController "msg"="Determined Delete action" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersSecurityAlertPolicyController "msg"="Starting delete of resource" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Owner exists but is not ready. Current condition" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" cannot be found. Progress is blocked until the owner is created." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersSecurityAlertPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersSecurityAlertPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="Set owner reference" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] ServersVulnerabilityAssessmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdwzgal resource status: Operation cannot be fulfilled on serversvulnerabilityassessments.sql.azure.com "asotestdwzgal": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversvulnerabilityassessments/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdwzgal, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 31baa225-dca7-4c50-9217-799966a6d3cf, UID in object meta: " name="asotestdwzgal" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="updated resource in etcd" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5783" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5784" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"5aaafa75-2d7c-43b5-83f7-1813fec38162", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="Set owner reference" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5792" generation=2 uid="9cea3fa0-d949-42f0-b04f-ff7b3468e2a5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5781" generation=1 uid="4ace3d99-4968-4777-9fb7-a27017136338" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/00a0d252-ff69-41ca-8026-eb4a6c3dc19c?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Determined CreateOrUpdate action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Resource successfully created/updated" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupController "msg"="Got ARM status" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" status="{\"etag\":\"W/\\\"102a3ac7-7ad6-406a-bdb4-6ff4fcdeba26\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\",\"location\":\"westus3\",\"name\":\"workspacescomputensg\",\"properties\":{\"defaultSecurityRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllInBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowVnetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/AllowInternetOutBound\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/defaultSecurityRules/DenyAllOutBound\"}],\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"26be8c34-36a8-4d2c-bf94-8794cf480ca8\"},\"type\":\"Microsoft.Network/networkSecurityGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5790" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"d23aae28-bca1-4085-99f0-c5a8e88ec0ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersAdvancedThreatProtectionSettingController "msg"="Determined Delete action" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersAdvancedThreatProtectionSettingController "msg"="Starting delete of resource" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersAdvancedThreatProtectionSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersAdvancedThreatProtectionSettingController "msg"="Delete succeeded, removing finalizer" name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource not created yet, will check again" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" requeueAfter="3s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Didn't commit obj as there was no change" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5754" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5793" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestgadbkx", UID:"996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="About to send resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualNetworksSubnetController "msg"="Successfully sent resource to Azure" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] ServersSecurityAlertPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestlboexz resource status: Operation cannot be fulfilled on serverssecurityalertpolicies.sql.azure.com "asotestlboexz": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serverssecurityalertpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestlboexz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4d2abbf9-1b5c-43e0-9dca-bf2ef7f2c1c9, UID in object meta: " name="asotestlboexz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="About to send resource to Azure" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VaultController "msg"="Successfully sent resource to Azure" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5754" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="applying ownership" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesQueueController "msg"="adding finalizer" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkInterfaceController "msg"="adding finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersConnectionPolicyController "msg"="Reconcile invoked" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersConnectionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5797" generation=2 uid="340725d1-3fe0-4c13-9fc0-a149e275befa" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/connectionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NetworkSecurityGroupsSecurityRuleController "msg"="Encountered error, re-queuing..." name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5734" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus3/asyncoperations/e75754be-6c85-4493-927a-d7772e020aaf?monitor=true\\u0026api-version=2021-04-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicController "msg"="Got ARM status" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd\",\"name\":\"asotestyhaxhd\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Determined CreateOrUpdate action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Resource successfully created/updated" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Got ARM status" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1\",\"kind\":\"BlobStorage\",\"location\":\"westus3\",\"name\":\"asoworkspacestorageacct1\",\"properties\":{\"accessTier\":\"Hot\",\"creationTime\":\"2001-02-03T04:05:06Z\",\"encryption\":{\"keySource\":\"Microsoft.Storage\",\"services\":{\"blob\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"},\"file\":{\"enabled\":true,\"keyType\":\"Account\",\"lastEnabledTime\":\"2001-02-03T04:05:06Z\"}}},\"keyCreationTime\":{\"key1\":\"2001-02-03T04:05:06Z\",\"key2\":\"2001-02-03T04:05:06Z\"},\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"resourceAccessRules\":null,\"virtualNetworkRules\":[]},\"primaryEndpoints\":{\"blob\":\"https://asoworkspacestorageacct1.blob.core.windows.net/\",\"dfs\":\"https://asoworkspacestorageacct1.dfs.core.windows.net/\",\"table\":\"https://asoworkspacestorageacct1.table.core.windows.net/\"},\"primaryLocation\":\"westus3\",\"privateEndpointConnections\":[],\"provisioningState\":\"Succeeded\",\"statusOfPrimary\":\"available\",\"supportsHttpsTrafficOnly\":true},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Getting Kubernetes resources for export" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersConnectionPolicyController "msg"="Determined Delete action" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] StorageAccountController "msg"="Successfully retrieved Kubernetes resources for export" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersConnectionPolicyController "msg"="Starting delete of resource" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersConnectionPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ServersConnectionPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] VirtualMachineController "msg"="Set owner reference" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz\",\"name\":\"asotestojebhz\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5800" generation=1 uid="f6ac3cf9-1eab-4669-b789-7da840b03b34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:56Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5801" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5662" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="applying ownership" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5800" generation=1 uid="f6ac3cf9-1eab-4669-b789-7da840b03b34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersElasticPoolController "msg"="Reconcile invoked" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersElasticPool,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5806" generation=2 uid="518de2a4-487e-41dc-944f-318d9f726898" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/elasticPools/asotesttcwsht"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountController "msg"="Successfully created resource" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" name="storageaccount-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersAdvancedThreatProtectionSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdqgjqg resource status: Operation cannot be fulfilled on serversadvancedthreatprotectionsettings.sql.azure.com "asotestdqgjqg": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversadvancedthreatprotectionsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestdqgjqg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9cea3fa0-d949-42f0-b04f-ff7b3468e2a5, UID in object meta: " name="asotestdqgjqg" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupController "msg"="updated resource in etcd" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5807" generation=1 uid="4ace3d99-4968-4777-9fb7-a27017136338" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupController "msg"="Done with reconcile" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5812" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"5aaafa75-2d7c-43b5-83f7-1813fec38162", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/4fe476dc-bd74-48b5-8e4d-58872a29d5d6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersElasticPoolController "msg"="Determined Delete action" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersElasticPoolController "msg"="Starting delete of resource" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersElasticPoolController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesttcwsht" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersElasticPoolController "msg"="Delete succeeded, removing finalizer" name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5805" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"d23aae28-bca1-4085-99f0-c5a8e88ec0ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Set owner reference" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="network.azure.com/v1api20201101storage, Kind=NetworkSecurityGroup" ownerName="workspacescomputensg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="updated resource in etcd" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5818" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5812" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"5aaafa75-2d7c-43b5-83f7-1813fec38162", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/4fe476dc-bd74-48b5-8e4d-58872a29d5d6?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"8bb75972-e43b-4c1c-879b-0e265f377506\",\"principalId\":\"81fa57e6-ed07-4101-8932-7453a099b873\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5811" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="Determined CreateOrUpdate action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="Resource successfully created/updated" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="Got ARM status" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" status="{\"etag\":\"W/\\\"7926c9b2-def8-4120-b285-f1bc0aae424d\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\",\"name\":\"workspacescomputesubnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"ipConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\"}],\"privateEndpointNetworkPolicies\":\"Disabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\",\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="adding finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5821" generation=1 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"d23aae28-bca1-4085-99f0-c5a8e88ec0ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicController "msg"="Done with reconcile" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersConnectionPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestjdhujz resource status: Operation cannot be fulfilled on serversconnectionpolicies.sql.azure.com "asotestjdhujz": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversconnectionpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestjdhujz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 340725d1-3fe0-4c13-9fc0-a149e275befa, UID in object meta: " name="asotestjdhujz" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersFirewallRuleController "msg"="Reconcile invoked" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5815" generation=2 uid="a4bc6956-a41b-4116-ba48-3a04aa77c6db" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/firewallRules/asotesthozjgi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5823" generation=1 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestgadbkx", UID:"996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5818" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="Determined CreateOrUpdate action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountController "msg"="updated resource in etcd" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5825" generation=1 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountController "msg"="Done with reconcile" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Resource not created yet, will check again" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersFirewallRuleController "msg"="Determined Delete action" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersFirewallRuleController "msg"="Starting delete of resource" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotesthozjgi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersElasticPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttcwsht resource status: Operation cannot be fulfilled on serverselasticpools.sql.azure.com "asotesttcwsht": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serverselasticpools/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttcwsht, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 518de2a4-487e-41dc-944f-318d9f726898, UID in object meta: " name="asotesttcwsht" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersIPV6FirewallRuleController "msg"="Reconcile invoked" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersIPV6FirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5824" generation=2 uid="1dbf83f1-a1cb-4b57-b3e1-6a5e09a0e319" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/ipv6FirewallRules/asotestggernv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:49 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersIPV6FirewallRuleController "msg"="Determined Delete action" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersIPV6FirewallRuleController "msg"="Starting delete of resource" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersIPV6FirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestggernv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersIPV6FirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="adding finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5818" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="Got ARM status" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq\",\"name\":\"asotestkryvrq\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersOutboundFirewallRuleController "msg"="Reconcile invoked" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersOutboundFirewallRule,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5831" generation=2 uid="d34df41f-48e3-4bfc-81e8-457fbcf5ef8f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:48 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/outboundFirewallRules/server.database.windows.net"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Resource not created yet, will check again" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersOutboundFirewallRuleController "msg"="Determined Delete action" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersOutboundFirewallRuleController "msg"="Starting delete of resource" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersOutboundFirewallRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="server.database.windows.net" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersOutboundFirewallRuleController "msg"="Delete succeeded, removing finalizer" name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5699" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5818" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="About to send resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesthozjgi resource status: Operation cannot be fulfilled on serversfirewallrules.sql.azure.com "asotesthozjgi": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversfirewallrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesthozjgi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a4bc6956-a41b-4116-ba48-3a04aa77c6db, UID in object meta: " name="asotesthozjgi" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="Successfully sent resource to Azure" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="Resource successfully created/updated" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="Got ARM status" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" status="{\"etag\":\"W/\\\"1a94492d-4972-4457-9e1b-5a68c7212ce5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\",\"location\":\"westus3\",\"name\":\"workspacescomputenic\",\"properties\":{\"dnsSettings\":{\"internalDomainNameSuffix\":\"w4wdpkluwobexodzlj2zmqbf5e.phxx.internal.cloudapp.net\"},\"enableAcceleratedNetworking\":false,\"enableIPForwarding\":false,\"ipConfigurations\":[{\"etag\":\"W/\\\"1a94492d-4972-4457-9e1b-5a68c7212ce5\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic/ipConfigurations/ipconfig1\",\"name\":\"ipconfig1\",\"properties\":{\"primary\":true,\"privateIPAddress\":\"10.0.0.4\",\"privateIPAddressVersion\":\"IPv4\",\"privateIPAllocationMethod\":\"Dynamic\",\"provisioningState\":\"Succeeded\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet\"}},\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\"}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg\"},\"nicType\":\"Standard\",\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"6b490ad8-7723-492c-a288-44f9d2452c3b\"},\"type\":\"Microsoft.Network/networkInterfaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersIPV6FirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestggernv resource status: Operation cannot be fulfilled on serversipv6firewallrules.sql.azure.com "asotestggernv": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversipv6firewallrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestggernv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1dbf83f1-a1cb-4b57-b3e1-6a5e09a0e319, UID in object meta: " name="asotestggernv" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5612" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="updated resource in etcd" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5837" generation=1 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"5aaafa75-2d7c-43b5-83f7-1813fec38162", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualNetworksSubnetController "msg"="Done with reconcile" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5832" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"failed resolving ARM IDs for references: ref workspacescomputenic, Group/Kind: network.azure.com/NetworkInterface doesn't have an assigned ARM ID\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5839" generation=1 uid="f6ac3cf9-1eab-4669-b789-7da840b03b34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Resource not created yet, will check again" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Didn't commit obj as there was no change" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersOutboundFirewallRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestiduxfx resource status: Operation cannot be fulfilled on serversoutboundfirewallrules.sql.azure.com "asotestiduxfx": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversoutboundfirewallrules/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestiduxfx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d34df41f-48e3-4bfc-81e8-457fbcf5ef8f, UID in object meta: " name="asotestiduxfx" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotestyhaxhd" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersAuditingSettingController "msg"="Reconcile invoked" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5841" generation=2 uid="32151def-8ab6-4584-965d-e802bc903ad7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:50 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestojebhz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5818" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe?api-version=2021-04-01-preview\",\"state\":\"RegisteringDns\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersAuditingSettingController "msg"="Determined Delete action" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersAuditingSettingController "msg"="Starting delete of resource" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersAuditingSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersAuditingSettingController "msg"="Delete succeeded, removing finalizer" name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5834" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"4ace3d99-4968-4777-9fb7-a27017136338", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Determined CreateOrUpdate action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Resource successfully created/updated" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Got ARM status" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe\",\"location\":\"westcentralus\",\"name\":\"asotestbwkwxe\",\"properties\":{\"accessPolicies\":[{\"applicationId\":\"f1c6ca99-20c0-43f8-bc3d-ef80e19f24aa\",\"objectId\":\"9eb30ccf-608b-4e7d-9223-6b2f4a5035c9\",\"permissions\":{\"certificates\":[\"get\"],\"keys\":[\"get\"],\"secrets\":[\"get\"],\"storage\":[\"get\"]},\"tenantId\":\"00000000-0000-0000-0000-000000000000\"}],\"enableSoftDelete\":true,\"enabledForDeployment\":false,\"provisioningState\":\"Succeeded\",\"sku\":{\"family\":\"A\",\"name\":\"standard\"},\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"vaultUri\":\"https://asotestbwkwxe.vault.azure.net/\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"e5d772d8-b77f-4ed1-8dbb-3e8d433cbf46\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.KeyVault/vaults\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="About to send resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5844" generation=1 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"d23aae28-bca1-4085-99f0-c5a8e88ec0ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="updated resource in etcd" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5845" generation=1 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkInterfaceController "msg"="Done with reconcile" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Successfully sent resource to Azure" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersAuditingSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestyllufl resource status: Operation cannot be fulfilled on serversauditingsettings.sql.azure.com "asotestyllufl": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversauditingsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestyllufl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 32151def-8ab6-4584-965d-e802bc903ad7, UID in object meta: " name="asotestyllufl" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="About to send resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully sent resource to Azure" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabaseController "msg"="Reconcile invoked" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabase,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5847" generation=2 uid="26475fe0-abe1-4b33-ac12-c57fe5491f92" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"Server", Name:"asotestwidzfo", UID:"6eac01fb-deb9-43c7-a8c3-95ea32d8aa8f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotestwidzfo, Group/Kind: sql.azure.com/Server" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5848" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="applying ownership" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabaseController "msg"="Determined Delete action" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabaseController "msg"="Starting delete of resource" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabaseController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="asotestkekpcm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabaseController "msg"="Delete succeeded, removing finalizer" name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Set owner reference" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="updated resource in etcd" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5856" generation=1 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VaultController "msg"="Done with reconcile" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5858" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5860" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"4ace3d99-4968-4777-9fb7-a27017136338", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/454bfb49-cd8c-4be2-9438-fe5662eee1a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="adding finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5851" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestyhaxhd", UID:"1e6eb1b7-4c86-4c86-a209-230a00aaeba4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5859" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestojebhz", UID:"63dce67a-15e3-4d48-b8d1-43452ed04e8d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5858" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabaseController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm resource status: Operation cannot be fulfilled on serversdatabases.sql.azure.com "asotestkekpcm": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabases/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkekpcm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 26475fe0-abe1-4b33-ac12-c57fe5491f92, UID in object meta: " name="asotestkekpcm" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5860" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"4ace3d99-4968-4777-9fb7-a27017136338", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus3/operations/454bfb49-cd8c-4be2-9438-fe5662eee1a8?api-version=2020-11-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule?api-version=2020-11-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Updating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5864" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined CreateOrUpdate action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Resource successfully created/updated" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Got ARM status" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" status="{\"etag\":\"W/\\\"d256d840-dc2e-4c3e-971c-d7d5f0543479\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule\",\"name\":\"workspacescomputensgrule\",\"properties\":{\"access\":\"Allow\",\"description\":\"Allow access to any source port\",\"destinationAddressPrefix\":\"*\",\"destinationPortRange\":\"22\",\"direction\":\"Inbound\",\"priority\":101,\"protocol\":\"Tcp\",\"provisioningState\":\"Succeeded\",\"sourceAddressPrefix\":\"*\",\"sourcePortRange\":\"*\"},\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5858" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5866" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5858" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj\",\"name\":\"asotestyyutyj\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd\",\"name\":\"asotestquccdd\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="updated resource in etcd" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5874" generation=1 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"4ace3d99-4968-4777-9fb7-a27017136338", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NetworkSecurityGroupsSecurityRuleController "msg"="Done with reconcile" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5858" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Resource not created yet, will check again" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" requeueAfter="4s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Didn't commit obj as there was no change" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountsBlobServicesContainerController "msg"="Reconcile invoked" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:StorageAccountsBlobServicesContainer,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5876" generation=2 uid="3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"storage.azure.com/v1api20220901storage", Kind:"StorageAccountsBlobService", Name:"sqlstorageservice", UID:"8d9a16f4-6682-4b45-ab58-d29ec67900c8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:45 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Storage/storageAccounts/asotestsqlstorage/blobServices/default/containers/vulnerabilityassessments"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:46 +0000 UTC\"]" owner="sqlstorageservice, Group/Kind: storage.azure.com/StorageAccountsBlobService" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5858" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/WestUS3/operations/955177b6-0957-468c-a8a2-b0bece296a71?p=fcb86129-73cc-415a-aea3-b164e2620795\\u0026api-version=2020-12-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm?api-version=2020-12-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountsBlobServicesContainerController "msg"="Determined Delete action" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountsBlobServicesContainerController "msg"="Starting delete of resource" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5878" generation=1 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestyhaxhd", UID:"1e6eb1b7-4c86-4c86-a209-230a00aaeba4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Resource successfully created/updated" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Got ARM status" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\",\"location\":\"westus3\",\"name\":\"workspacescomputevm\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"Standard_A1_v2\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic\"}]},\"osProfile\":{\"adminUsername\":\"adminUser\",\"allowExtensionOperations\":true,\"computerName\":\"poppy\",\"linuxConfiguration\":{\"disablePasswordAuthentication\":false,\"patchSettings\":{\"patchMode\":\"ImageDefault\"},\"provisionVMAgent\":true},\"requireGuestProvisionSignal\":true},\"provisioningState\":\"Succeeded\",\"storageProfile\":{\"imageReference\":{\"exactVersion\":\"22.04.202307010\",\"offer\":\"0001-com-ubuntu-server-jammy\",\"publisher\":\"Canonical\",\"sku\":\"22_04-lts\",\"version\":\"latest\"},\"osDisk\":{\"caching\":\"ReadWrite\",\"createOption\":\"FromImage\",\"diskSizeGB\":30,\"managedDisk\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/disks/workspacescomputevm_disk1_baed27b7301a4b909a82f5e19822d43a\",\"storageAccountType\":\"Standard_LRS\"},\"name\":\"workspacescomputevm_disk1_baed27b7301a4b909a82f5e19822d43a\",\"osType\":\"Linux\"}},\"vmId\":\"c545b550-1c2d-4ad6-8fc9-6b1554689ccb\"},\"type\":\"Microsoft.Compute/virtualMachines\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountsBlobServicesContainerController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="vulnerabilityassessments" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] StorageAccountsBlobServicesContainerController "msg"="Delete succeeded, removing finalizer" name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5712" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupShortTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5880" generation=2 uid="41db01d6-6d03-4553-93fa-e9a896e58edb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupShortTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5882" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Determined Delete action" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Starting delete of resource" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5884" generation=1 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestojebhz", UID:"63dce67a-15e3-4d48-b8d1-43452ed04e8d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestyyutyj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5882" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/vulnerabilityassessments resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "vulnerabilityassessments": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/vulnerabilityassessments, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3a8214ef-cf9b-4d14-8fa7-9681ccc2e67d, UID in object meta: " name="vulnerabilityassessments" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesTransparentDataEncryptionController "msg"="Reconcile invoked" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesTransparentDataEncryption,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5889" generation=2 uid="82c1af23-ac8e-486c-8fd2-86441e03e011" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:46 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/transparentDataEncryption/current"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5891" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Done with reconcile" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5828" generation=2 uid="6da010ce-c865-4f2f-985e-eb052b974897" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:56 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCU1RNT1otV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesTransparentDataEncryptionController "msg"="Determined Delete action" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesTransparentDataEncryptionController "msg"="Starting delete of resource" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesTransparentDataEncryptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="current" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesTransparentDataEncryptionController "msg"="Delete succeeded, removing finalizer" name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotest-rg-bstmoz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabasesBackupShortTermRetentionPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestvinoxb resource status: Operation cannot be fulfilled on serversdatabasesbackupshorttermretentionpolicies.sql.azure.com "asotestvinoxb": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesbackupshorttermretentionpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestvinoxb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 41db01d6-6d03-4553-93fa-e9a896e58edb, UID in object meta: " name="asotestvinoxb" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Reconcile invoked" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAdvancedThreatProtectionSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5894" generation=2 uid="9a412cc5-4105-4deb-9659-7f95a711a977" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/advancedThreatProtectionSettings/Default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabasesTransparentDataEncryptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestoxzset resource status: Operation cannot be fulfilled on serversdatabasestransparentdataencryptions.sql.azure.com "asotestoxzset": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasestransparentdataencryptions/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestoxzset, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 82c1af23-ac8e-486c-8fd2-86441e03e011, UID in object meta: " name="asotestoxzset" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Determined Delete action" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Starting delete of resource" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="Default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Delete succeeded, removing finalizer" name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bstmoz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6da010ce-c865-4f2f-985e-eb052b974897, UID in object meta: " name="asotest-rg-bstmoz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5882" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAuditingSettingController "msg"="Reconcile invoked" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesAuditingSetting,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5898" generation=2 uid="211380ba-df09-4571-8424-5b0e73564695" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/auditingSettings/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5882" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAuditingSettingController "msg"="Determined Delete action" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAuditingSettingController "msg"="Starting delete of resource" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAuditingSettingController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5893" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestyyutyj", UID:"2aa0b916-d8e1-4490-b7ce-9afc89b784af", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesAuditingSettingController "msg"="Delete succeeded, removing finalizer" name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5901" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabasesAdvancedThreatProtectionSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestzmywpu resource status: Operation cannot be fulfilled on serversdatabasesadvancedthreatprotectionsettings.sql.azure.com "asotestzmywpu": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesadvancedthreatprotectionsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestzmywpu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9a412cc5-4105-4deb-9659-7f95a711a977, UID in object meta: " name="asotestzmywpu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Reconcile invoked" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesBackupLongTermRetentionPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5905" generation=2 uid="ff3166ce-9682-4b4c-a262-3c709821ead0" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/backupLongTermRetentionPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Successfully sent resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Determined Delete action" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Starting delete of resource" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabasesAuditingSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwenbxt resource status: Operation cannot be fulfilled on serversdatabasesauditingsettings.sql.azure.com "asotestwenbxt": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesauditingsettings/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestwenbxt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 211380ba-df09-4571-8424-5b0e73564695, UID in object meta: " name="asotestwenbxt" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw\",\"name\":\"asotestlijqaw\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz aso-test-samples-creationanddeletion-test-machinelearning-f987c/vm-admin-pw aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensgrule aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputepublicip aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevm aso-test-samples-creationanddeletion-test-machinelearning-f987c/aso-ml-vault aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputesubnet aso-test-samples-creationanddeletion-test-machinelearning-f987c/asomlworkspacestorage aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestbruoac aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestsflbjz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Reconcile invoked" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesVulnerabilityAssessment,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5911" generation=2 uid="bca84dc5-ce82-46de-92ce-260df84f6ce5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:47 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/vulnerabilityAssessments/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5912" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspaceController "msg"="applying ownership" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5913" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabasesBackupLongTermRetentionPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkrftcu resource status: Operation cannot be fulfilled on serversdatabasesbackuplongtermretentionpolicies.sql.azure.com "asotestkrftcu": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesbackuplongtermretentionpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestkrftcu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ff3166ce-9682-4b4c-a262-3c709821ead0, UID in object meta: " name="asotestkrftcu" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Determined Delete action" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Starting delete of resource" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Delete succeeded, removing finalizer" name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5915" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspaceController "msg"="Set owner reference" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5919" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5913" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5873" generation=2 uid="0a55f376-7d11-4f6f-9d18-c922384a6da6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREREhOSU4tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotest-rg-ddhnin" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesSecurityAlertPolicyController "msg"="Reconcile invoked" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" kind="&TypeMeta{Kind:ServersDatabasesSecurityAlertPolicy,APIVersion:sql.azure.com/v1api20211101storage,}" resourceVersion="5920" generation=2 uid="9d2c716d-8912-4fa2-9025-799bfb5ad4b7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"sql.azure.com/v1api20211101storage", Kind:"ServersDatabase", Name:"asotestkekpcm", UID:"26475fe0-abe1-4b33-ac12-c57fe5491f92", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:49 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-leywfp/providers/Microsoft.Sql/servers/asotestwidzfo/databases/asotestkekpcm/securityAlertPolicies/default"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotestkekpcm, Group/Kind: sql.azure.com/ServersDatabase" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5915" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 81fa57e6ed07410189327453a099b873 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ServersDatabasesVulnerabilityAssessmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttdlrym resource status: Operation cannot be fulfilled on serversdatabasesvulnerabilityassessments.sql.azure.com "asotesttdlrym": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasesvulnerabilityassessments/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotesttdlrym, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: bca84dc5-ce82-46de-92ce-260df84f6ce5, UID in object meta: " name="asotesttdlrym" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5926" generation=1 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestyyutyj", UID:"2aa0b916-d8e1-4490-b7ce-9afc89b784af", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesSecurityAlertPolicyController "msg"="Determined Delete action" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesSecurityAlertPolicyController "msg"="Starting delete of resource" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesSecurityAlertPolicyController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" azureName="default" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ServersDatabasesSecurityAlertPolicyController "msg"="Delete succeeded, removing finalizer" name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Resource successfully created/updated" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5924" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] RoleAssignmentController "msg"="Got ARM status" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339\",\"name\":\"778d7607-9bda-5093-9734-e1db04b19339\",\"properties\":{\"createdBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"createdOn\":\"2001-02-03T04:05:06Z\",\"principalId\":\"81fa57e6-ed07-4101-8932-7453a099b873\",\"principalType\":\"ServicePrincipal\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq\",\"updatedBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"updatedOn\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Authorization/roleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5913" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5550" generation=1 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspaceController "msg"="adding finalizer" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotest-rg-ddhnin resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-ddhnin": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotest-rg-ddhnin, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 0a55f376-7d11-4f6f-9d18-c922384a6da6, UID in object meta: " name="asotest-rg-ddhnin" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5913" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotest-rg-ddhnin aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotestbwkwxe]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:57Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:57Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com "asotest-rg-bstmoz" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] ServersDatabasesSecurityAlertPolicyController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestubsqct resource status: Operation cannot be fulfilled on serversdatabasessecurityalertpolicies.sql.azure.com "asotestubsqct": StorageError: invalid object, Code: 4, Key: /registry/sql.azure.com/serversdatabasessecurityalertpolicies/aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5/asotestubsqct, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9d2c716d-8912-4fa2-9025-799bfb5ad4b7, UID in object meta: " name="asotestubsqct" namespace="aso-test-samples-creationanddeletion-test-sql-v1api-creat-bf7c5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="5939" generation=1 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5913" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5936" generation=2 uid="9ae087b1-49fd-4d70-ac0b-3dceb79423e5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:51 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5937" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] PublicIPAddressController "msg"="Determined Delete action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] PublicIPAddressController "msg"="Starting delete of resource" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="updated resource in etcd" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5934" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5913" generation=2 uid="32615b52-3f31-4d02-865e-f762f65afbfe" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:53 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCV1hNQlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="5943" generation=2 uid="a382c141-946f-4329-8039-1094fc1310b3" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotest-rg-bwxmby" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5787" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Reconcile invoked" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5949" generation=2 uid="5c6aa672-6dcf-40c2-881a-79247233e168" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-ddhnin", UID:"0a55f376-7d11-4f6f-9d18-c922384a6da6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-ddhnin/providers/Microsoft.KeyVault/vaults/asotestbwkwxe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-ddhnin, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "workspacescomputepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9ae087b1-49fd-4d70-ac0b-3dceb79423e5, UID in object meta: " name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5942" generation=2 uid="a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Determined Delete action" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Starting delete of resource" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" azureName="asotestbwkwxe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Delete succeeded, removing finalizer" name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Reconcile invoked" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="5952" generation=2 uid="34e0ad39-6723-41b6-8c36-4d4315bd5181" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.KeyVault/vaults/aso-ml-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5950" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Determined Delete action" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Starting delete of resource" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="aso-ml-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VaultController "msg"="Delete succeeded, removing finalizer" name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Determined Delete action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Starting delete of resource" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com "asotest-rg-bstmoz" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a382c141-946f-4329-8039-1094fc1310b3, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotest-rg-bwxmby aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestojebhz aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestquccdd aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestymtocl aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestwurheb]... +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotest-rg-bwxmby resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bwxmby": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotest-rg-bwxmby, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 32615b52-3f31-4d02-865e-f762f65afbfe, UID in object meta: " name="asotest-rg-bwxmby" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotestbwkwxe resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "asotestbwkwxe": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf/asotestbwkwxe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5c6aa672-6dcf-40c2-881a-79247233e168, UID in object meta: " name="asotestbwkwxe" namespace="aso-test-samples-creationanddeletion-test-keyvault-v1beta-bbfdf" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5960" generation=2 uid="43f70a7a-2886-46bf-99d8-80abedaed7e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="updated resource in etcd" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5964" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkInterfaceController "msg"="Determined Delete action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkInterfaceController "msg"="Starting delete of resource" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5967" generation=2 uid="f80ba4f5-ac53-48cf-af20-4d507c094ab2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5971" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5964" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5971" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "workspacescomputevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a7d58ddb-59e1-4567-b2b0-ec3dea0bef6d, UID in object meta: " name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/aso-ml-vault resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "aso-ml-vault": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-machinelearning-f987c/aso-ml-vault, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 34e0ad39-6723-41b6-8c36-4d4315bd5181, UID in object meta: " name="aso-ml-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "workspacescomputenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 43f70a7a-2886-46bf-99d8-80abedaed7e1, UID in object meta: " name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5964" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5968" generation=1 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5971" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="5977" generation=2 uid="f08f96ce-368c-4dd7-8a1c-c43ea28390e9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NamespaceController "msg"="Reconcile invoked" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5974" generation=2 uid="34e76e64-98b6-4318-b7aa-6baded2322de" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bwxmby", UID:"32615b52-3f31-4d02-865e-f762f65afbfe", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotest-rg-bwxmby, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5978" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NamespaceController "msg"="Determined Delete action" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NamespaceController "msg"="Starting delete of resource" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualNetworkController "msg"="Determined Delete action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualNetworkController "msg"="Starting delete of resource" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotesthzpbpj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5954" generation=2 uid="943540f7-f84e-4c9e-93e4-02fc469554e1" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:57 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWQkVITlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:58Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "workspacescomputensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f80ba4f5-ac53-48cf-af20-4d507c094ab2, UID in object meta: " name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:58Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5978" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotest-rg-vbehns" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5982" generation=1 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5964" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5971" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Resource not created yet, will check again" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] StorageAccountController "msg"="Reconcile invoked" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="5985" generation=2 uid="21665ac7-7799-4cb3-8427-93d9b8a7b4e1" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Storage/storageAccounts/asomlworkspacestorage"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "workspacescomputevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f08f96ce-368c-4dd7-8a1c-c43ea28390e9, UID in object meta: " name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] StorageAccountController "msg"="Determined Delete action" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] StorageAccountController "msg"="Starting delete of resource" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asomlworkspacestorage" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5971" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5964" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=async\",\"locURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/vX6yltoDCHp5U9GleEyGQO0WxO5X9qpoC5TPBd33LOU?api-version=2021-07-01\\u0026type=location\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com "asotest-rg-bstmoz" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5984" generation=1 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotesthzpbpj": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotesthzpbpj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 34e76e64-98b6-4318-b7aa-6baded2322de, UID in object meta: " name="asotesthzpbpj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny\",\"location\":\"westus2\",\"name\":\"asotest-rg-dpwtny\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Got ARM status" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg\",\"identity\":{\"principalId\":\"e1edfcdd-fdd7-4d55-9228-75ee7fa55e19\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"westus3\",\"name\":\"asotestbovcwg\",\"properties\":{\"allowPublicAccessWhenBehindVnet\":true,\"description\":\"\",\"discoveryUrl\":\"https://westus3.api.azureml.ms/discovery\",\"friendlyName\":\"\",\"hbiWorkspace\":false,\"keyVault\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Keyvault/vaults/mlworkspaces-vault\",\"mlFlowTrackingUri\":\"azureml://westus3.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg\",\"notebookInfo\":{\"fqdn\":\"ml-asotestbovcwg-westus3-16c5a3ec-7da8-4040-9798-d51462f5b681.westus2.notebooks.azure.net\",\"resourceId\":\"dd5d14afa0894cb48160eb148d970c7c\"},\"privateLinkCount\":0,\"provisioningState\":\"Succeeded\",\"storageAccount\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1\",\"storageHnsEnabled\":false,\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"workspaceId\":\"16c5a3ec-7da8-4040-9798-d51462f5b681\"},\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"systemData\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2001-02-03T04:05:06Z\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.MachineLearningServices/workspaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Getting Kubernetes resources for export" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotest-rg-vbehns aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestpqebnz aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestkryvrq aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyhaxhd aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyyutyj aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestlijqaw]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5971" generation=2 uid="4e2d669d-e868-4914-a8f1-bdf68856f624" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:48:58 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRLS1RDWlEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotest-rg-vbehns resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vbehns": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotest-rg-vbehns, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 943540f7-f84e-4c9e-93e4-02fc469554e1, UID in object meta: " name="asotest-rg-vbehns" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="5992" generation=1 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="5995" generation=2 uid="996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Reconcile invoked" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5993" generation=2 uid="5ccc06bc-710a-4a94-b023-a8f7b0a56d1f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bstmoz", UID:"6da010ce-c865-4f2f-985e-eb052b974897", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner="asotest-rg-bstmoz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="asotest-rg-kktczq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesTopicController "msg"="Determined Delete action" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestgadbkx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Determined Delete action" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Starting delete of resource" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestwokcjw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed\",\"location\":\"westus2\",\"name\":\"asotest-rg-bqrmed\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asomlworkspacestorage resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asomlworkspacestorage": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asomlworkspacestorage, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 21665ac7-7799-4cb3-8427-93d9b8a7b4e1, UID in object meta: " name="asomlworkspacestorage" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Successfully created resource" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" name="workspace-secret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6003" generation=1 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6002" generation=2 uid="9c3f9b3b-4d43-4e4a-9d40-a15c868ad591" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/AuthorizationRules/asotestymtocl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespaceController "msg"="Reconcile invoked" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6005" generation=2 uid="d23aae28-bca1-4085-99f0-c5a8e88ec0ad" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vbehns", UID:"943540f7-f84e-4c9e-93e4-02fc469554e1", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-vbehns, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/asotest-rg-kktczq resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-kktczq": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/asotest-rg-kktczq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4e2d669d-e868-4914-a8f1-bdf68856f624, UID in object meta: " name="asotest-rg-kktczq" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5978" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestymtocl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotestgadbkx": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestgadbkx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b, UID in object meta: " name="asotestgadbkx" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespaceController "msg"="Determined Delete action" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespaceController "msg"="Starting delete of resource" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestpqebnz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6011" generation=1 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5978" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestwokcjw: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotest-rg-bstmoz does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-bstmoz\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/asotest-rg-kktczq aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/aso-sample-contributor]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6010" generation=2 uid="43d58d9b-1174-45ae-9094-0ebdf9013678" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotesthzpbpj", UID:"34e76e64-98b6-4318-b7aa-6baded2322de", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:48:59 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/queues/asotestwurheb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotesthzpbpj, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Owner exists but is not ready. Current condition" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesConnectionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestwurheb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw resource status: Operation cannot be fulfilled on workspaces.machinelearningservices.azure.com "asotestwokcjw": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspaces/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5ccc06bc-710a-4a94-b023-a8f7b0a56d1f, UID in object meta: " name="asotestwokcjw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com "asotestwokcjw" not found)" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Owner exists but is not ready. Current condition" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:58 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:59Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" cannot be found. Progress is blocked until the owner is created." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestymtocl resource status: Operation cannot be fulfilled on namespacesauthorizationrules.servicebus.azure.com "asotestymtocl": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestymtocl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9c3f9b3b-4d43-4e4a-9d40-a15c868ad591, UID in object meta: " name="asotestymtocl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6015" generation=1 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="applying ownership" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="updated resource in etcd" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6019" generation=1 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Done with reconcile" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6018" generation=1 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="applying ownership" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestpqebnz resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotestpqebnz": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestpqebnz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d23aae28-bca1-4085-99f0-c5a8e88ec0ad, UID in object meta: " name="asotestpqebnz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Set owner reference" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="adding finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestwurheb resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestwurheb": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestwurheb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 43d58d9b-1174-45ae-9094-0ebdf9013678, UID in object meta: " name="asotestwurheb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6021" generation=2 uid="f6ac3cf9-1eab-4669-b789-7da840b03b34" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6023" generation=2 uid="afa525e7-cbf8-4d16-9044-ca9b4491f7a4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"f80ba4f5-ac53-48cf-af20-4d507c094ab2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:50 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:53 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="adding finalizer" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6024" generation=2 uid="c29f01fa-8b16-4632-aaeb-fd88e2418927" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"d23aae28-bca1-4085-99f0-c5a8e88ec0ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/queues/asotestkryvrq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Encountered error, re-queuing..." name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5940" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="applying ownership" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestkryvrq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6027" generation=2 uid="59507715-4fb6-488b-b646-873684e966fb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-kktczq", UID:"4e2d669d-e868-4914-a8f1-bdf68856f624", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-kktczq/providers/Microsoft.Authorization/roleAssignments/778d7607-9bda-5093-9734-e1db04b19339"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-kktczq, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6028" generation=2 uid="84f93d51-fb7b-44fe-80a7-0b9dace0eb3b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"f08f96ce-368c-4dd7-8a1c-c43ea28390e9", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:51 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:52 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6030" generation=1 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com \\\"asotestwokcjw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="5933" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="applying ownership" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6025" generation=1 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] RoleAssignmentController "msg"="Determined Delete action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] RoleAssignmentController "msg"="Starting delete of resource" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] RoleAssignmentController "msg"="Successfully issued DELETE to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" azureName="778d7607-9bda-5093-9734-e1db04b19339" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] RoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6032" generation=2 uid="63dce67a-15e3-4d48-b8d1-43452ed04e8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestgadbkx", UID:"996e59d0-44c0-4c5a-bdd1-cc3017ab6f2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestgadbkx, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="updated resource in etcd" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6031" generation=1 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ed1edb78-f904-4a70-801a-5f4f57ef368e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f6ac3cf9-1eab-4669-b789-7da840b03b34, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6037" generation=2 uid="1e6eb1b7-4c86-4c86-a209-230a00aaeba4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestpqebnz", UID:"d23aae28-bca1-4085-99f0-c5a8e88ec0ad", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotestpqebnz, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Set owner reference" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestbovcwg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestojebhz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6035" generation=2 uid="4d9cfa4a-9e87-446c-bb23-ec6e6b599f97" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/computes/asotestbruoac"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestwokcjw does not exist (workspaces.machinelearningservices.azure.com \\\"asotestwokcjw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicController "msg"="Determined Delete action" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyhaxhd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "workspacescomputesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 84f93d51-fb7b-44fe-80a7-0b9dace0eb3b, UID in object meta: " name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="About to send resource to Azure" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Successfully sent resource to Azure" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Determined Delete action" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Starting delete of resource" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestbruoac" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Delete succeeded, removing finalizer" name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestkryvrq resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestkryvrq": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestkryvrq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c29f01fa-8b16-4632-aaeb-fd88e2418927, UID in object meta: " name="asotestkryvrq" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensgrule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "workspacescomputensgrule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-machinelearning-f987c/workspacescomputensgrule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: afa525e7-cbf8-4d16-9044-ca9b4491f7a4, UID in object meta: " name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Set owner reference" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" ownerGvk="machinelearningservices.azure.com/v1api20210701storage, Kind=Workspace" ownerName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="adding finalizer" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyhaxhd resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotestyhaxhd": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyhaxhd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1e6eb1b7-4c86-4c86-a209-230a00aaeba4, UID in object meta: " name="asotestyhaxhd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6047" generation=1 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6050" generation=2 uid="da060bfc-c629-42b4-83b2-b5035c8258f6" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestwokcjw", UID:"5ccc06bc-710a-4a94-b023-a8f7b0a56d1f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bstmoz/providers/Microsoft.MachineLearningServices/workspaces/asotestwokcjw/connections/asotestsflbjz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:55 +0000 UTC\"]" owner="asotestwokcjw, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Determined Delete action" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Starting delete of resource" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" azureName="asotestsflbjz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Delete succeeded, removing finalizer" name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6047" generation=1 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestojebhz resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestojebhz": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestojebhz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 63dce67a-15e3-4d48-b8d1-43452ed04e8d, UID in object meta: " name="asotestojebhz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestbruoac resource status: Operation cannot be fulfilled on workspacescomputes.machinelearningservices.azure.com "asotestbruoac": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacescomputes/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestbruoac, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4d9cfa4a-9e87-446c-bb23-ec6e6b599f97, UID in object meta: " name="asotestbruoac" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6045" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="updated resource in etcd" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6056" generation=1 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ed1edb78-f904-4a70-801a-5f4f57ef368e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi/operationResults/dc88950f-5d2c-41d9-8b26-26aa48579af4?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Done with reconcile" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="adding finalizer" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Determined CreateOrUpdate action" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6057" generation=2 uid="f4496464-bd8f-4589-9992-c8a7b5937e20" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestojebhz", UID:"63dce67a-15e3-4d48-b8d1-43452ed04e8d", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bwxmby/providers/Microsoft.ServiceBus/namespaces/asotesthzpbpj/topics/asotestgadbkx/subscriptions/asotestojebhz/rules/asotestquccdd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestojebhz, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6058" generation=2 uid="2aa0b916-d8e1-4490-b7ce-9afc89b784af" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotestyhaxhd", UID:"1e6eb1b7-4c86-4c86-a209-230a00aaeba4", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:00 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestyhaxhd, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6056" generation=1 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ed1edb78-f904-4a70-801a-5f4f57ef368e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi/operationResults/dc88950f-5d2c-41d9-8b26-26aa48579af4?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6047" generation=1 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" azureName="asotestquccdd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Resource not created yet, will check again" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" requeueAfter="15s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Didn't commit obj as there was no change" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Done with reconcile" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestyyutyj" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Resource successfully created/updated" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Got ARM status" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\",\"location\":\"westcentralus\",\"name\":\"sampleworkspace\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"b7d8676d-6fe6-4589-9be8-d5c89790f20c\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6061" generation=1 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="About to send resource to Azure" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Successfully sent resource to Azure" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Resource successfully created/updated" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Got ARM status" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn\",\"name\":\"asotestxmfumn\",\"properties\":{\"authType\":\"PAT\",\"category\":\"ACR\",\"target\":\"www.sample.com\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/connections\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestsflbjz resource status: Operation cannot be fulfilled on workspacesconnections.machinelearningservices.azure.com "asotestsflbjz": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacesconnections/aso-test-samples-creationanddeletion-test-machinelearning-f987c/asotestsflbjz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: da060bfc-c629-42b4-83b2-b5035c8258f6, UID in object meta: " name="asotestsflbjz" namespace="aso-test-samples-creationanddeletion-test-machinelearning-f987c" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6056" generation=1 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ed1edb78-f904-4a70-801a-5f4f57ef368e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi/operationResults/dc88950f-5d2c-41d9-8b26-26aa48579af4?api-version=2021-01-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6062" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Determined CreateOrUpdate action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Resource successfully created/updated" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] BatchAccountController "msg"="Got ARM status" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi\",\"identity\":{\"type\":\"None\"},\"location\":\"westcentralus\",\"name\":\"asotestmgrosi\",\"properties\":{\"accountEndpoint\":\"asotestmgrosi.westcentralus.batch.azure.com\",\"activeJobAndJobScheduleQuota\":300,\"dedicatedCoreQuota\":0,\"dedicatedCoreQuotaPerVMFamily\":[{\"coreQuota\":0,\"name\":\"standardAv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv2Family\"},{\"coreQuota\":0,\"name\":\"standardDv3Family\"},{\"coreQuota\":0,\"name\":\"standardEv3Family\"},{\"coreQuota\":0,\"name\":\"standardDSv2Family\"},{\"coreQuota\":0,\"name\":\"standardDSv3Family\"},{\"coreQuota\":0,\"name\":\"standardESv3Family\"},{\"coreQuota\":0,\"name\":\"standardFSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCFamily\"},{\"coreQuota\":0,\"name\":\"standardNVFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv4Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDv4Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv4Family\"},{\"coreQuota\":0,\"name\":\"standardA0_A7Family\"},{\"coreQuota\":0,\"name\":\"standardA8_A11Family\"},{\"coreQuota\":0,\"name\":\"standardDFamily\"},{\"coreQuota\":0,\"name\":\"standardGFamily\"},{\"coreQuota\":0,\"name\":\"basicAFamily\"},{\"coreQuota\":0,\"name\":\"standardFFamily\"},{\"coreQuota\":0,\"name\":\"standardNVPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardNCPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardHFamily\"},{\"coreQuota\":0,\"name\":\"standardHPromoFamily\"},{\"coreQuota\":0,\"name\":\"standardMSFamily\"},{\"coreQuota\":0,\"name\":\"standardDSFamily\"},{\"coreQuota\":0,\"name\":\"standardFSFamily\"},{\"coreQuota\":0,\"name\":\"standardGSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSFamily\"},{\"coreQuota\":0,\"name\":\"standardLSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardNDSFamily\"},{\"coreQuota\":0,\"name\":\"standardNCSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBSFamily\"},{\"coreQuota\":0,\"name\":\"standardHCSFamily\"},{\"coreQuota\":0,\"name\":\"standardNVSv3Family\"},{\"coreQuota\":0,\"name\":\"standardHBrsv2Family\"},{\"coreQuota\":0,\"name\":\"standardDAv4Family\"},{\"coreQuota\":0,\"name\":\"standardDASv4Family\"},{\"coreQuota\":0,\"name\":\"standardEAv4Family\"},{\"coreQuota\":0,\"name\":\"standardEASv4Family\"},{\"coreQuota\":0,\"name\":\"standardMSv2Family\"},{\"coreQuota\":0,\"name\":\"standardEIv3Family\"},{\"coreQuota\":0,\"name\":\"standardNVSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NCASv3_T4 Family\"},{\"coreQuota\":0,\"name\":\"standardXEIDSv4Family\"},{\"coreQuota\":0,\"name\":\"Standard NDASv4_A100 Family\"},{\"coreQuota\":0,\"name\":\"standardDCSv2Family\"},{\"coreQuota\":0,\"name\":\"standardHBv3Family\"},{\"coreQuota\":0,\"name\":\"standardNPSFamily\"},{\"coreQuota\":0,\"name\":\"standardFXMDVSFamily\"},{\"coreQuota\":0,\"name\":\"standardDDv5Family\"},{\"coreQuota\":0,\"name\":\"standardDDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDv5Family\"},{\"coreQuota\":0,\"name\":\"standardEDSv5Family\"},{\"coreQuota\":0,\"name\":\"standardNCADSA100v4Family\"},{\"coreQuota\":0,\"name\":\"standardDADSv5Family\"},{\"coreQuota\":0,\"name\":\"standardEADSv5Family\"},{\"coreQuota\":0,\"name\":\"StandardNVADSA10v5Family\"},{\"coreQuota\":0,\"name\":\"standardEBDSv5Family\"}],\"dedicatedCoreQuotaPerVMFamilyEnforced\":true,\"encryption\":{\"keySource\":\"Microsoft.Batch\"},\"lowPriorityCoreQuota\":0,\"poolAllocationMode\":\"BatchService\",\"poolQuota\":100,\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Enabled\"},\"type\":\"Microsoft.Batch/batchAccounts\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyyutyj resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestyyutyj": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestyyutyj, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2aa0b916-d8e1-4490-b7ce-9afc89b784af, UID in object meta: " name="asotestyyutyj" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6067" generation=1 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="updated resource in etcd" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6070" generation=1 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesConnectionController "msg"="Done with reconcile" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz\",\"location\":\"westus2\",\"name\":\"asotest-rg-yqkoyz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestquccdd resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestquccdd": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce/asotestquccdd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f4496464-bd8f-4589-9992-c8a7b5937e20, UID in object meta: " name="asotestquccdd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-ddfce" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6073" generation=1 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="About to send resource to Azure" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:00Z] WorkspacesComputeController "msg"="Successfully sent resource to Azure" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="updated resource in etcd" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6077" generation=1 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ed1edb78-f904-4a70-801a-5f4f57ef368e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Done with reconcile" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6079" generation=1 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6084" generation=1 uid="e89bfd74-4e83-489a-b029-22f7a92606b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6087" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/1e8650bb-4586-4463-a950-b7a39338e217?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6086" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="applying ownership" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Reconcile invoked" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6089" generation=1 uid="52379086-e41f-48f6-94b5-06188abb8f3d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="applying ownership" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6085" generation=2 uid="2dcce9bd-f7b9-4664-9fd9-f0536bb28f32" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestyyutyj", UID:"2aa0b916-d8e1-4490-b7ce-9afc89b784af", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vbehns/providers/Microsoft.ServiceBus/namespaces/asotestpqebnz/topics/asotestyhaxhd/subscriptions/asotestyyutyj/rules/asotestlijqaw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotestyyutyj, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6087" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/1e8650bb-4586-4463-a950-b7a39338e217?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Set owner reference" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Set owner reference" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Resource not created yet, will check again" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Didn't commit obj as there was no change" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" azureName="asotestlijqaw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6093" generation=2 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6092" generation=1 uid="e89bfd74-4e83-489a-b029-22f7a92606b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="adding finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe\",\"location\":\"westus2\",\"name\":\"asotest-rg-gfsexe\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6087" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MachineLearningServices/locations/westus3/computeOperationsStatus/1e8650bb-4586-4463-a950-b7a39338e217?api-version=2021-07-01\\u0026service=new\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh?api-version=2021-07-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="adding finalizer" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Resource successfully created/updated" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Got ARM status" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh\",\"location\":\"westus3\",\"name\":\"asotestrrljlh\",\"properties\":{\"computeLocation\":\"westus3\",\"computeType\":\"VirtualMachine\",\"createdOn\":\"2023-07-07T17:44:08.9586647+00:00\",\"disableLocalAuth\":true,\"isAttachedCompute\":true,\"modifiedOn\":\"2023-07-07T17:44:10.5266886+00:00\",\"properties\":{\"address\":\"20.168.38.196\",\"sshPort\":22,\"virtualMachineSize\":\"STANDARD_A1_V2\"},\"provisioningState\":\"Succeeded\",\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm\"},\"type\":\"Microsoft.MachineLearningServices/workspaces/computes\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6103" generation=1 uid="e89bfd74-4e83-489a-b029-22f7a92606b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6099" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestlijqaw resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestlijqaw": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0/asotestlijqaw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 2dcce9bd-f7b9-4664-9fd9-f0536bb28f32, UID in object meta: " name="asotestlijqaw" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1be-eccf0" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6105" generation=1 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="About to send resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6107" generation=2 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="updated resource in etcd" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6101" generation=1 uid="52379086-e41f-48f6-94b5-06188abb8f3d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu"} conditions="[]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Determined CreateOrUpdate action" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6107" generation=2 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6112" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspacesComputeController "msg"="Done with reconcile" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6114" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="About to send resource to Azure" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Successfully sent resource to Azure" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6116" generation=1 uid="30468480-741e-4d7f-b75a-9caaa11a9a5e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="applying ownership" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Resource successfully created/updated" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="adding finalizer" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Got ARM status" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" status="{\"etag\":\"\\\"e900d832-0000-0200-0000-6427b3820000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/microsoft.insights/components/asotestzqyznu\",\"kind\":\"web\",\"location\":\"westus\",\"name\":\"asotestzqyznu\",\"properties\":{\"AppId\":\"dea9cb1c-63da-4bc7-8ae3-158a574501f9\",\"ApplicationId\":\"asotestzqyznu\",\"Application_Type\":\"other\",\"ConnectionString\":\"InstrumentationKey=cefb1142-f137-4926-9d54-1229a9fbb7a3;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\",\"CreationDate\":\"2023-04-01T04:30:58.1709824+00:00\",\"IngestionMode\":\"LogAnalytics\",\"InstrumentationKey\":\"cefb1142-f137-4926-9d54-1229a9fbb7a3\",\"Name\":\"asotestzqyznu\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"RetentionInDays\":90,\"TenantId\":\"00000000-0000-0000-0000-000000000000\",\"WorkspaceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\"},\"type\":\"microsoft.insights/components\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6114" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6113" generation=1 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6107" generation=2 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Successfully created resource" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" name="componentconfig" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv\",\"location\":\"westus2\",\"name\":\"asotest-rg-jwyavv\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6114" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6120" generation=1 uid="30468480-741e-4d7f-b75a-9caaa11a9a5e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6107" generation=2 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6114" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Got ARM status" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz\",\"location\":\"westcentralus\",\"name\":\"asotestruzoxz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Resource not created yet, will check again" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Didn't commit obj as there was no change" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6127" generation=1 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6114" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6124" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:54 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Resource successfully created/updated" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Got ARM status" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\",\"location\":\"westcentralus\",\"name\":\"sampleworkspace\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"8d310f09-9904-436b-a6fe-8f720096231e\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="updated resource in etcd" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6131" generation=1 uid="52379086-e41f-48f6-94b5-06188abb8f3d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Done with reconcile" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6107" generation=2 uid="ed1edb78-f904-4a70-801a-5f4f57ef368e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRCUVJNRUQtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6133" generation=1 uid="30468480-741e-4d7f-b75a-9caaa11a9a5e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotest-rg-bqrmed" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6132" generation=1 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotest-rg-bqrmed resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-bqrmed": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotest-rg-bqrmed, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ed1edb78-f904-4a70-801a-5f4f57ef368e, UID in object meta: " name="asotest-rg-bqrmed" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotest-rg-bqrmed aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotestmgrosi]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="updated resource in etcd" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6142" generation=1 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Done with reconcile" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6141" generation=1 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6146" generation=2 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6145" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="applying ownership" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa\",\"location\":\"westus2\",\"name\":\"asotest-rg-zklaaa\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6149" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Set owner reference" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6152" generation=2 uid="e89bfd74-4e83-489a-b029-22f7a92606b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Reconcile invoked" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" kind="&TypeMeta{Kind:BatchAccount,APIVersion:batch.azure.com/v1api20210101storage,}" resourceVersion="6151" generation=2 uid="7e69a964-5d1b-4e78-ae08-ba2189118a6b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-bqrmed", UID:"ed1edb78-f904-4a70-801a-5f4f57ef368e", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-bqrmed/providers/Microsoft.Batch/batchAccounts/asotestmgrosi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-bqrmed, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Determined Delete action" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Starting delete of resource" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" azureName="asotestmgrosi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6155" generation=1 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Delete succeeded, removing finalizer" name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="adding finalizer" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6158" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6168" generation=2 uid="e89bfd74-4e83-489a-b029-22f7a92606b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHRlNFWEUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] BatchAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotestmgrosi resource status: Operation cannot be fulfilled on batchaccounts.batch.azure.com "asotestmgrosi": StorageError: invalid object, Code: 4, Key: /registry/batch.azure.com/batchaccounts/aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96/asotestmgrosi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7e69a964-5d1b-4e78-ae08-ba2189118a6b, UID in object meta: " name="asotestmgrosi" namespace="aso-test-samples-creationanddeletion-test-batch-v1api-cre-52a96" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6165" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6162" generation=2 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Reconcile invoked" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6161" generation=1 uid="1b46c9ed-1ffb-4dda-9993-00951594782f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="applying ownership" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Set owner reference" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="updated resource in etcd" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6164" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6168" generation=2 uid="e89bfd74-4e83-489a-b029-22f7a92606b3" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHRlNFWEUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gfsexe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6162" generation=2 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotest-rg-gfsexe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6172" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="About to send resource to Azure" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="adding finalizer" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6175" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="applying ownership" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6162" generation=2 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Set owner reference" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotest-rg-gfsexe resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gfsexe": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotest-rg-gfsexe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e89bfd74-4e83-489a-b029-22f7a92606b3, UID in object meta: " name="asotest-rg-gfsexe" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotest-rg-gfsexe aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotestruzoxz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6179" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="adding finalizer" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6162" generation=2 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="updated resource in etcd" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6182" generation=1 uid="1b46c9ed-1ffb-4dda-9993-00951594782f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov"} conditions="[]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="updated resource in etcd" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6186" generation=2 uid="30468480-741e-4d7f-b75a-9caaa11a9a5e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Determined CreateOrUpdate action" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6162" generation=2 uid="1d27af83-cc4d-451c-996f-3fc6955fc7ee" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:58 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkREUFdUTlktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotest-rg-dpwtny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="About to send resource to Azure" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Successfully sent resource to Azure" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Resource successfully created/updated" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Got ARM status" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" status="{\"etag\":\"\\\"e900e932-0000-0200-0000-6427b38c0000\\\"\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/microsoft.insights/components/asotestppsmov\",\"kind\":\"web\",\"location\":\"westus\",\"name\":\"asotestppsmov\",\"properties\":{\"AppId\":\"afa9a7bd-062c-4cb0-80e7-f5f185d1371e\",\"ApplicationId\":\"asotestppsmov\",\"Application_Type\":\"other\",\"ConnectionString\":\"InstrumentationKey=57a29aca-9a35-44e3-bb19-4281cdfcf2f2;IngestionEndpoint=https://westus-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus.livediagnostics.monitor.azure.com/\",\"CreationDate\":\"2023-04-01T04:31:08.2533385+00:00\",\"IngestionMode\":\"LogAnalytics\",\"InstrumentationKey\":\"57a29aca-9a35-44e3-bb19-4281cdfcf2f2\",\"Name\":\"asotestppsmov\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"RetentionInDays\":90,\"TenantId\":\"00000000-0000-0000-0000-000000000000\",\"WorkspaceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace\"},\"type\":\"microsoft.insights/components\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="updated resource in etcd" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6188" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotest-rg-dpwtny resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-dpwtny": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotest-rg-dpwtny, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1d27af83-cc4d-451c-996f-3fc6955fc7ee, UID in object meta: " name="asotest-rg-dpwtny" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="About to send resource to Azure" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Successfully sent resource to Azure" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6198" generation=2 uid="30468480-741e-4d7f-b75a-9caaa11a9a5e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUUlVaT1haLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6199" generation=1 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6198" generation=2 uid="30468480-741e-4d7f-b75a-9caaa11a9a5e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUUlVaT1haLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestruzoxz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="updated resource in etcd" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6200" generation=1 uid="1b46c9ed-1ffb-4dda-9993-00951594782f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Done with reconcile" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" azureName="asotestruzoxz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="updated resource in etcd" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotest-rg-dpwtny aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/sampleworkspace aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotestzqyznu]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6184" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak?api-version=2021-01-01-preview\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6207" generation=1 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo\",\"location\":\"westus2\",\"name\":\"asotest-rg-vwbpuo\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotestruzoxz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotestruzoxz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1bet-0a353/asotestruzoxz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 30468480-741e-4d7f-b75a-9caaa11a9a5e, UID in object meta: " name="asotestruzoxz" namespace="aso-test-samples-creationanddeletion-test-resources-v1bet-0a353" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Got ARM status" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak\",\"location\":\"West Central US\",\"name\":\"asotestyftnak\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestyftnak\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestyftnak.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" ResourcesToWrite=0 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6211" generation=2 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6218" generation=1 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6214" generation=2 uid="45888406-a883-4001-8eae-279052a4890f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:59 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6144" generation=2 uid="f68f904c-e84e-4d37-9e79-64e635e61e5b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRUU1BYUFctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Determined Delete action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Starting delete of resource" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Reconcile invoked" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6219" generation=2 uid="52379086-e41f-48f6-94b5-06188abb8f3d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-dpwtny", UID:"1d27af83-cc4d-451c-996f-3fc6955fc7ee", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-dpwtny/providers/Microsoft.Insights/components/asotestzqyznu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-dpwtny, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotest-rg-tspxpw" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6163" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Determined Delete action" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Starting delete of resource" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" azureName="asotestzqyznu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ComponentController "msg"="Delete succeeded, removing finalizer" name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="updated resource in etcd" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6222" generation=1 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespaceController "msg"="Done with reconcile" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-tspxpw": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f68f904c-e84e-4d37-9e79-64e635e61e5b, UID in object meta: " name="asotest-rg-tspxpw" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6170" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] NamespacesQueueController "msg"="applying ownership" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6228" generation=2 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:01Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] ComponentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotestzqyznu resource status: Operation cannot be fulfilled on components.insights.azure.com "asotestzqyznu": StorageError: invalid object, Code: 4, Key: /registry/insights.azure.com/components/aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/asotestzqyznu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 52379086-e41f-48f6-94b5-06188abb8f3d, UID in object meta: " name="asotestzqyznu" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/sampleworkspace resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "sampleworkspace": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-insights-v1api--e51bc/sampleworkspace, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 45888406-a883-4001-8eae-279052a4890f, UID in object meta: " name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1api--e51bc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6183" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Set owner reference" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6228" generation=2 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Set owner reference" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestyftnak" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6228" generation=2 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="adding finalizer" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6237" generation=1 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6236" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="adding finalizer" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Owner does not yet exist" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" NamespacedName="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6240" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw aso-test-samples-creationanddeletion-test-machinelearning-329d5/vm-admin-pw aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensgrule aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet aso-test-samples-creationanddeletion-test-machinelearning-329d5/asoworkspacestorageacct1 aso-test-samples-creationanddeletion-test-machinelearning-329d5/mlworkspaces-vault aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputenic aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputepublicip aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputesubnet aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevm aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestrrljlh aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestxmfumn]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6228" generation=2 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6239" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6244" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6245" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6228" generation=2 uid="427cd10b-c808-4cc8-a93e-582c8994bc2b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:00 +0000 UTC" deletionTimestamp="2023-09-08 21:49:01 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRZUUtPWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6243" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="5891" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotest-rg-yqkoyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6250" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="applying ownership" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6251" generation=1 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov\",\"location\":\"westus2\",\"name\":\"asotest-rg-iydqov\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/authorizationrules/asotestgwznuu\",\"name\":\"asotestgwznuu\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Getting Kubernetes resources for export" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" ResourcesToWrite=1 +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Got ARM status" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb\",\"name\":\"asotestqaeexb\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Set owner reference" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6258" generation=1 uid="654a9ca3-013f-4da4-8aa2-3d70d9dd996e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6257" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Successfully created resource" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" name="authsecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworkController "msg"="Reconcile invoked" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetwork,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6260" generation=2 uid="5aaafa75-2d7c-43b5-83f7-1813fec38162" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="adding finalizer" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6265" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotest-rg-yqkoyz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-yqkoyz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotest-rg-yqkoyz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 427cd10b-c808-4cc8-a93e-582c8994bc2b, UID in object meta: " name="asotest-rg-yqkoyz" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6267" generation=1 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Got ARM status" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt\",\"name\":\"asotesthoycyt\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworkController "msg"="Determined Delete action" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworkController "msg"="Starting delete of resource" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworkController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworkController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6112" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] StorageAccountController "msg"="Reconcile invoked" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:StorageAccount,APIVersion:storage.azure.com/v1api20220901storage,}" resourceVersion="6268" generation=2 uid="061b1827-673b-416d-b0a5-9e16b35946c5" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Storage/storageAccounts/asoworkspacestorageacct1"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] StorageAccountController "msg"="Determined Delete action" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] StorageAccountController "msg"="Starting delete of resource" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6272" generation=1 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] StorageAccountController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asoworkspacestorageacct1" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] StorageAccountController "msg"="Delete succeeded, removing finalizer" name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotest-rg-yqkoyz aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/sampleworkspace aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotestppsmov]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestyftnak, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="updated resource in etcd" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6270" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6269" generation=1 uid="654a9ca3-013f-4da4-8aa2-3d70d9dd996e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6274" generation=1 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="updated resource in etcd" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6278" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] VirtualNetworkController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet resource status: Operation cannot be fulfilled on virtualnetworks.network.azure.com "workspacescomputevnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworks/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5aaafa75-2d7c-43b5-83f7-1813fec38162, UID in object meta: " name="workspacescomputevnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VaultController "msg"="Reconcile invoked" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Vault,APIVersion:keyvault.azure.com/v1api20210401previewstorage,}" resourceVersion="6279" generation=2 uid="87e7f6ed-59e6-4673-aea0-3ea114be1d64" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.KeyVault/vaults/mlworkspaces-vault"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs\",\"location\":\"westus2\",\"name\":\"asotest-rg-xbxbvs\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VaultController "msg"="Determined Delete action" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VaultController "msg"="Starting delete of resource" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6281" generation=1 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Done with reconcile" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VaultController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="mlworkspaces-vault" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VaultController "msg"="Delete succeeded, removing finalizer" name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6278" generation=1 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="About to send resource to Azure" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] StorageAccountController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asoworkspacestorageacct1 resource status: Operation cannot be fulfilled on storageaccounts.storage.azure.com "asoworkspacestorageacct1": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccounts/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asoworkspacestorageacct1, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 061b1827-673b-416d-b0a5-9e16b35946c5, UID in object meta: " name="asoworkspacestorageacct1" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Determined CreateOrUpdate action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkInterfaceController "msg"="Reconcile invoked" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkInterface,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6284" generation=2 uid="f8e6a160-ceb8-4f70-880c-cf78f08d905e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkInterfaces/workspacescomputenic"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkInterfaceController "msg"="Determined Delete action" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkInterfaceController "msg"="Starting delete of resource" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkInterfaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputenic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkInterfaceController "msg"="Delete succeeded, removing finalizer" name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6187" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] VaultController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/mlworkspaces-vault resource status: Operation cannot be fulfilled on vaults.keyvault.azure.com "mlworkspaces-vault": StorageError: invalid object, Code: 4, Key: /registry/keyvault.azure.com/vaults/aso-test-samples-creationanddeletion-test-machinelearning-329d5/mlworkspaces-vault, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 87e7f6ed-59e6-4673-aea0-3ea114be1d64, UID in object meta: " name="mlworkspaces-vault" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Reconcile invoked" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6287" generation=2 uid="1ffdff37-b19f-469e-a3f8-3da29ccd1787" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.OperationalInsights/workspaces/sampleworkspace"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotesthoycyt" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] PublicIPAddressController "msg"="Reconcile invoked" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:PublicIPAddress,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6291" generation=2 uid="259651be-203e-4c5b-a309-88f5c340d8d9" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/publicIPAddresses/workspacescomputepublicip"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Determined Delete action" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="updated resource in etcd" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6294" generation=1 uid="1e49b9d2-4a27-481f-ba76-fe368d87bfbf" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="applying ownership" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Starting delete of resource" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="sampleworkspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6295" generation=1 uid="654a9ca3-013f-4da4-8aa2-3d70d9dd996e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] PublicIPAddressController "msg"="Determined Delete action" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] PublicIPAddressController "msg"="Starting delete of resource" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] PublicIPAddressController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputepublicip" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] PublicIPAddressController "msg"="Delete succeeded, removing finalizer" name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6298" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource not created yet, will check again" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Didn't commit obj as there was no change" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Set owner reference" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ComponentController "msg"="Reconcile invoked" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" kind="&TypeMeta{Kind:Component,APIVersion:insights.azure.com/v1api20200202storage,}" resourceVersion="6297" generation=2 uid="1b46c9ed-1ffb-4dda-9993-00951594782f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-yqkoyz", UID:"427cd10b-c808-4cc8-a93e-582c8994bc2b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-yqkoyz/providers/Microsoft.Insights/components/asotestppsmov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-yqkoyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NetworkInterfaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputenic resource status: Operation cannot be fulfilled on networkinterfaces.network.azure.com "workspacescomputenic": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networkinterfaces/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputenic, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: f8e6a160-ceb8-4f70-880c-cf78f08d905e, UID in object meta: " name="workspacescomputenic" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ComponentController "msg"="Determined Delete action" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ComponentController "msg"="Starting delete of resource" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ComponentController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" azureName="asotestppsmov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ComponentController "msg"="Delete succeeded, removing finalizer" name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6205" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg?api-version=2022-09-01\",\"state\":\"provisioning\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="adding finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Determined CreateOrUpdate action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] PublicIPAddressController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputepublicip resource status: Operation cannot be fulfilled on publicipaddresses.network.azure.com "workspacescomputepublicip": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/publicipaddresses/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputepublicip, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 259651be-203e-4c5b-a309-88f5c340d8d9, UID in object meta: " name="workspacescomputepublicip" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Resource successfully created/updated" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6298" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/sampleworkspace resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "sampleworkspace": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/sampleworkspace, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1ffdff37-b19f-469e-a3f8-3da29ccd1787, UID in object meta: " name="sampleworkspace" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Got ARM status" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg\",\"identity\":{\"principalId\":\"2f793422-989d-40d8-aa8c-975ab718237e\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"location\":\"West US 2\",\"name\":\"asotestqctlbg\",\"properties\":{\"authOptions\":{\"aadOrApiKey\":{\"aadAuthFailureMode\":\"http403\"}},\"disableLocalAuth\":false,\"encryptionWithCmk\":{\"encryptionComplianceStatus\":\"Compliant\",\"enforcement\":\"Disabled\"},\"hostingMode\":\"default\",\"networkRuleSet\":{},\"partitionCount\":1,\"provisioningState\":\"succeeded\",\"publicNetworkAccess\":\"Disabled\",\"replicaCount\":1,\"status\":\"running\",\"statusDetails\":\"\"},\"sku\":{\"name\":\"standard\"},\"type\":\"Microsoft.Search/searchServices\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Getting Kubernetes resources for export" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Encountered error, re-queuing..." name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Reconcile invoked" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualMachine,APIVersion:compute.azure.com/v1api20220301storage,}" resourceVersion="6301" generation=2 uid="9eff37c3-d344-4c54-8779-e083594f7742" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Compute/virtualMachines/workspacescomputevm"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Successfully created resource" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" name="searchservicekeyssecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Determined Delete action" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Starting delete of resource" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputevm" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Delete succeeded, removing finalizer" name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupController "msg"="Reconcile invoked" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroup,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6311" generation=2 uid="4ace3d99-4968-4777-9fb7-a27017136338" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:56 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:56 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] ComponentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotestppsmov resource status: Operation cannot be fulfilled on components.insights.azure.com "asotestppsmov": StorageError: invalid object, Code: 4, Key: /registry/insights.azure.com/components/aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d/asotestppsmov, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1b46c9ed-1ffb-4dda-9993-00951594782f, UID in object meta: " name="asotestppsmov" namespace="aso-test-samples-creationanddeletion-test-insights-v1beta-bd20d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com "asotest-rg-tspxpw" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6310" generation=1 uid="1e49b9d2-4a27-481f-ba76-fe368d87bfbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6307" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesthoycyt", UID:"405557db-fd0b-4060-bd96-c076797febbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupController "msg"="Determined Delete action" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupController "msg"="Starting delete of resource" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Resource creation/update failure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" error="invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Encountered error impacting Ready condition" "err"="Reason: UnknownError, Severity: Warning, RetryClassification: RetrySlow, Cause: invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6318" generation=1 uid="3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="applying ownership" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Reconcile invoked" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:Workspace,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6314" generation=2 uid="adb8aa7b-2b1a-499a-8341-06a50f473f63" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-tspxpw", UID:"f68f904c-e84e-4d37-9e79-64e635e61e5b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:59 +0000 UTC\"]" owner="asotest-rg-tspxpw, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="updated resource in etcd" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6321" generation=1 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] SearchServiceController "msg"="Done with reconcile" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] VirtualMachineController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevm resource status: Operation cannot be fulfilled on virtualmachines.compute.azure.com "workspacescomputevm": StorageError: invalid object, Code: 4, Key: /registry/compute.azure.com/virtualmachines/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputevm, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9eff37c3-d344-4c54-8779-e083594f7742, UID in object meta: " name="workspacescomputevm" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NetworkSecurityGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg resource status: Operation cannot be fulfilled on networksecuritygroups.network.azure.com "workspacescomputensg": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroups/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4ace3d99-4968-4777-9fb7-a27017136338, UID in object meta: " name="workspacescomputensg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="adding finalizer" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Determined Delete action" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Starting delete of resource" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestbovcwg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc\",\"name\":\"asotestswxzyc\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Owner exists but is not ready. Current condition" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="updated resource in etcd" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6298" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6296" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6325" generation=1 uid="1e49b9d2-4a27-481f-ba76-fe368d87bfbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Encountered error, re-queuing..." name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Got ARM status" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl\",\"location\":\"West Central US\",\"name\":\"asotestedijsl\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"disableLocalAuth\":true,\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestedijsl\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestedijsl.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.ServiceBus/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Getting Kubernetes resources for export" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6328" generation=1 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6324" generation=1 uid="3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6298" generation=1 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Got ARM status" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz\",\"location\":\"westcentralus\",\"name\":\"asotestagymlz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Determined CreateOrUpdate action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6325" generation=1 uid="1e49b9d2-4a27-481f-ba76-fe368d87bfbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"UnknownError\", Message = \"invalid polling URL /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Determined CreateOrUpdate action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg resource status: Operation cannot be fulfilled on workspaces.machinelearningservices.azure.com "asotestbovcwg": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspaces/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adb8aa7b-2b1a-499a-8341-06a50f473f63, UID in object meta: " name="asotestbovcwg" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Encountered error, re-queuing..." name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6330" generation=1 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesthoycyt", UID:"405557db-fd0b-4060-bd96-c076797febbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] WorkspacesComputeController "msg"="Encountered error impacting Ready condition" "err"="Reason: ReferenceNotFound, Severity: Warning, RetryClassification: RetryFast, Cause: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestbovcwg does not exist (workspaces.machinelearningservices.azure.com "asotestbovcwg" not found)" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6252" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworksSubnetController "msg"="Reconcile invoked" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:VirtualNetworksSubnet,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6333" generation=2 uid="6e8530f0-ce7b-4ae8-ba55-539130106241" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"VirtualNetwork", Name:"workspacescomputevnet", UID:"5aaafa75-2d7c-43b5-83f7-1813fec38162", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:55 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/virtualNetworks/workspacescomputevnet/subnets/workspacescomputesubnet"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="workspacescomputevnet, Group/Kind: network.azure.com/VirtualNetwork" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="applying ownership" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6334" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6190" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6336" generation=1 uid="3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="About to send resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Successfully sent resource to Azure" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Resource successfully created/updated" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Got ARM status" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity\",\"location\":\"westcentralus\",\"name\":\"sampleuserassignedidentity\",\"properties\":{\"clientId\":\"737615ed-0c79-42f4-83ae-a7e0708c79ef\",\"principalId\":\"1fb2e51d-57b9-42ab-98b3-12b2a835b166\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworksSubnetController "msg"="Determined Delete action" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworksSubnetController "msg"="Starting delete of resource" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworksSubnetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputesubnet" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] VirtualNetworksSubnetController "msg"="Delete succeeded, removing finalizer" name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Owner exists but is not ready. Current condition" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesQueueController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="updated resource in etcd" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6339" generation=1 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupsSecurityRuleController "msg"="Reconcile invoked" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:NetworkSecurityGroupsSecurityRule,APIVersion:network.azure.com/v1api20201101storage,}" resourceVersion="6338" generation=2 uid="e955010d-4fac-4955-85a7-4508a769a289" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"network.azure.com/v1api20201101storage", Kind:"NetworkSecurityGroup", Name:"workspacescomputensg", UID:"4ace3d99-4968-4777-9fb7-a27017136338", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:54 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.Network/networkSecurityGroups/workspacescomputensg/securityRules/workspacescomputensgrule"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:57 +0000 UTC\"]" owner="workspacescomputensg, Group/Kind: network.azure.com/NetworkSecurityGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6331" generation=1 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespaceController "msg"="Done with reconcile" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="Set owner reference" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupsSecurityRuleController "msg"="Determined Delete action" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupsSecurityRuleController "msg"="Starting delete of resource" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupsSecurityRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="workspacescomputensgrule" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NetworkSecurityGroupsSecurityRuleController "msg"="Delete succeeded, removing finalizer" name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] UserAssignedIdentityController "msg"="Successfully created resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" name="identity-settings" type="*v1.ConfigMap" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicController "msg"="adding finalizer" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestswxzyc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz\",\"location\":\"westus2\",\"name\":\"asotest-rg-gwixyz\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] VirtualNetworksSubnetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputesubnet resource status: Operation cannot be fulfilled on virtualnetworkssubnets.network.azure.com "workspacescomputesubnet": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/virtualnetworkssubnets/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputesubnet, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6e8530f0-ce7b-4ae8-ba55-539130106241, UID in object meta: " name="workspacescomputesubnet" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6275" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:02Z] NetworkSecurityGroupsSecurityRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensgrule resource status: Operation cannot be fulfilled on networksecuritygroupssecurityrules.network.azure.com "workspacescomputensgrule": StorageError: invalid object, Code: 4, Key: /registry/network.azure.com/networksecuritygroupssecurityrules/aso-test-samples-creationanddeletion-test-machinelearning-329d5/workspacescomputensgrule, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e955010d-4fac-4955-85a7-4508a769a289, UID in object meta: " name="workspacescomputensgrule" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:02Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Encountered error, re-queuing..." name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Encountered error, re-queuing..." name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestedijsl" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6351" generation=1 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Reconcile invoked" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesCompute,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6344" generation=2 uid="1c362f33-0350-45f7-83d1-b9a95e2de45c" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/computes/asotestrrljlh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"ReferenceNotFound\", Message = \"getting owners for asotestbovcwg: aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotest-rg-tspxpw does not exist (resourcegroups.resources.azure.com \\\"asotest-rg-tspxpw\\\" not found)\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6348" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6276" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="applying ownership" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Determined CreateOrUpdate action" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Determined Delete action" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Starting delete of resource" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestrrljlh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Delete succeeded, removing finalizer" name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesConnectionController "msg"="Reconcile invoked" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" kind="&TypeMeta{Kind:WorkspacesConnection,APIVersion:machinelearningservices.azure.com/v1api20210701storage,}" resourceVersion="6352" generation=2 uid="05076534-77ca-4621-b62c-40c392af6857" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"machinelearningservices.azure.com/v1api20210701storage", Kind:"Workspace", Name:"asotestbovcwg", UID:"adb8aa7b-2b1a-499a-8341-06a50f473f63", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:57 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-tspxpw/providers/Microsoft.MachineLearningServices/workspaces/asotestbovcwg/connections/asotestxmfumn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:00 +0000 UTC\"]" owner="asotestbovcwg, Group/Kind: machinelearningservices.azure.com/Workspace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6355" generation=2 uid="654a9ca3-013f-4da4-8aa2-3d70d9dd996e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] UserAssignedIdentityController "msg"="updated resource in etcd" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6357" generation=1 uid="1e49b9d2-4a27-481f-ba76-fe368d87bfbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] UserAssignedIdentityController "msg"="Done with reconcile" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesConnectionController "msg"="Determined Delete action" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesConnectionController "msg"="Starting delete of resource" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesConnectionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" azureName="asotestxmfumn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspacesConnectionController "msg"="Delete succeeded, removing finalizer" name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Set owner reference" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="About to send resource to Azure" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Successfully sent resource to Azure" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Resource successfully created/updated" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Got ARM status" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz\",\"location\":\"westcentralus\",\"name\":\"asotesteenzrz\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"maxMessageSizeInKilobytes\":256,\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"subscriptionCount\":0,\"supportOrdering\":true,\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6361" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="applying ownership" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="adding finalizer" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6359" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestswxzyc", UID:"c9cb6696-8133-4909-87a5-0e3a9d006ad2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] WorkspacesComputeController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestrrljlh resource status: Operation cannot be fulfilled on workspacescomputes.machinelearningservices.azure.com "asotestrrljlh": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacescomputes/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestrrljlh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1c362f33-0350-45f7-83d1-b9a95e2de45c, UID in object meta: " name="asotestrrljlh" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Owner exists but is not ready. Current condition" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" cannot be found. Progress is blocked until the owner is created." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Set owner reference" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6368" generation=2 uid="654a9ca3-013f-4da4-8aa2-3d70d9dd996e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYQlhCVlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6367" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6366" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestedijsl, Group/Kind: servicebus.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="adding finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Determined CreateOrUpdate action" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] WorkspacesConnectionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestxmfumn resource status: Operation cannot be fulfilled on workspacesconnections.machinelearningservices.azure.com "asotestxmfumn": StorageError: invalid object, Code: 4, Key: /registry/machinelearningservices.azure.com/workspacesconnections/aso-test-samples-creationanddeletion-test-machinelearning-329d5/asotestxmfumn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 05076534-77ca-4621-b62c-40c392af6857, UID in object meta: " name="asotestxmfumn" namespace="aso-test-samples-creationanddeletion-test-machinelearning-329d5" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Encountered error, re-queuing..." name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6368" generation=2 uid="654a9ca3-013f-4da4-8aa2-3d70d9dd996e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRYQlhCVlMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-xbxbvs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotest-rg-xbxbvs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk\",\"name\":\"asotestaknclk\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="About to send resource to Azure" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Successfully sent resource to Azure" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Resource successfully created/updated" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Got ARM status" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny\",\"location\":\"westcentralus\",\"name\":\"asotestzjviny\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"enableExpress\":false,\"enablePartitioning\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"maxMessageSizeInKilobytes\":256,\"maxSizeInMegabytes\":1024,\"messageCount\":0,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/queues\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/authorizationrules/asotestexokpd\",\"location\":\"westcentralus\",\"name\":\"asotestexokpd\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Getting Kubernetes resources for export" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" ResourcesToWrite=1 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6256" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="applying ownership" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6374" generation=1 uid="28378513-a66e-4dab-9f29-c71e1e87db00" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="applying ownership" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6373" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="updated resource in etcd" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6376" generation=1 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Done with reconcile" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Successfully created resource" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" name="authsecret" type="*v1.Secret" action="created" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Set owner reference" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopic" ownerName="asotesteenzrz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Set owner reference" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6381" generation=1 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestswxzyc", UID:"c9cb6696-8133-4909-87a5-0e3a9d006ad2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotest-rg-xbxbvs resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-xbxbvs": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotest-rg-xbxbvs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 654a9ca3-013f-4da4-8aa2-3d70d9dd996e, UID in object meta: " name="asotest-rg-xbxbvs" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotest-rg-xbxbvs aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotestagymlz]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="updated resource in etcd" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6383" generation=1 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Done with reconcile" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="adding finalizer" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="adding finalizer" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6388" generation=1 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6391" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6390" generation=2 uid="3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6395" generation=1 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6389" generation=1 uid="28378513-a66e-4dab-9f29-c71e1e87db00" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"fed0090f-fa8b-4f72-9546-7227d06ab3f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Determined CreateOrUpdate action" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="About to send resource to Azure" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Successfully sent resource to Azure" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6393" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesteenzrz", UID:"69045a60-dcd7-4f85-9baf-ae5dc21c318f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Determined CreateOrUpdate action" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="About to send resource to Azure" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Successfully sent resource to Azure" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Resource successfully created/updated" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Got ARM status" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu\",\"location\":\"westcentralus\",\"name\":\"asotestroeizu\",\"properties\":{\"accessedAt\":\"2001-02-03T04:05:06Z\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferDeadLetterMessageCount\":0,\"transferMessageCount\":0},\"createdAt\":\"2001-02-03T04:05:06Z\",\"deadLetteringOnFilterEvaluationExceptions\":true,\"deadLetteringOnMessageExpiration\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"enableBatchedOperations\":true,\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"maxDeliveryCount\":10,\"messageCount\":0,\"requiresSession\":false,\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6400" generation=1 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6404" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc\",\"location\":\"westus2\",\"name\":\"asotest-rg-atnifc\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6406" generation=2 uid="3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUQUdZTUxaLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6354" generation=2 uid="b4b8c8cf-07bf-4099-87d6-1642e6a809dd" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:02 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRaS0xBQUEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotest-rg-zklaaa" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6406" generation=2 uid="3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUQUdZTUxaLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotestagymlz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6404" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6408" generation=1 uid="28378513-a66e-4dab-9f29-c71e1e87db00" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"fed0090f-fa8b-4f72-9546-7227d06ab3f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/d9C3zhetW1huLa7-8uKnJ5gr32CZotj4Onn3qYUElsQ?api-version=2022-05-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx?api-version=2022-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Done with reconcile" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" azureName="asotestagymlz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" cannot be found. Progress is blocked until the owner is created." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6412" generation=1 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6404" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6408" generation=1 uid="28378513-a66e-4dab-9f29-c71e1e87db00" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"fed0090f-fa8b-4f72-9546-7227d06ab3f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"asyncURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus2/operationsStatus/d9C3zhetW1huLa7-8uKnJ5gr32CZotj4Onn3qYUElsQ?api-version=2022-05-01\",\"locURL\":\"\",\"origURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx?api-version=2022-05-01\",\"method\":\"PUT\",\"finalState\":\"\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotest-rg-zklaaa resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-zklaaa": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotest-rg-zklaaa, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b4b8c8cf-07bf-4099-87d6-1642e6a809dd, UID in object meta: " name="asotest-rg-zklaaa" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Determined CreateOrUpdate action" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Resource successfully created/updated" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="updated resource in etcd" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6415" generation=1 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesteenzrz", UID:"69045a60-dcd7-4f85-9baf-ae5dc21c318f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionController "msg"="Done with reconcile" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Got ARM status" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx\",\"location\":\"westus2\",\"name\":\"asotestuzefrx\",\"properties\":{\"creationDate\":\"2022-10-19T17:54:32+00:00\",\"disableLocalAuth\":false,\"enablePurgeProtection\":false,\"encryption\":{},\"endpoint\":\"https://asotestuzefrx.azconfig.io\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccess\":\"Disabled\",\"softDeleteRetentionInDays\":7},\"sku\":{\"name\":\"standard\"},\"systemData\":{\"createdAt\":\"2022-10-19T17:54:32+00:00\",\"createdBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2022-10-19T17:54:33+00:00\",\"lastModifiedBy\":\"99de824c-b6d0-4769-af94-8819d4093b83\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.AppConfiguration/configurationStores\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Getting Kubernetes resources for export" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="No secrets retrieval to perform as operatorSpec is empty" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Successfully retrieved Kubernetes resources for export" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" ResourcesToWrite=0 +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotestagymlz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotestagymlz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f/asotestagymlz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 3f8aa6ab-4e32-4c41-b16b-5fc1cff6774e, UID in object meta: " name="asotestagymlz" namespace="aso-test-samples-creationanddeletion-test-resources-v1api-c6c2f" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6404" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Encountered error, re-queuing..." name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotest-rg-zklaaa aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotestqctlbg]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6261" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="applying ownership" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6404" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Set owner reference" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" ownerGvk="servicebus.azure.com/v1api20211101storage, Kind=NamespacesTopicsSubscription" ownerName="asotestroeizu" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="updated resource in etcd" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6421" generation=1 uid="28378513-a66e-4dab-9f29-c71e1e87db00" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"fed0090f-fa8b-4f72-9546-7227d06ab3f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ConfigurationStoreController "msg"="Done with reconcile" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6404" generation=2 uid="dc986780-c018-477a-a266-b4e79c9bd3db" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRKV1lBVlYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotest-rg-jwyavv" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] SearchServiceController "msg"="Reconcile invoked" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" kind="&TypeMeta{Kind:SearchService,APIVersion:search.azure.com/v1api20220901storage,}" resourceVersion="6424" generation=2 uid="d94fd1ce-6355-44d4-837d-d8452b48716a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-zklaaa", UID:"b4b8c8cf-07bf-4099-87d6-1642e6a809dd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-zklaaa/providers/Microsoft.Search/searchServices/asotestqctlbg"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-zklaaa, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] SearchServiceController "msg"="Determined Delete action" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] SearchServiceController "msg"="Starting delete of resource" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] SearchServiceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" azureName="asotestqctlbg" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] SearchServiceController "msg"="Delete succeeded, removing finalizer" name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="adding finalizer" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotest-rg-jwyavv resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-jwyavv": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotest-rg-jwyavv, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: dc986780-c018-477a-a266-b4e79c9bd3db, UID in object meta: " name="asotest-rg-jwyavv" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotest-rg-jwyavv aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestyftnak aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestgwznuu aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestqaeexb aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotesthoycyt aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestaknclk]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] SearchServiceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotestqctlbg resource status: Operation cannot be fulfilled on searchservices.search.azure.com "asotestqctlbg": StorageError: invalid object, Code: 4, Key: /registry/search.azure.com/searchservices/aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303/asotestqctlbg, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d94fd1ce-6355-44d4-837d-d8452b48716a, UID in object meta: " name="asotestqctlbg" namespace="aso-test-samples-creationanddeletion-test-search-v1api-cr-0c303" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6432" generation=1 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6429" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestroeizu", UID:"9965a0ea-f09a-4a7d-8086-32de85ee5beb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined CreateOrUpdate action" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Reconcile invoked" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6434" generation=1 uid="a0fcd573-6424-4854-a6c2-61d17b1b7f21" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="applying ownership" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6435" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Set owner reference" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6436" generation=1 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="About to send resource to Azure" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully sent resource to Azure" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Resource successfully created/updated" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Got ARM status" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs\",\"location\":\"westcentralus\",\"name\":\"asotestnmosgs\",\"properties\":{\"action\":{\"compatibilityLevel\":20,\"sqlExpression\":\"SET myproperty=myvalue\"},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"compatibilityLevel\":20,\"sqlExpression\":\"StoreId IN ('Store1','Store2','Store3')\"}},\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey\",\"location\":\"westus2\",\"name\":\"asotest-rg-epdyey\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Reconcile invoked" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6439" generation=2 uid="91fc343c-a471-43bf-acbd-b6dc9172cf54" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-jwyavv", UID:"dc986780-c018-477a-a266-b4e79c9bd3db", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner="asotest-rg-jwyavv, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="adding finalizer" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Determined Delete action" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Starting delete of resource" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestyftnak" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === CONT Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Resource creation/update failure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" error="PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\n--------------------------------------------------------------------------------\nRESPONSE 400: 400 Bad Request\nERROR CODE: PrincipalNotFound\n--------------------------------------------------------------------------------\n{\n \"error\": {\n \"code\": \"PrincipalNotFound\",\n \"message\": \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\"\n }\n}\n--------------------------------------------------------------------------------\n" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error impacting Ready condition" "err"="Reason: PrincipalNotFound, Severity: Warning, RetryClassification: RetrySlow, Cause: Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361 +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] RESPONSE 400: 400 Bad Request +[controller:test-integration-envtest] ERROR CODE: PrincipalNotFound +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] { +[controller:test-integration-envtest] "error": { +[controller:test-integration-envtest] "code": "PrincipalNotFound", +[controller:test-integration-envtest] "message": "Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype" +[controller:test-integration-envtest] } +[controller:test-integration-envtest] } +[controller:test-integration-envtest] -------------------------------------------------------------------------------- +[controller:test-integration-envtest] " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="updated resource in etcd" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6442" generation=1 uid="a0fcd573-6424-4854-a6c2-61d17b1b7f21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b0b3175a-b42e-4474-a946-40e504499089", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="updated resource in etcd" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6446" generation=1 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestroeizu", UID:"9965a0ea-f09a-4a7d-8086-32de85ee5beb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6448" generation=1 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicsSubscriptionsRuleController "msg"="Done with reconcile" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6450" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestyftnak resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotestyftnak": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestyftnak, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 91fc343c-a471-43bf-acbd-b6dc9172cf54, UID in object meta: " name="asotestyftnak" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="About to send resource to Azure" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Successfully sent resource to Azure" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6450" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6452" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Encountered error, re-queuing..." name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Owner does not yet exist" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" NamespacedName="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6450" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6394" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6459" generation=1 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="applying ownership" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="adding finalizer" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6450" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6458" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="applying ownership" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="About to send resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Successfully sent resource to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="updated resource in etcd" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6462" generation=1 uid="a0fcd573-6424-4854-a6c2-61d17b1b7f21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b0b3175a-b42e-4474-a946-40e504499089", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Done with reconcile" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6463" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6468" generation=2 uid="73d8b202-d9dd-49b4-9fa3-22e951478e8d" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/AuthorizationRules/asotestgwznuu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Reconcile invoked" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6462" generation=1 uid="a0fcd573-6424-4854-a6c2-61d17b1b7f21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b0b3175a-b42e-4474-a946-40e504499089", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag?api-version=2021-06-01\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6465" generation=1 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6450" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Set owner reference" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-epdyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined CreateOrUpdate action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="About to send resource to Azure" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Determined CreateOrUpdate action" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Resource successfully created/updated" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Got ARM status" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag\",\"location\":\"westcentralus\",\"name\":\"asotestdftsag\",\"properties\":{\"createdDate\":\"2001-02-03T04:05:06Z\",\"customerId\":\"25a00b9e-7c61-4ef1-b6f5-55d801bc6eea\",\"features\":{\"enableLogAccessUsingOnlyResourcePermissions\":true},\"modifiedDate\":\"2001-02-03T04:05:06Z\",\"provisioningState\":\"Succeeded\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"retentionInDays\":30,\"sku\":{\"lastSkuUpdate\":\"2001-02-03T04:05:06Z\",\"name\":\"PerGB2018\"},\"workspaceCapping\":{\"dailyQuotaGb\":-1,\"dataIngestionStatus\":\"RespectQuota\",\"quotaNextResetTime\":\"2001-02-03T04:05:06Z\"}},\"type\":\"Microsoft.OperationalInsights/workspaces\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully sent resource to Azure" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Resource successfully created/updated" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Got ARM status" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii\",\"location\":\"westus2\",\"name\":\"asotest-rg-lzksii\",\"properties\":{\"provisioningState\":\"Succeeded\"},\"tags\":{\"CreatedAt\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Resources/resourceGroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestgwznuu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="adding finalizer" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6470" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6450" generation=2 uid="fed0090f-fa8b-4f72-9546-7227d06ab3f6" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHV0lYWVotV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6469" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotest-rg-gwixyz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestgwznuu resource status: Operation cannot be fulfilled on namespacesauthorizationrules.servicebus.azure.com "asotestgwznuu": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestgwznuu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 73d8b202-d9dd-49b4-9fa3-22e951478e8d, UID in object meta: " name="asotestgwznuu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6473" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6480" generation=1 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="updated resource in etcd" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6477" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6469" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361?api-version=2020-08-01-preview\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"PrincipalNotFound\", Message = \"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype: PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\\n--------------------------------------------------------------------------------\\nRESPONSE 400: 400 Bad Request\\nERROR CODE: PrincipalNotFound\\n--------------------------------------------------------------------------------\\n{\\n \\\"error\\\": {\\n \\\"code\\\": \\\"PrincipalNotFound\\\",\\n \\\"message\\\": \\\"Principal 1fb2e51d57b942ab98b312b2a835b166 does not exist in the directory 00000000-0000-0000-0000-000000000000. Check that you have the correct principal ID. If you are creating this principal and then immediately assigning a role, this error might be related to a replication delay. In this case, set the role assignment principalType property to a value, such as ServicePrincipal, User, or Group. See https://aka.ms/docs-principaltype\\\"\\n }\\n}\\n--------------------------------------------------------------------------------\\n\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6474" generation=2 uid="d3d830cf-4d1b-42e6-8314-24c2542c0cf8" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/queues/asotestqaeexb"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestqaeexb" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Determined CreateOrUpdate action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Resource successfully created/updated" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Got ARM status" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361\",\"name\":\"a0bf597c-9acb-5a53-96ec-a419ae71b361\",\"properties\":{\"createdBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"createdOn\":\"2001-02-03T04:05:06Z\",\"principalId\":\"1fb2e51d-57b9-42ab-98b3-12b2a835b166\",\"principalType\":\"ServicePrincipal\",\"roleDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov\",\"updatedBy\":\"84f47115-7605-44df-accf-7e01c55e425f\",\"updatedOn\":\"2001-02-03T04:05:06Z\"},\"type\":\"Microsoft.Authorization/roleAssignments\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6482" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:01 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="About to send resource to Azure" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotest-rg-gwixyz resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gwixyz": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotest-rg-gwixyz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fed0090f-fa8b-4f72-9546-7227d06ab3f6, UID in object meta: " name="asotest-rg-gwixyz" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6484" generation=2 uid="405557db-fd0b-4060-bd96-c076797febbd" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestyftnak", UID:"91fc343c-a471-43bf-acbd-b6dc9172cf54", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotestyftnak, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="updated resource in etcd" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6486" generation=1 uid="a0fcd573-6424-4854-a6c2-61d17b1b7f21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b0b3175a-b42e-4474-a946-40e504499089", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] WorkspaceController "msg"="Done with reconcile" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Determined Delete action" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotesthoycyt" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="updated resource in etcd" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6497" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestqaeexb resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestqaeexb": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestqaeexb, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: d3d830cf-4d1b-42e6-8314-24c2542c0cf8, UID in object meta: " name="asotestqaeexb" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6498" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotesthoycyt resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotesthoycyt": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotesthoycyt, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 405557db-fd0b-4060-bd96-c076797febbd, UID in object meta: " name="asotesthoycyt" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6500" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Owner does not yet exist" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" NamespacedName="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotest-rg-gwixyz aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotestuzefrx]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6497" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6502" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" requeueAfter="0s" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="updated resource in etcd" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6504" generation=1 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] RoleAssignmentController "msg"="Done with reconcile" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6500" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Owner does not yet exist" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" NamespacedName="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6497" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6506" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:03Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6500" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6497" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6508" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Owner does not yet exist" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" NamespacedName="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ConfigurationStoreController "msg"="Reconcile invoked" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" kind="&TypeMeta{Kind:ConfigurationStore,APIVersion:appconfiguration.azure.com/v1api20220501storage,}" resourceVersion="6511" generation=2 uid="28378513-a66e-4dab-9f29-c71e1e87db00" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gwixyz", UID:"fed0090f-fa8b-4f72-9546-7227d06ab3f6", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gwixyz/providers/Microsoft.AppConfiguration/configurationStores/asotestuzefrx"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-gwixyz, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ConfigurationStoreController "msg"="Determined Delete action" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ConfigurationStoreController "msg"="Starting delete of resource" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ConfigurationStoreController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" azureName="asotestuzefrx" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ConfigurationStoreController "msg"="Delete succeeded, removing finalizer" name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6500" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6509" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6497" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6515" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="applying ownership" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Got ARM status" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi\",\"location\":\"West Central US\",\"name\":\"asotestajtszi\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"disableLocalAuth\":false,\"isAutoInflateEnabled\":false,\"kafkaEnabled\":true,\"maximumThroughputUnits\":0,\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestajtszi\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestajtszi.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"capacity\":1,\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.EventHub/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6500" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Set owner reference" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="resources.azure.com/v1api20200601storage, Kind=ResourceGroup" ownerName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] ConfigurationStoreController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotestuzefrx resource status: Operation cannot be fulfilled on configurationstores.appconfiguration.azure.com "asotestuzefrx": StorageError: invalid object, Code: 4, Key: /registry/appconfiguration.azure.com/configurationstores/aso-test-samples-creationanddeletion-test-appconfiguratio-485c2/asotestuzefrx, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 28378513-a66e-4dab-9f29-c71e1e87db00, UID in object meta: " name="asotestuzefrx" namespace="aso-test-samples-creationanddeletion-test-appconfiguratio-485c2" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6522" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="adding finalizer" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6521" generation=2 uid="c9cb6696-8133-4909-87a5-0e3a9d006ad2" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesthoycyt", UID:"405557db-fd0b-4060-bd96-c076797febbd", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotesthoycyt, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6500" generation=2 uid="97940793-33c6-475b-be62-f5ac84183ec8" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRWV0JQVU8tV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6475" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestswxzyc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6522" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotest-rg-vwbpuo" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="updated resource in etcd" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6525" generation=1 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6524" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestswxzyc": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestswxzyc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c9cb6696-8133-4909-87a5-0e3a9d006ad2, UID in object meta: " name="asotestswxzyc" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="updated resource in etcd" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6528" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotest-rg-vwbpuo resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-vwbpuo": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotest-rg-vwbpuo, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 97940793-33c6-475b-be62-f5ac84183ec8, UID in object meta: " name="asotest-rg-vwbpuo" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6522" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6488" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="About to send resource to Azure" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Successfully sent resource to Azure" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Set owner reference" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestajtszi" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6522" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6535" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="adding finalizer" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6522" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotest-rg-vwbpuo aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotesteenzrz aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestroeizu aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestnmosgs aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestexokpd aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestzjviny]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6535" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6539" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"ed94b5d2-2a0c-4bac-a285-98e380863849", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6522" generation=2 uid="b0b3175a-b42e-4474-a946-40e504499089" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:03 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRBVE5JRkMtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="updated resource in etcd" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6545" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6542" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"ed94b5d2-2a0c-4bac-a285-98e380863849", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Determined CreateOrUpdate action" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6543" generation=2 uid="db2071be-1ed5-46d0-9a44-6ddc6d4d9717" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestswxzyc", UID:"c9cb6696-8133-4909-87a5-0e3a9d006ad2", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:01 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-jwyavv/providers/Microsoft.ServiceBus/namespaces/asotestyftnak/topics/asotesthoycyt/subscriptions/asotestswxzyc/rules/asotestaknclk"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestswxzyc, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotest-rg-atnifc" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" azureName="asotestaknclk" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:Namespace,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6548" generation=2 uid="6e914227-8898-49bb-a9ae-91c514d2ff1b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-vwbpuo", UID:"97940793-33c6-475b-be62-f5ac84183ec8", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-vwbpuo, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="About to send resource to Azure" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6535" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Successfully sent resource to Azure" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationrules/asotestkccfkn\",\"location\":\"westcentralus\",\"name\":\"asotestkccfkn\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Resource successfully created/updated" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6545" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Got ARM status" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy\",\"location\":\"westcentralus\",\"name\":\"asotestzczcxy\",\"properties\":{\"createdAt\":\"2023-03-23T23:16:08.453\",\"messageRetentionInDays\":7,\"partitionCount\":1,\"partitionIds\":[\"0\"],\"status\":\"Active\",\"updatedAt\":\"2023-03-23T23:16:08.57\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined Delete action" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Starting delete of resource" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestedijsl" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotest-rg-atnifc resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-atnifc": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotest-rg-atnifc, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: b0b3175a-b42e-4474-a946-40e504499089, UID in object meta: " name="asotest-rg-atnifc" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestajtszi, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6545" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestaknclk resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestaknclk": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092/asotestaknclk, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: db2071be-1ed5-46d0-9a44-6ddc6d4d9717, UID in object meta: " name="asotestaknclk" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-e3092" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl resource status: Operation cannot be fulfilled on namespaces.servicebus.azure.com "asotestedijsl": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespaces/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestedijsl, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 6e914227-8898-49bb-a9ae-91c514d2ff1b, UID in object meta: " name="asotestedijsl" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6535" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6557" generation=1 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"ed94b5d2-2a0c-4bac-a285-98e380863849", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6545" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Resource not created yet, will check again" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Didn't commit obj as there was no change" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6466" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6535" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotest-rg-atnifc aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotestdftsag]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6559" generation=1 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"ed94b5d2-2a0c-4bac-a285-98e380863849", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Done with reconcile" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Set owner reference" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestzczcxy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6545" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst?api-version=2021-11-01\",\"state\":\"Created\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6489" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6535" generation=2 uid="eade7281-7cc1-4dca-8b06-18a5d6faab19" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRJWURRT1YtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined CreateOrUpdate action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Resource successfully created/updated" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Got ARM status" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst\",\"location\":\"West Central US\",\"name\":\"asotestloljst\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"disableLocalAuth\":false,\"isAutoInflateEnabled\":false,\"kafkaEnabled\":true,\"maximumThroughputUnits\":0,\"metricId\":\"00000000-0000-0000-0000-000000000000:asotestloljst\",\"provisioningState\":\"Succeeded\",\"serviceBusEndpoint\":\"https://asotestloljst.servicebus.windows.net:443/\",\"status\":\"Active\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"zoneRedundant\":false},\"sku\":{\"capacity\":1,\"name\":\"Standard\",\"tier\":\"Standard\"},\"type\":\"Microsoft.EventHub/Namespaces\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="asotest-rg-iydqov" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="adding finalizer" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Owner exists but is not ready. Current condition" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestloljst, Group/Kind: eventhub.azure.com/Namespace" cannot be found. Progress is blocked until the owner is created." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Set owner reference" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestzczcxy" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] WorkspaceController "msg"="Reconcile invoked" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" kind="&TypeMeta{Kind:Workspace,APIVersion:operationalinsights.azure.com/v1api20210601storage,}" resourceVersion="6566" generation=2 uid="a0fcd573-6424-4854-a6c2-61d17b1b7f21" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-atnifc", UID:"b0b3175a-b42e-4474-a946-40e504499089", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-atnifc/providers/Microsoft.OperationalInsights/workspaces/asotestdftsag"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-atnifc, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] WorkspaceController "msg"="Determined Delete action" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] WorkspaceController "msg"="Starting delete of resource" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] WorkspaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" azureName="asotestdftsag" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] WorkspaceController "msg"="Delete succeeded, removing finalizer" name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-d7f58/asotest-rg-iydqov resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-iydqov": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-authorization-v-d7f58/asotest-rg-iydqov, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eade7281-7cc1-4dca-8b06-18a5d6faab19, UID in object meta: " name="asotest-rg-iydqov" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6569" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"7077e448-6758-4e33-9046-9e23cdc97e1a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="updated resource in etcd" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6571" generation=1 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Encountered error, re-queuing..." name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Done with reconcile" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Determined CreateOrUpdate action" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6505" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="applying ownership" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6512" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="applying ownership" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicController "msg"="Reconcile invoked" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopic,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6573" generation=2 uid="69045a60-dcd7-4f85-9baf-ae5dc21c318f" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicController "msg"="Determined Delete action" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicController "msg"="Starting delete of resource" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotesteenzrz" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicController "msg"="Delete succeeded, removing finalizer" name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Set owner reference" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestloljst" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-authorization-v-d7f58/asotest-rg-iydqov aso-test-samples-creationanddeletion-test-authorization-v-d7f58/sampleuserassignedidentity aso-test-samples-creationanddeletion-test-authorization-v-d7f58/aso-sample-contributor]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="adding finalizer" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="About to send resource to Azure" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Set owner reference" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=Namespace" ownerName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully sent resource to Azure" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Resource successfully created/updated" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Got ARM status" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq\",\"location\":\"westcentralus\",\"name\":\"asotesthhwdlq\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"userMetadata\":\"Some interesting metadata\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/consumergroups\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] WorkspaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotestdftsag resource status: Operation cannot be fulfilled on workspaces.operationalinsights.azure.com "asotestdftsag": StorageError: invalid object, Code: 4, Key: /registry/operationalinsights.azure.com/workspaces/aso-test-samples-creationanddeletion-test-operationalinsi-c2275/asotestdftsag, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a0fcd573-6424-4854-a6c2-61d17b1b7f21, UID in object meta: " name="asotestdftsag" namespace="aso-test-samples-creationanddeletion-test-operationalinsi-c2275" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="adding finalizer" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6578" generation=2 uid="087576f8-c191-434b-9708-ecda0aa61911" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/AuthorizationRules/asotestexokpd"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="adding finalizer" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestexokpd" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6580" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"7077e448-6758-4e33-9046-9e23cdc97e1a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] UserAssignedIdentityController "msg"="Reconcile invoked" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:UserAssignedIdentity,APIVersion:managedidentity.azure.com/v1api20181130storage,}" resourceVersion="6585" generation=2 uid="1e49b9d2-4a27-481f-ba76-fe368d87bfbf" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sampleuserassignedidentity"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:02 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesTopicController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotesteenzrz resource status: Operation cannot be fulfilled on namespacestopics.servicebus.azure.com "asotesteenzrz": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopics/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotesteenzrz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 69045a60-dcd7-4f85-9baf-ae5dc21c318f, UID in object meta: " name="asotesteenzrz" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6582" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"5eff1778-33f4-4f36-bf5d-6a0c82ec72ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6587" generation=1 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"7077e448-6758-4e33-9046-9e23cdc97e1a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Done with reconcile" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] UserAssignedIdentityController "msg"="Determined Delete action" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] UserAssignedIdentityController "msg"="Starting delete of resource" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] UserAssignedIdentityController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="sampleuserassignedidentity" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] UserAssignedIdentityController "msg"="Delete succeeded, removing finalizer" name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesQueueController "msg"="Reconcile invoked" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesQueue,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6588" generation=2 uid="58aff26e-1223-4ac1-8dfb-d0f9c2976a5a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestedijsl", UID:"6e914227-8898-49bb-a9ae-91c514d2ff1b", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/queues/asotestzjviny"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestedijsl, Group/Kind: servicebus.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Got ARM status" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationrules/asotestfmqpry\",\"location\":\"westcentralus\",\"name\":\"asotestfmqpry\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/authorizationrules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesQueueController "msg"="Determined Delete action" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" action="BeginDelete" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6586" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"5eff1778-33f4-4f36-bf5d-6a0c82ec72ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesQueueController "msg"="Starting delete of resource" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestexokpd resource status: Operation cannot be fulfilled on namespacesauthorizationrules.servicebus.azure.com "asotestexokpd": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestexokpd, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 087576f8-c191-434b-9708-ecda0aa61911, UID in object meta: " name="asotestexokpd" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesQueueController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestzjviny" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesQueueController "msg"="Delete succeeded, removing finalizer" name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] RoleAssignmentController "msg"="Reconcile invoked" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" kind="&TypeMeta{Kind:RoleAssignment,APIVersion:authorization.azure.com/v1api20200801previewstorage,}" resourceVersion="6591" generation=2 uid="22bb8eca-ca08-4bb2-a9cf-0b137b73079e" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-iydqov", UID:"eade7281-7cc1-4dca-8b06-18a5d6faab19", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-iydqov/providers/Microsoft.Authorization/roleAssignments/a0bf597c-9acb-5a53-96ec-a419ae71b361"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotest-rg-iydqov, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] RoleAssignmentController "msg"="Determined Delete action" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] RoleAssignmentController "msg"="Starting delete of resource" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] RoleAssignmentController "msg"="Successfully issued DELETE to Azure" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" azureName="a0bf597c-9acb-5a53-96ec-a419ae71b361" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] RoleAssignmentController "msg"="Delete succeeded, removing finalizer" name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Determined CreateOrUpdate action" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Got ARM status" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationrules/asotestwqssoi\",\"location\":\"westcentralus\",\"name\":\"asotestwqssoi\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] UserAssignedIdentityController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-d7f58/sampleuserassignedidentity resource status: Operation cannot be fulfilled on userassignedidentities.managedidentity.azure.com "sampleuserassignedidentity": StorageError: invalid object, Code: 4, Key: /registry/managedidentity.azure.com/userassignedidentities/aso-test-samples-creationanddeletion-test-authorization-v-d7f58/sampleuserassignedidentity, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1e49b9d2-4a27-481f-ba76-fe368d87bfbf, UID in object meta: " name="sampleuserassignedidentity" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Owner exists but is not ready. Current condition" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="About to send resource to Azure" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Successfully sent resource to Azure" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Resource successfully created/updated" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6597" generation=1 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"7077e448-6758-4e33-9046-9e23cdc97e1a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Done with reconcile" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Owner exists but is not ready. Current condition" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ready="Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestloljst, Group/Kind: eventhub.azure.com/Namespace\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Error claiming resource" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error impacting Ready condition" "err"="Reason: WaitingForOwner, Severity: Warning, RetryClassification: RetryFast, Cause: Owner "asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" cannot be found. Progress is blocked until the owner is created." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesQueueController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestzjviny resource status: Operation cannot be fulfilled on namespacesqueues.servicebus.azure.com "asotestzjviny": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacesqueues/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestzjviny, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 58aff26e-1223-4ac1-8dfb-d0f9c2976a5a, UID in object meta: " name="asotestzjviny" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Got ARM status" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane\",\"location\":\"westcentralus\",\"name\":\"asotestrvmane\",\"properties\":{\"createdAt\":\"2022-10-19T18:58:46.543\",\"messageRetentionInDays\":7,\"partitionCount\":1,\"partitionIds\":[\"0\"],\"status\":\"Active\",\"updatedAt\":\"2022-10-19T18:58:47.02\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="updated resource in etcd" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6600" generation=1 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"5eff1778-33f4-4f36-bf5d-6a0c82ec72ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesAuthorizationRuleController "msg"="Done with reconcile" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] RoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-d7f58/aso-sample-contributor resource status: Operation cannot be fulfilled on roleassignments.authorization.azure.com "aso-sample-contributor": StorageError: invalid object, Code: 4, Key: /registry/authorization.azure.com/roleassignments/aso-test-samples-creationanddeletion-test-authorization-v-d7f58/aso-sample-contributor, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 22bb8eca-ca08-4bb2-a9cf-0b137b73079e, UID in object meta: " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-d7f58" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="updated resource in etcd" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6604" generation=1 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"5eff1778-33f4-4f36-bf5d-6a0c82ec72ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubController "msg"="Done with reconcile" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Encountered error, re-queuing..." name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Encountered error, re-queuing..." name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:5000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6514" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="applying ownership" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6526" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string(nil) annotations=map[string]string{} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="applying ownership" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Set owner reference" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Set owner reference" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" ownerGvk="eventhub.azure.com/v1api20211101storage, Kind=NamespacesEventhub" ownerName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="adding finalizer" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="adding finalizer" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Reconcile invoked" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscription,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6617" generation=2 uid="9965a0ea-f09a-4a7d-8086-32de85ee5beb" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopic", Name:"asotesteenzrz", UID:"69045a60-dcd7-4f85-9baf-ae5dc21c318f", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotesteenzrz, Group/Kind: servicebus.azure.com/NamespacesTopic" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Determined Delete action" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Starting delete of resource" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestroeizu" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Delete succeeded, removing finalizer" name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6613" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"eeced444-a77b-426d-b872-e6479b7a09f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6615" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"eeced444-a77b-426d-b872-e6479b7a09f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Warning\", Reason = \"WaitingForOwner\", Message = \"Owner \\\"asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub\\\" cannot be found. Progress is blocked until the owner is created.\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Determined CreateOrUpdate action" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined CreateOrUpdate action" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" action="BeginCreateOrUpdate" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6621" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestroeizu resource status: Operation cannot be fulfilled on namespacestopicssubscriptions.servicebus.azure.com "asotestroeizu": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptions/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestroeizu, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9965a0ea-f09a-4a7d-8086-32de85ee5beb, UID in object meta: " name="asotestroeizu" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="About to send resource to Azure" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully sent resource to Azure" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Resource successfully created/updated" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Got ARM status" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe\",\"location\":\"westcentralus\",\"name\":\"asotestmlxcqe\",\"properties\":{\"createdAt\":\"2001-02-03T04:05:06Z\",\"updatedAt\":\"2001-02-03T04:05:06Z\",\"userMetadata\":\"Some interesting metadata\"},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/consumergroups\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="About to send resource to Azure" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully sent resource to Azure" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Resource successfully created/updated" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" resourceID="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Got ARM status" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" status="{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationrules/asotestgylboh\",\"location\":\"westcentralus\",\"name\":\"asotestgylboh\",\"properties\":{\"rights\":[\"Listen\",\"Send\"]},\"type\":\"Microsoft.EventHub/namespaces/eventhubs/authorizationrules\"}" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6630" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="updated resource in etcd" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6632" generation=1 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"eeced444-a77b-426d-b872-e6479b7a09f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsConsumerGroupController "msg"="Done with reconcile" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6630" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="updated resource in etcd" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6633" generation=1 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"eeced444-a77b-426d-b872-e6479b7a09f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesEventhubsAuthorizationRuleController "msg"="Done with reconcile" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6630" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6630" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Reconcile invoked" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" kind="&TypeMeta{Kind:NamespacesTopicsSubscriptionsRule,APIVersion:servicebus.azure.com/v1api20211101storage,}" resourceVersion="6641" generation=2 uid="9226dc6f-94db-43c9-beb1-68420259cc93" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"servicebus.azure.com/v1api20211101storage", Kind:"NamespacesTopicsSubscription", Name:"asotestroeizu", UID:"9965a0ea-f09a-4a7d-8086-32de85ee5beb", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:02 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-vwbpuo/providers/Microsoft.ServiceBus/namespaces/asotestedijsl/topics/asotesteenzrz/subscriptions/asotestroeizu/rules/asotestnmosgs"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner="asotestroeizu, Group/Kind: servicebus.azure.com/NamespacesTopicsSubscription" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Determined Delete action" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Starting delete of resource" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" azureName="asotestnmosgs" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Delete succeeded, removing finalizer" name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6630" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6630" generation=2 uid="8213d175-270d-4241-a0ea-24393caef251" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRFUERZRVktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotest-rg-epdyey" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] NamespacesTopicsSubscriptionsRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestnmosgs resource status: Operation cannot be fulfilled on namespacestopicssubscriptionsrules.servicebus.azure.com "asotestnmosgs": StorageError: invalid object, Code: 4, Key: /registry/servicebus.azure.com/namespacestopicssubscriptionsrules/aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002/asotestnmosgs, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9226dc6f-94db-43c9-beb1-68420259cc93, UID in object meta: " name="asotestnmosgs" namespace="aso-test-samples-creationanddeletion-test-servicebus-v1ap-a2002" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6651" generation=2 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:03 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotest-rg-epdyey resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-epdyey": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotest-rg-epdyey, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 8213d175-270d-4241-a0ea-24393caef251, UID in object meta: " name="asotest-rg-epdyey" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotest-rg-epdyey aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotesthhwdlq aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestajtszi aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestkccfkn aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestfmqpry]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6661" generation=2 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6661" generation=2 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Reconcile invoked" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6663" generation=2 uid="ed94b5d2-2a0c-4bac-a285-98e380863849" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-epdyey", UID:"8213d175-270d-4241-a0ea-24393caef251", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-epdyey, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Determined Delete action" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Starting delete of resource" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestajtszi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:04Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6661" generation=2 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestajtszi resource status: Operation cannot be fulfilled on namespaces.eventhub.azure.com "asotestajtszi": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaces/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestajtszi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: ed94b5d2-2a0c-4bac-a285-98e380863849, UID in object meta: " name="asotestajtszi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6661" generation=2 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" result=reconcile.Result{Requeue:true, RequeueAfter:10000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="6661" generation=2 uid="7890e153-c3ba-4d7c-8a24-4c53f45d8e08" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:04 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRMWktTSUktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotest-rg-lzksii" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotest-rg-lzksii resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-lzksii": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotest-rg-lzksii, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7890e153-c3ba-4d7c-8a24-4c53f45d8e08, UID in object meta: " name="asotest-rg-lzksii" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6689" generation=2 uid="093e2c00-4894-4da0-83e3-6e352219a7ba" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"ed94b5d2-2a0c-4bac-a285-98e380863849", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/authorizationRules/asotestkccfkn"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestkccfkn" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotest-rg-lzksii aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestwqssoi aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestrvmane aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestgylboh aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestmlxcqe aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst]... +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6692" generation=2 uid="7077e448-6758-4e33-9046-9e23cdc97e1a" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestajtszi", UID:"ed94b5d2-2a0c-4bac-a285-98e380863849", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestajtszi, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Determined Delete action" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Starting delete of resource" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestzczcxy" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Delete succeeded, removing finalizer" name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestkccfkn resource status: Operation cannot be fulfilled on namespacesauthorizationrules.eventhub.azure.com "asotestkccfkn": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestkccfkn, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 093e2c00-4894-4da0-83e3-6e352219a7ba, UID in object meta: " name="asotestkccfkn" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespaceController "msg"="Reconcile invoked" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:Namespace,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6697" generation=2 uid="5eff1778-33f4-4f36-bf5d-6a0c82ec72ab" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-lzksii", UID:"7890e153-c3ba-4d7c-8a24-4c53f45d8e08", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:04 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotest-rg-lzksii, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy resource status: Operation cannot be fulfilled on namespaceseventhubs.eventhub.azure.com "asotestzczcxy": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubs/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestzczcxy, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 7077e448-6758-4e33-9046-9e23cdc97e1a, UID in object meta: " name="asotestzczcxy" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespaceController "msg"="Determined Delete action" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespaceController "msg"="Starting delete of resource" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespaceController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestloljst" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespaceController "msg"="Delete succeeded, removing finalizer" name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespaceController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst resource status: Operation cannot be fulfilled on namespaces.eventhub.azure.com "asotestloljst": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaces/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestloljst, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5eff1778-33f4-4f36-bf5d-6a0c82ec72ab, UID in object meta: " name="asotestloljst" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6714" generation=2 uid="5b5c2d6e-9b41-4c32-baa2-799e906d9066" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"7077e448-6758-4e33-9046-9e23cdc97e1a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/consumergroups/asotesthhwdlq"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Determined Delete action" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Starting delete of resource" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotesthhwdlq" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Delete succeeded, removing finalizer" name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Reconcile invoked" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6717" generation=2 uid="4dce7fea-b675-417c-95d0-58be6eb81452" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"5eff1778-33f4-4f36-bf5d-6a0c82ec72ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/authorizationRules/asotestwqssoi"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Determined Delete action" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Starting delete of resource" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestwqssoi" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Reconcile invoked" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhub,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6719" generation=2 uid="eeced444-a77b-426d-b872-e6479b7a09f7" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"Namespace", Name:"asotestloljst", UID:"5eff1778-33f4-4f36-bf5d-6a0c82ec72ab", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestloljst, Group/Kind: eventhub.azure.com/Namespace" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6718" generation=2 uid="e6cc1635-804a-4466-82ca-a1cadd01f8e4" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestzczcxy", UID:"7077e448-6758-4e33-9046-9e23cdc97e1a", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-epdyey/providers/Microsoft.EventHub/namespaces/asotestajtszi/eventhubs/asotestzczcxy/authorizationRules/asotestfmqpry"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestzczcxy, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Determined Delete action" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Starting delete of resource" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestrvmane" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Delete succeeded, removing finalizer" name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined Delete action" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Starting delete of resource" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" azureName="asotestfmqpry" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestfmqpry resource status: Operation cannot be fulfilled on namespaceseventhubsauthorizationrules.eventhub.azure.com "asotestfmqpry": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotestfmqpry, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e6cc1635-804a-4466-82ca-a1cadd01f8e4, UID in object meta: " name="asotestfmqpry" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotesthhwdlq resource status: Operation cannot be fulfilled on namespaceseventhubsconsumergroups.eventhub.azure.com "asotesthhwdlq": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsconsumergroups/aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d/asotesthhwdlq, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5b5c2d6e-9b41-4c32-baa2-799e906d9066, UID in object meta: " name="asotesthhwdlq" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1api--cae2d" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestwqssoi resource status: Operation cannot be fulfilled on namespacesauthorizationrules.eventhub.azure.com "asotestwqssoi": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespacesauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestwqssoi, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 4dce7fea-b675-417c-95d0-58be6eb81452, UID in object meta: " name="asotestwqssoi" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesEventhubController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestrvmane resource status: Operation cannot be fulfilled on namespaceseventhubs.eventhub.azure.com "asotestrvmane": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubs/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestrvmane, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: eeced444-a77b-426d-b872-e6479b7a09f7, UID in object meta: " name="asotestrvmane" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Reconcile invoked" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsAuthorizationRule,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6741" generation=2 uid="9573e6c1-40a6-43e3-b81a-fc507c5f63ef" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"eeced444-a77b-426d-b872-e6479b7a09f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/authorizationRules/asotestgylboh"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Reconcile invoked" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" kind="&TypeMeta{Kind:NamespacesEventhubsConsumerGroup,APIVersion:eventhub.azure.com/v1api20211101storage,}" resourceVersion="6743" generation=2 uid="45a0d235-4ee2-4087-a8b0-ea73a3186bea" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"eventhub.azure.com/v1api20211101storage", Kind:"NamespacesEventhub", Name:"asotestrvmane", UID:"eeced444-a77b-426d-b872-e6479b7a09f7", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:49:03 +0000 UTC" deletionTimestamp="2023-09-08 21:49:05 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-lzksii/providers/Microsoft.EventHub/namespaces/asotestloljst/eventhubs/asotestrvmane/consumergroups/asotestmlxcqe"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:49:04 +0000 UTC\"]" owner="asotestrvmane, Group/Kind: eventhub.azure.com/NamespacesEventhub" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Determined Delete action" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Starting delete of resource" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestgylboh" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Delete succeeded, removing finalizer" name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Determined Delete action" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Starting delete of resource" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" azureName="asotestmlxcqe" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Delete succeeded, removing finalizer" name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesEventhubsAuthorizationRuleController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestgylboh resource status: Operation cannot be fulfilled on namespaceseventhubsauthorizationrules.eventhub.azure.com "asotestgylboh": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsauthorizationrules/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestgylboh, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 9573e6c1-40a6-43e3-b81a-fc507c5f63ef, UID in object meta: " name="asotestgylboh" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:05Z] NamespacesEventhubsConsumerGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestmlxcqe resource status: Operation cannot be fulfilled on namespaceseventhubsconsumergroups.eventhub.azure.com "asotestmlxcqe": StorageError: invalid object, Code: 4, Key: /registry/eventhub.azure.com/namespaceseventhubsconsumergroups/aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67/asotestmlxcqe, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 45a0d235-4ee2-4087-a8b0-ea73a3186bea, UID in object meta: " name="asotestmlxcqe" namespace="aso-test-samples-creationanddeletion-test-eventhub-v1beta-8ac67" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:05Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] === NAME Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:19Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:19Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:20Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:20Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:20Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:52Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:52Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:52Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:52Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:49:52Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:50:52Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:50:52Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:50:53Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:50:53Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:50:53Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:51:53Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:51:53Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:51:53Z] FleetController "msg"="Resource not created yet, will check again" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" requeueAfter="0s" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:51:53Z] FleetController "msg"="Didn't commit obj as there was no change" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:51:53Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:53Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="878" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.CreateOrUpdateByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericResource\",\"token\":{\"type\":\"body\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview\",\"state\":\"Creating\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 1, Severity = \"Info\", Reason = \"Reconciling\", Message = \"The resource is in the process of being reconciled by the operator\", LastTransitionTime = \"2023-09-08 21:48:45 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:53Z] FleetController "msg"="Determined CreateOrUpdate action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="MonitorCreateOrUpdate" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:54Z] FleetController "msg"="Resource successfully created/updated" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" resourceID="/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:54Z] FleetController "msg"="Got ARM status" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" status="{\"eTag\":\"\\\"1000079c-0000-4d00-0000-64fb97850000\\\"\",\"id\":\"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview\",\"location\":\"westus3\",\"name\":\"samplefleet2023315preview\",\"properties\":{\"hubProfile\":{\"dnsPrefix\":\"aso\",\"fqdn\":\"aso-zevct2mw.hcp.westus3.azmk8s.io\",\"kubernetesVersion\":\"1.25.11\"},\"provisioningState\":\"Succeeded\"},\"systemData\":{\"createdAt\":\"2023-09-08T21:48:46.1328039Z\",\"createdBy\":\"954d4203-089b-43a8-b725-0e8fd05d5ced\",\"createdByType\":\"Application\",\"lastModifiedAt\":\"2023-09-08T21:48:46.1328039Z\",\"lastModifiedBy\":\"954d4203-089b-43a8-b725-0e8fd05d5ced\",\"lastModifiedByType\":\"Application\"},\"type\":\"Microsoft.ContainerService/fleets\"}" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:54Z] FleetController "msg"="updated resource in etcd" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="938" generation=1 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp= finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:52:54 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:54Z] FleetController "msg"="Done with reconcile" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:false, RequeueAfter:0} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:55Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="939" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:48:42 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:55Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:55Z] ResourceGroupController "msg"="Starting delete of resource" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:57Z] ResourceGroupController "msg"="Successfully issued DELETE to Azure" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:57Z] ResourceGroupController "msg"="updated resource in etcd" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:52:57Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:12Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:12Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:12Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:12Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:12Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:12Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:27Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:27Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:27Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:28Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:28Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:28Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:43Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:43Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:43Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:43Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:43Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:43Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:58Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:58Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:58Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:59Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:59Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:53:59Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:14Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:14Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:14Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:14Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:14Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:14Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:29Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:29Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:29Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:29Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:29Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:29Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:44Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:45Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:45Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:45Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:45Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:54:45Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:00Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:00Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:00Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:00Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:00Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:00Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:15Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:15Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:15Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:16Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:16Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:16Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:31Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:31Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:31Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:31Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:31Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:31Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:46Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:46Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:46Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:47Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:47Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:55:47Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:02Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:02Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:02Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:02Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:02Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:02Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:17Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:17Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:17Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:18Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:18Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:18Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:33Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:33Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:33Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:33Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:33Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:33Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:48Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:48Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:48Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:48Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:48Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:56:48Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:03Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:03Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:03Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:04Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:04Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:04Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:19Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:19Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:19Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:19Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:19Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:19Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:34Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:34Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:34Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:34Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:34Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:34Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:49Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:49Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:49Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:50Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:50Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:57:50Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:05Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:05Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:05Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:05Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:05Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:05Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:20Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:20Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:20Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:21Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:21Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:21Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:36Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:36Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:36Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:36Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:36Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:36Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:51Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:51Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:51Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:51Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:51Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:58:51Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:06Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:06Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:06Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:07Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:07Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:07Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:22Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:22Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:22Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:22Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:22Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:22Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:37Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:37Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:37Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:38Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:38Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:38Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:53Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:53Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:53Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:53Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:53Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T21:59:53Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:08Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:08Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:08Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:08Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:08Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:08Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:23Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:23Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:23Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:24Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:24Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:24Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:39Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:39Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:39Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:39Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:39Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:39Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:54Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:54Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:54Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:55Z] ResourceGroupController "msg"="Found resource: continuing to wait for deletion..." name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:55Z] ResourceGroupController "msg"="Didn't commit obj as there was no change" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:00:55Z] ResourceGroupController "msg"="Done with reconcile" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" result=reconcile.Result{Requeue:true, RequeueAfter:15000000000} +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:10Z] ResourceGroupController "msg"="Reconcile invoked" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:ResourceGroup,APIVersion:resources.azure.com/v1api20200601storage,}" resourceVersion="944" generation=2 uid="a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5" ownerReferences=[]v1.OwnerReference(nil) creationTimestamp="2023-09-08 21:48:34 +0000 UTC" deletionTimestamp="2023-09-08 21:52:55 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/poller-resume-id":"GenericClient.DeleteByID", "serviceoperator.azure.com/poller-resume-token":"{\"type\":\"GenericDeleteResponse\",\"token\":{\"type\":\"loc\",\"pollURL\":\"https://management.azure.com/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01\",\"state\":\"InProgress\"}}", "serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve"} conditions="[Condition [Ready], Status = \"False\", ObservedGeneration = 2, Severity = \"Info\", Reason = \"Deleting\", Message = \"The resource is being deleted\", LastTransitionTime = \"2023-09-08 21:52:57 +0000 UTC\"]" owner= +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:10Z] ResourceGroupController "msg"="Determined Delete action" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" action="MonitorDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:10Z] ResourceGroupController "msg"="Continue monitoring deletion" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="asotest-rg-gxhtve" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:10Z] ResourceGroupController "msg"="Delete succeeded, removing finalizer" name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T22:01:10Z] ResourceGroupController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1407f/asotest-rg-gxhtve resource status: Operation cannot be fulfilled on resourcegroups.resources.azure.com "asotest-rg-gxhtve": StorageError: invalid object, Code: 4, Key: /registry/resources.azure.com/resourcegroups/aso-test-samples-creationanddeletion-test-containerservic-1407f/asotest-rg-gxhtve, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5, UID in object meta: " name="asotest-rg-gxhtve" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] kube_per_test_context.go:198: Deleting resources before test completes. Resources: [aso-test-samples-creationanddeletion-test-containerservic-1407f/asotest-rg-gxhtve aso-test-samples-creationanddeletion-test-containerservic-1407f/samplefleet2023315preview]... +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:12Z] FleetController "msg"="Reconcile invoked" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" kind="&TypeMeta{Kind:Fleet,APIVersion:containerservice.azure.com/v1api20230315previewstorage,}" resourceVersion="1068" generation=2 uid="49dfe97a-d533-4164-b76c-3374cb01ca4b" ownerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"resources.azure.com/v1api20200601storage", Kind:"ResourceGroup", Name:"asotest-rg-gxhtve", UID:"a2c2d0b9-fcdc-42c8-a377-f389ecd6a9b5", Controller:(*bool)(nil), BlockOwnerDeletion:(*bool)(nil)}} creationTimestamp="2023-09-08 21:48:44 +0000 UTC" deletionTimestamp="2023-09-08 22:01:11 +0000 UTC" finalizers=[]string{"serviceoperator.azure.com/finalizer"} annotations=map[string]string{"serviceoperator.azure.com/resource-id":"/subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview"} conditions="[Condition [Ready], Status = \"True\", ObservedGeneration = 1, Severity = \"\", Reason = \"Succeeded\", Message = \"\", LastTransitionTime = \"2023-09-08 21:52:54 +0000 UTC\"]" owner="asotest-rg-gxhtve, Group/Kind: resources.azure.com/ResourceGroup" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:12Z] FleetController "msg"="Determined Delete action" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" action="BeginDelete" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:12Z] FleetController "msg"="Starting delete of resource" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:12Z] FleetController "msg"="Successfully issued DELETE to Azure - resource was already gone" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" azureName="samplefleet2023315preview" +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:12Z] FleetController "msg"="Delete succeeded, removing finalizer" name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T22:01:12Z] FleetController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1407f/samplefleet2023315preview resource status: Operation cannot be fulfilled on fleets.containerservice.azure.com "samplefleet2023315preview": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/fleets/aso-test-samples-creationanddeletion-test-containerservic-1407f/samplefleet2023315preview, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 49dfe97a-d533-4164-b76c-3374cb01ca4b, UID in object meta: " name="samplefleet2023315preview" namespace="aso-test-samples-creationanddeletion-test-containerservic-1407f" +[controller:test-integration-envtest] kube_per_test_context.go:200: All resources deleted +[controller:test-integration-envtest] logr.go:278: I2023-09-08T22:01:17Z] "msg"="saving ARM client recorder" +[controller:test-integration-envtest] --- FAIL: Test_Samples_CreationAndDeletion (0.02s) +[controller:test-integration-envtest] --- FAIL: Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1api_CreationAndDeletion (63.85s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1api_CreationAndDeletion (140.58s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Signalrservice_v1api_CreationAndDeletion (140.95s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SignalRController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotestrhnmqz resource status: Operation cannot be fulfilled on signalrs.signalrservice.azure.com "asotestrhnmqz": StorageError: invalid object, Code: 4, Key: /registry/signalrservice.azure.com/signalrs/aso-test-samples-creationanddeletion-test-signalrservice--a2f8a/asotestrhnmqz, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 248acd88-1ff2-449d-adeb-60b9e702937b, UID in object meta: " name="asotestrhnmqz" namespace="aso-test-samples-creationanddeletion-test-signalrservice--a2f8a" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Web_v1beta_CreationAndDeletion (141.32s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:44Z] SiteController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-function resource status: Operation cannot be fulfilled on sites.web.azure.com "aso-sample-function": StorageError: invalid object, Code: 4, Key: /registry/web.azure.com/sites/aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6/aso-sample-function, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: fc3b6aa5-6c65-448c-bb4b-f0770bc7938b, UID in object meta: " name="aso-sample-function" namespace="aso-test-samples-creationanddeletion-test-web-v1beta-crea-dc4f6" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerservice_v1beta20210501_CreationAndDeletion (146.84s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:50Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-1670c/pool202105 resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool202105": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-1670c/pool202105, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e875bb48-c205-451c-a3e6-a2acf8a2b873, UID in object meta: " name="pool202105" namespace="aso-test-samples-creationanddeletion-test-containerservic-1670c" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Devices_v1api_CreationAndDeletion (6.02s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Eventgrid_v1beta_CreationAndDeletion (147.38s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Eventgrid_v1api_CreationAndDeletion (147.47s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20220120preview_CreationAndDeletion (5.68s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api_CreationAndDeletion (0.10s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1beta_CreationAndDeletion (153.19s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Mongodb_v1beta_CreationAndDeletion (12.68s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20210601_CreationAndDeletion (5.91s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1api20220120preview_CreationAndDeletion (6.04s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Sqldatabase_v1api_CreationAndDeletion (89.59s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:47:56Z] SqlDatabaseContainerThroughputSettingController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-mongo-throughput resource status: Operation cannot be fulfilled on sqldatabasecontainerthroughputsettings.documentdb.azure.com "sample-mongo-throughput": StorageError: invalid object, Code: 4, Key: /registry/documentdb.azure.com/sqldatabasecontainerthroughputsettings/aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40/sample-mongo-throughput, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: c9493028-641c-43de-9665-57f9db1fd07e, UID in object meta: " name="sample-mongo-throughput" namespace="aso-test-samples-creationanddeletion-test-sqldatabase-v1a-95b40" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbforpostgresql_v1beta20210601_CreationAndDeletion (6.41s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Mongodb_v1api_CreationAndDeletion (13.99s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Datafactory_v1api_CreationAndDeletion (2.74s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dataprotection_v1api_CreationAndDeletion (4.72s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1beta_CreationAndDeletion (5.09s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbformysql_v1beta_CreationAndDeletion (5.88s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbformariadb_v1api_CreationAndDeletion (5.16s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Dbformysql_v1api_CreationAndDeletion (6.41s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Compute_v1beta_CreationAndDeletion (7.61s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerregistry_v1api_CreationAndDeletion (30.42s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerregistry_v1beta_CreationAndDeletion (30.61s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerinstance_v1beta_CreationAndDeletion (29.65s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerinstance_v1api_CreationAndDeletion (28.06s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20210501_CreationAndDeletion (33.73s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Web_v1api_CreationAndDeletion (3.04s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230201_CreationAndDeletion (34.30s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:35Z] ManagedClustersAgentPoolController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-containerservic-5bf2e/pool202221 resource status: Operation cannot be fulfilled on managedclustersagentpools.containerservice.azure.com "pool202221": StorageError: invalid object, Code: 4, Key: /registry/containerservice.azure.com/managedclustersagentpools/aso-test-samples-creationanddeletion-test-containerservic-5bf2e/pool202221, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: e8a39990-3b83-4b8b-bcee-9fb46c4e3109, UID in object meta: " name="pool202221" namespace="aso-test-samples-creationanddeletion-test-containerservic-5bf2e" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Storage_v1beta_CreationAndDeletion (4.94s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:37Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestxveiap resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "asotestxveiap": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-storage-v1beta--2d278/asotestxveiap, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 1618b672-56b0-4bf7-8122-2de2dac848c6, UID in object meta: " name="asotestxveiap" namespace="aso-test-samples-creationanddeletion-test-storage-v1beta--2d278" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Synapse_v1api_CreationAndDeletion (5.74s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Storage_v1api20220901_CreationAndDeletion (5.64s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:38Z] StorageAccountsBlobServicesContainerController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestvmcyob resource status: Operation cannot be fulfilled on storageaccountsblobservicescontainers.storage.azure.com "asotestvmcyob": StorageError: invalid object, Code: 4, Key: /registry/storage.azure.com/storageaccountsblobservicescontainers/aso-test-samples-creationanddeletion-test-storage-v1api20-22250/asotestvmcyob, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5047a389-30c0-4cdf-a602-b9880d6c2dc1, UID in object meta: " name="asotestvmcyob" namespace="aso-test-samples-creationanddeletion-test-storage-v1api20-22250" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230202preview_CreationAndDeletion (39.31s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Managedidentity_v1api_CreationAndDeletion (3.47s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1beta20180901_CreationAndDeletion (3.16s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1api20180901_CreationAndDeletion (3.20s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Managedidentity_v1beta_CreationAndDeletion (3.74s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1api20180501_CreationAndDeletion (4.80s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1api20200601_CreationAndDeletion (5.48s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Batch_v1beta_CreationAndDeletion (2.34s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1beta20201101_CreationAndDeletion (11.04s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Cdn_v1api_CreationAndDeletion (3.64s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Cdn_v1beta_CreationAndDeletion (3.66s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:48:47Z] ProfilesEndpointController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestbnocne resource status: Operation cannot be fulfilled on profilesendpoints.cdn.azure.com "asotestbnocne": StorageError: invalid object, Code: 4, Key: /registry/cdn.azure.com/profilesendpoints/aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363/asotestbnocne, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 238d2d90-cf79-46a2-ad13-8374d5d70d5d, UID in object meta: " name="asotestbnocne" namespace="aso-test-samples-creationanddeletion-test-cdn-v1api-creat-4c363" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1api20201101_CreationAndDeletion (11.20s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Signalrservice_v1beta_CreationAndDeletion (5.62s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Keyvault_v1api_CreationAndDeletion (6.64s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Network_v1api20220701_CreationAndDeletion (16.38s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Storage_v1api20210401_CreationAndDeletion (7.62s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Compute_v1api_CreationAndDeletion (12.13s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Sql_v1api_CreationAndDeletion (13.64s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Keyvault_v1beta_CreationAndDeletion (4.22s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Authorization_v1beta_CreationAndDeletion (5.72s) +[controller:test-integration-envtest] test_logger.go:160: I2023-09-08T21:49:00Z] RoleAssignmentController "msg"="Failed to commit object to etcd" "err"="updating aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/aso-sample-contributor resource status: Operation cannot be fulfilled on roleassignments.authorization.azure.com "aso-sample-contributor": StorageError: invalid object, Code: 4, Key: /registry/authorization.azure.com/roleassignments/aso-test-samples-creationanddeletion-test-authorization-v-e6a5d/aso-sample-contributor, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 59507715-4fb6-488b-b646-873684e966fb, UID in object meta: " name="aso-sample-contributor" namespace="aso-test-samples-creationanddeletion-test-authorization-v-e6a5d" +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1beta_CreationAndDeletion (11.57s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20210101preview_CreationAndDeletion (7.91s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Servicebus_v1beta_CreationAndDeletion (6.95s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Batch_v1api_CreationAndDeletion (3.11s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Resources_v1beta_CreationAndDeletion (0.92s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Insights_v1api_CreationAndDeletion (3.90s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Insights_v1beta_CreationAndDeletion (2.08s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Machinelearningservices_v1api_CreationAndDeletion (9.05s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Resources_v1api_CreationAndDeletion (1.42s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Search_v1api_CreationAndDeletion (2.48s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Appconfiguration_v1beta_CreationAndDeletion (1.42s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20221001preview_CreationAndDeletion (3.36s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Operationalinsights_v1beta_CreationAndDeletion (1.35s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Authorization_v1api_CreationAndDeletion (2.83s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Servicebus_v1api20211101_CreationAndDeletion (3.37s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Eventhub_v1api_CreationAndDeletion (1.98s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Eventhub_v1beta_CreationAndDeletion (2.03s) +[controller:test-integration-envtest] --- PASS: Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion (798.75s) +[controller:test-integration-envtest] FAIL +[controller:test-integration-envtest] FAIL github.com/Azure/azure-service-operator/v2/internal/controllers 960.103s +[controller:test-integration-envtest] FAIL diff --git a/v2/api/containerservice/customizations/fleets_member_extension_types_gen.go b/v2/api/containerservice/customizations/fleets_member_extension_types_gen.go new file mode 100644 index 00000000000..9b65facaac0 --- /dev/null +++ b/v2/api/containerservice/customizations/fleets_member_extension_types_gen.go @@ -0,0 +1,20 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package customizations + +import ( + v20230315p "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315preview" + v20230315ps "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315previewstorage" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime" +) + +type FleetsMemberExtension struct { +} + +// GetExtendedResources Returns the KubernetesResource slice for Resource versions +func (extension *FleetsMemberExtension) GetExtendedResources() []genruntime.KubernetesResource { + return []genruntime.KubernetesResource{ + &v20230315p.FleetsMember{}, + &v20230315ps.FleetsMember{}} +} diff --git a/v2/api/containerservice/customizations/fleets_update_run_extension_types_gen.go b/v2/api/containerservice/customizations/fleets_update_run_extension_types_gen.go new file mode 100644 index 00000000000..9854219860d --- /dev/null +++ b/v2/api/containerservice/customizations/fleets_update_run_extension_types_gen.go @@ -0,0 +1,20 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package customizations + +import ( + v20230315p "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315preview" + v20230315ps "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315previewstorage" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime" +) + +type FleetsUpdateRunExtension struct { +} + +// GetExtendedResources Returns the KubernetesResource slice for Resource versions +func (extension *FleetsUpdateRunExtension) GetExtendedResources() []genruntime.KubernetesResource { + return []genruntime.KubernetesResource{ + &v20230315p.FleetsUpdateRun{}, + &v20230315ps.FleetsUpdateRun{}} +} diff --git a/v2/api/containerservice/customizations/structure.txt b/v2/api/containerservice/customizations/structure.txt index 55f2f9a253c..76952571248 100644 --- a/v2/api/containerservice/customizations/structure.txt +++ b/v2/api/containerservice/customizations/structure.txt @@ -1,6 +1,8 @@ // Code generated by azure-service-operator-codegen. DO NOT EDIT. github.com/Azure/azure-service-operator/v2/api/containerservice/customizations ├── FleetExtension: Object (0 properties) +├── FleetsMemberExtension: Object (0 properties) +├── FleetsUpdateRunExtension: Object (0 properties) ├── ManagedClusterExtension: Object (0 properties) ├── ManagedClustersAgentPoolExtension: Object (0 properties) └── TrustedAccessRoleBindingExtension: Object (0 properties) diff --git a/v2/api/containerservice/v1api20230315preview/fleet_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleet_types_gen.go index 70bc874c53c..3cba18e67aa 100644 --- a/v2/api/containerservice/v1api20230315preview/fleet_types_gen.go +++ b/v2/api/containerservice/v1api20230315preview/fleet_types_gen.go @@ -199,7 +199,7 @@ func (fleet *Fleet) ValidateUpdate(old runtime.Object) (admission.Warnings, erro // createValidations validates the creation of the resource func (fleet *Fleet) createValidations() []func() (admission.Warnings, error) { - return []func() (admission.Warnings, error){fleet.validateResourceReferences, fleet.validateOwnerReference} + return []func() (admission.Warnings, error){fleet.validateResourceReferences, fleet.validateOwnerReference, fleet.validateSecretDestinations} } // deleteValidations validates the deletion of the resource @@ -217,6 +217,9 @@ func (fleet *Fleet) updateValidations() []func(old runtime.Object) (admission.Wa func(old runtime.Object) (admission.Warnings, error) { return fleet.validateOwnerReference() }, + func(old runtime.Object) (admission.Warnings, error) { + return fleet.validateSecretDestinations() + }, } } @@ -234,6 +237,20 @@ func (fleet *Fleet) validateResourceReferences() (admission.Warnings, error) { return genruntime.ValidateResourceReferences(refs) } +// validateSecretDestinations validates there are no colliding genruntime.SecretDestination's +func (fleet *Fleet) validateSecretDestinations() (admission.Warnings, error) { + if fleet.Spec.OperatorSpec == nil { + return nil, nil + } + if fleet.Spec.OperatorSpec.Secrets == nil { + return nil, nil + } + toValidate := []*genruntime.SecretDestination{ + fleet.Spec.OperatorSpec.Secrets.UserCredentials, + } + return genruntime.ValidateSecretDestinations(toValidate) +} + // validateWriteOnceProperties validates all WriteOnce properties func (fleet *Fleet) validateWriteOnceProperties(old runtime.Object) (admission.Warnings, error) { oldObj, ok := old.(*Fleet) @@ -335,6 +352,10 @@ type Fleet_Spec struct { // Location: The geo-location where the resource lives Location *string `json:"location,omitempty"` + // OperatorSpec: The specification for configuring operator behavior. This field is interpreted by the operator and not + // passed directly to Azure + OperatorSpec *FleetOperatorSpec `json:"operatorSpec,omitempty"` + // +kubebuilder:validation:Required // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a @@ -421,6 +442,8 @@ func (fleet *Fleet_Spec) PopulateFromARM(owner genruntime.ArbitraryOwnerReferenc fleet.Location = &location } + // no assignment for property "OperatorSpec" + // Set property "Owner": fleet.Owner = &genruntime.KnownResourceReference{ Name: owner.Name, @@ -510,6 +533,18 @@ func (fleet *Fleet_Spec) AssignProperties_From_Fleet_Spec(source *v20230315ps.Fl // Location fleet.Location = genruntime.ClonePointerToString(source.Location) + // OperatorSpec + if source.OperatorSpec != nil { + var operatorSpec FleetOperatorSpec + err := operatorSpec.AssignProperties_From_FleetOperatorSpec(source.OperatorSpec) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_FleetOperatorSpec() to populate field OperatorSpec") + } + fleet.OperatorSpec = &operatorSpec + } else { + fleet.OperatorSpec = nil + } + // Owner if source.Owner != nil { owner := source.Owner.Copy() @@ -548,6 +583,18 @@ func (fleet *Fleet_Spec) AssignProperties_To_Fleet_Spec(destination *v20230315ps // Location destination.Location = genruntime.ClonePointerToString(fleet.Location) + // OperatorSpec + if fleet.OperatorSpec != nil { + var operatorSpec v20230315ps.FleetOperatorSpec + err := fleet.OperatorSpec.AssignProperties_To_FleetOperatorSpec(&operatorSpec) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_FleetOperatorSpec() to populate field OperatorSpec") + } + destination.OperatorSpec = &operatorSpec + } else { + destination.OperatorSpec = nil + } + // OriginalVersion destination.OriginalVersion = fleet.OriginalVersion() @@ -1105,6 +1152,59 @@ func (profile *FleetHubProfile_STATUS) AssignProperties_To_FleetHubProfile_STATU return nil } +// Details for configuring operator behavior. Fields in this struct are interpreted by the operator directly rather than being passed to Azure +type FleetOperatorSpec struct { + // Secrets: configures where to place Azure generated secrets. + Secrets *FleetOperatorSecrets `json:"secrets,omitempty"` +} + +// AssignProperties_From_FleetOperatorSpec populates our FleetOperatorSpec from the provided source FleetOperatorSpec +func (operator *FleetOperatorSpec) AssignProperties_From_FleetOperatorSpec(source *v20230315ps.FleetOperatorSpec) error { + + // Secrets + if source.Secrets != nil { + var secret FleetOperatorSecrets + err := secret.AssignProperties_From_FleetOperatorSecrets(source.Secrets) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_FleetOperatorSecrets() to populate field Secrets") + } + operator.Secrets = &secret + } else { + operator.Secrets = nil + } + + // No error + return nil +} + +// AssignProperties_To_FleetOperatorSpec populates the provided destination FleetOperatorSpec from our FleetOperatorSpec +func (operator *FleetOperatorSpec) AssignProperties_To_FleetOperatorSpec(destination *v20230315ps.FleetOperatorSpec) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Secrets + if operator.Secrets != nil { + var secret v20230315ps.FleetOperatorSecrets + err := operator.Secrets.AssignProperties_To_FleetOperatorSecrets(&secret) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_FleetOperatorSecrets() to populate field Secrets") + } + destination.Secrets = &secret + } else { + destination.Secrets = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + // The provisioning state of the last accepted operation. type FleetProvisioningState_STATUS string @@ -1271,6 +1371,51 @@ func (data *SystemData_STATUS) AssignProperties_To_SystemData_STATUS(destination return nil } +type FleetOperatorSecrets struct { + // UserCredentials: indicates where the UserCredentials secret should be placed. If omitted, the secret will not be + // retrieved from Azure. + UserCredentials *genruntime.SecretDestination `json:"userCredentials,omitempty"` +} + +// AssignProperties_From_FleetOperatorSecrets populates our FleetOperatorSecrets from the provided source FleetOperatorSecrets +func (secrets *FleetOperatorSecrets) AssignProperties_From_FleetOperatorSecrets(source *v20230315ps.FleetOperatorSecrets) error { + + // UserCredentials + if source.UserCredentials != nil { + userCredential := source.UserCredentials.Copy() + secrets.UserCredentials = &userCredential + } else { + secrets.UserCredentials = nil + } + + // No error + return nil +} + +// AssignProperties_To_FleetOperatorSecrets populates the provided destination FleetOperatorSecrets from our FleetOperatorSecrets +func (secrets *FleetOperatorSecrets) AssignProperties_To_FleetOperatorSecrets(destination *v20230315ps.FleetOperatorSecrets) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // UserCredentials + if secrets.UserCredentials != nil { + userCredential := secrets.UserCredentials.Copy() + destination.UserCredentials = &userCredential + } else { + destination.UserCredentials = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + func init() { SchemeBuilder.Register(&Fleet{}, &FleetList{}) } diff --git a/v2/api/containerservice/v1api20230315preview/fleet_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleet_types_gen_test.go index 6b77203d37b..e8a155d0b1e 100644 --- a/v2/api/containerservice/v1api20230315preview/fleet_types_gen_test.go +++ b/v2/api/containerservice/v1api20230315preview/fleet_types_gen_test.go @@ -280,6 +280,7 @@ func AddIndependentPropertyGeneratorsForFleet_Spec(gens map[string]gopter.Gen) { // AddRelatedPropertyGeneratorsForFleet_Spec is a factory method for creating gopter generators func AddRelatedPropertyGeneratorsForFleet_Spec(gens map[string]gopter.Gen) { gens["HubProfile"] = gen.PtrOf(FleetHubProfileGenerator()) + gens["OperatorSpec"] = gen.PtrOf(FleetOperatorSpecGenerator()) } func Test_Fleet_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { @@ -618,6 +619,108 @@ func AddIndependentPropertyGeneratorsForFleetHubProfile_STATUS(gens map[string]g gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) } +func Test_FleetOperatorSpec_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from FleetOperatorSpec to FleetOperatorSpec via AssignProperties_To_FleetOperatorSpec & AssignProperties_From_FleetOperatorSpec returns original", + prop.ForAll(RunPropertyAssignmentTestForFleetOperatorSpec, FleetOperatorSpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleetOperatorSpec tests if a specific instance of FleetOperatorSpec can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleetOperatorSpec(subject FleetOperatorSpec) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.FleetOperatorSpec + err := copied.AssignProperties_To_FleetOperatorSpec(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual FleetOperatorSpec + err = actual.AssignProperties_From_FleetOperatorSpec(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_FleetOperatorSpec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetOperatorSpec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetOperatorSpec, FleetOperatorSpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetOperatorSpec runs a test to see if a specific instance of FleetOperatorSpec round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetOperatorSpec(subject FleetOperatorSpec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetOperatorSpec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetOperatorSpec instances for property testing - lazily instantiated by FleetOperatorSpecGenerator() +var fleetOperatorSpecGenerator gopter.Gen + +// FleetOperatorSpecGenerator returns a generator of FleetOperatorSpec instances for property testing. +func FleetOperatorSpecGenerator() gopter.Gen { + if fleetOperatorSpecGenerator != nil { + return fleetOperatorSpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForFleetOperatorSpec(generators) + fleetOperatorSpecGenerator = gen.Struct(reflect.TypeOf(FleetOperatorSpec{}), generators) + + return fleetOperatorSpecGenerator +} + +// AddRelatedPropertyGeneratorsForFleetOperatorSpec is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleetOperatorSpec(gens map[string]gopter.Gen) { + gens["Secrets"] = gen.PtrOf(FleetOperatorSecretsGenerator()) +} + func Test_SystemData_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { t.Parallel() parameters := gopter.DefaultTestParameters() @@ -732,3 +835,100 @@ func AddIndependentPropertyGeneratorsForSystemData_STATUS(gens map[string]gopter SystemData_LastModifiedByType_STATUS_ManagedIdentity, SystemData_LastModifiedByType_STATUS_User)) } + +func Test_FleetOperatorSecrets_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from FleetOperatorSecrets to FleetOperatorSecrets via AssignProperties_To_FleetOperatorSecrets & AssignProperties_From_FleetOperatorSecrets returns original", + prop.ForAll(RunPropertyAssignmentTestForFleetOperatorSecrets, FleetOperatorSecretsGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleetOperatorSecrets tests if a specific instance of FleetOperatorSecrets can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleetOperatorSecrets(subject FleetOperatorSecrets) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.FleetOperatorSecrets + err := copied.AssignProperties_To_FleetOperatorSecrets(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual FleetOperatorSecrets + err = actual.AssignProperties_From_FleetOperatorSecrets(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_FleetOperatorSecrets_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetOperatorSecrets via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetOperatorSecrets, FleetOperatorSecretsGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetOperatorSecrets runs a test to see if a specific instance of FleetOperatorSecrets round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetOperatorSecrets(subject FleetOperatorSecrets) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetOperatorSecrets + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetOperatorSecrets instances for property testing - lazily instantiated by +// FleetOperatorSecretsGenerator() +var fleetOperatorSecretsGenerator gopter.Gen + +// FleetOperatorSecretsGenerator returns a generator of FleetOperatorSecrets instances for property testing. +func FleetOperatorSecretsGenerator() gopter.Gen { + if fleetOperatorSecretsGenerator != nil { + return fleetOperatorSecretsGenerator + } + + generators := make(map[string]gopter.Gen) + fleetOperatorSecretsGenerator = gen.Struct(reflect.TypeOf(FleetOperatorSecrets{}), generators) + + return fleetOperatorSecretsGenerator +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_member_spec_arm_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleets_member_spec_arm_types_gen.go new file mode 100644 index 00000000000..7973b97935b --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_member_spec_arm_types_gen.go @@ -0,0 +1,38 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import "github.com/Azure/azure-service-operator/v2/pkg/genruntime" + +type Fleets_Member_Spec_ARM struct { + Name string `json:"name,omitempty"` + + // Properties: The resource-specific properties for this resource. + Properties *FleetMemberProperties_ARM `json:"properties,omitempty"` +} + +var _ genruntime.ARMResourceSpec = &Fleets_Member_Spec_ARM{} + +// GetAPIVersion returns the ARM API version of the resource. This is always "2023-03-15-preview" +func (member Fleets_Member_Spec_ARM) GetAPIVersion() string { + return string(APIVersion_Value) +} + +// GetName returns the Name of the resource +func (member *Fleets_Member_Spec_ARM) GetName() string { + return member.Name +} + +// GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerService/fleets/members" +func (member *Fleets_Member_Spec_ARM) GetType() string { + return "Microsoft.ContainerService/fleets/members" +} + +// A member of the Fleet. It contains a reference to an existing Kubernetes cluster on Azure. +type FleetMemberProperties_ARM struct { + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + + // Group: The group this member belongs to for multi-cluster update management. + Group *string `json:"group,omitempty"` +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_member_spec_arm_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleets_member_spec_arm_types_gen_test.go new file mode 100644 index 00000000000..40d7a48d1bd --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_member_spec_arm_types_gen_test.go @@ -0,0 +1,155 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "encoding/json" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_Fleets_Member_Spec_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_Member_Spec_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_Member_Spec_ARM, Fleets_Member_Spec_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_Member_Spec_ARM runs a test to see if a specific instance of Fleets_Member_Spec_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_Member_Spec_ARM(subject Fleets_Member_Spec_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_Member_Spec_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_Member_Spec_ARM instances for property testing - lazily instantiated by +// Fleets_Member_Spec_ARMGenerator() +var fleets_Member_Spec_ARMGenerator gopter.Gen + +// Fleets_Member_Spec_ARMGenerator returns a generator of Fleets_Member_Spec_ARM instances for property testing. +// We first initialize fleets_Member_Spec_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_Member_Spec_ARMGenerator() gopter.Gen { + if fleets_Member_Spec_ARMGenerator != nil { + return fleets_Member_Spec_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_Spec_ARM(generators) + fleets_Member_Spec_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_Spec_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_Spec_ARM(generators) + AddRelatedPropertyGeneratorsForFleets_Member_Spec_ARM(generators) + fleets_Member_Spec_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_Spec_ARM{}), generators) + + return fleets_Member_Spec_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_Member_Spec_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_Member_Spec_ARM(gens map[string]gopter.Gen) { + gens["Name"] = gen.AlphaString() +} + +// AddRelatedPropertyGeneratorsForFleets_Member_Spec_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_Member_Spec_ARM(gens map[string]gopter.Gen) { + gens["Properties"] = gen.PtrOf(FleetMemberProperties_ARMGenerator()) +} + +func Test_FleetMemberProperties_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetMemberProperties_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetMemberProperties_ARM, FleetMemberProperties_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetMemberProperties_ARM runs a test to see if a specific instance of FleetMemberProperties_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetMemberProperties_ARM(subject FleetMemberProperties_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetMemberProperties_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetMemberProperties_ARM instances for property testing - lazily instantiated by +// FleetMemberProperties_ARMGenerator() +var fleetMemberProperties_ARMGenerator gopter.Gen + +// FleetMemberProperties_ARMGenerator returns a generator of FleetMemberProperties_ARM instances for property testing. +func FleetMemberProperties_ARMGenerator() gopter.Gen { + if fleetMemberProperties_ARMGenerator != nil { + return fleetMemberProperties_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleetMemberProperties_ARM(generators) + fleetMemberProperties_ARMGenerator = gen.Struct(reflect.TypeOf(FleetMemberProperties_ARM{}), generators) + + return fleetMemberProperties_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForFleetMemberProperties_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleetMemberProperties_ARM(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["Group"] = gen.PtrOf(gen.AlphaString()) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_member_status_arm_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleets_member_status_arm_types_gen.go new file mode 100644 index 00000000000..e1b09be9d0f --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_member_status_arm_types_gen.go @@ -0,0 +1,41 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +type Fleets_Member_STATUS_ARM struct { + // ETag: If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. + // Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in + // the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header + // fields. + ETag *string `json:"eTag,omitempty"` + + // Id: Fully qualified resource ID for the resource. Ex - + // /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + Id *string `json:"id,omitempty"` + + // Name: The name of the resource + Name *string `json:"name,omitempty"` + + // Properties: The resource-specific properties for this resource. + Properties *FleetMemberProperties_STATUS_ARM `json:"properties,omitempty"` + + // SystemData: Azure Resource Manager metadata containing createdBy and modifiedBy information. + SystemData *SystemData_STATUS_ARM `json:"systemData,omitempty"` + + // Type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + Type *string `json:"type,omitempty"` +} + +// A member of the Fleet. It contains a reference to an existing Kubernetes cluster on Azure. +type FleetMemberProperties_STATUS_ARM struct { + // ClusterResourceId: The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. e.g.: + // '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'. + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + + // Group: The group this member belongs to for multi-cluster update management. + Group *string `json:"group,omitempty"` + + // ProvisioningState: The status of the last operation. + ProvisioningState *FleetMemberProvisioningState_STATUS `json:"provisioningState,omitempty"` +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_member_status_arm_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleets_member_status_arm_types_gen_test.go new file mode 100644 index 00000000000..e23695d3a24 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_member_status_arm_types_gen_test.go @@ -0,0 +1,166 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "encoding/json" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_Fleets_Member_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_Member_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_Member_STATUS_ARM, Fleets_Member_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_Member_STATUS_ARM runs a test to see if a specific instance of Fleets_Member_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_Member_STATUS_ARM(subject Fleets_Member_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_Member_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_Member_STATUS_ARM instances for property testing - lazily instantiated by +// Fleets_Member_STATUS_ARMGenerator() +var fleets_Member_STATUS_ARMGenerator gopter.Gen + +// Fleets_Member_STATUS_ARMGenerator returns a generator of Fleets_Member_STATUS_ARM instances for property testing. +// We first initialize fleets_Member_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_Member_STATUS_ARMGenerator() gopter.Gen { + if fleets_Member_STATUS_ARMGenerator != nil { + return fleets_Member_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_STATUS_ARM(generators) + fleets_Member_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForFleets_Member_STATUS_ARM(generators) + fleets_Member_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_STATUS_ARM{}), generators) + + return fleets_Member_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_Member_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_Member_STATUS_ARM(gens map[string]gopter.Gen) { + gens["ETag"] = gen.PtrOf(gen.AlphaString()) + gens["Id"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForFleets_Member_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_Member_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Properties"] = gen.PtrOf(FleetMemberProperties_STATUS_ARMGenerator()) + gens["SystemData"] = gen.PtrOf(SystemData_STATUS_ARMGenerator()) +} + +func Test_FleetMemberProperties_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetMemberProperties_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetMemberProperties_STATUS_ARM, FleetMemberProperties_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetMemberProperties_STATUS_ARM runs a test to see if a specific instance of FleetMemberProperties_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetMemberProperties_STATUS_ARM(subject FleetMemberProperties_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetMemberProperties_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetMemberProperties_STATUS_ARM instances for property testing - lazily instantiated by +// FleetMemberProperties_STATUS_ARMGenerator() +var fleetMemberProperties_STATUS_ARMGenerator gopter.Gen + +// FleetMemberProperties_STATUS_ARMGenerator returns a generator of FleetMemberProperties_STATUS_ARM instances for property testing. +func FleetMemberProperties_STATUS_ARMGenerator() gopter.Gen { + if fleetMemberProperties_STATUS_ARMGenerator != nil { + return fleetMemberProperties_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleetMemberProperties_STATUS_ARM(generators) + fleetMemberProperties_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(FleetMemberProperties_STATUS_ARM{}), generators) + + return fleetMemberProperties_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForFleetMemberProperties_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleetMemberProperties_STATUS_ARM(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["Group"] = gen.PtrOf(gen.AlphaString()) + gens["ProvisioningState"] = gen.PtrOf(gen.OneConstOf( + FleetMemberProvisioningState_STATUS_Canceled, + FleetMemberProvisioningState_STATUS_Failed, + FleetMemberProvisioningState_STATUS_Joining, + FleetMemberProvisioningState_STATUS_Leaving, + FleetMemberProvisioningState_STATUS_Succeeded, + FleetMemberProvisioningState_STATUS_Updating)) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_member_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleets_member_types_gen.go new file mode 100644 index 00000000000..b2c822ff572 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_member_types_gen.go @@ -0,0 +1,858 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "fmt" + v20230315ps "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315previewstorage" + "github.com/Azure/azure-service-operator/v2/internal/reflecthelpers" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions" + "github.com/pkg/errors" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/runtime/schema" + "sigs.k8s.io/controller-runtime/pkg/conversion" + "sigs.k8s.io/controller-runtime/pkg/webhook/admission" +) + +// +kubebuilder:object:root=true +// +kubebuilder:subresource:status +// +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +// +kubebuilder:printcolumn:name="Severity",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].severity" +// +kubebuilder:printcolumn:name="Reason",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].reason" +// +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].message" +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/members/{fleetMemberName} +type FleetsMember struct { + metav1.TypeMeta `json:",inline"` + metav1.ObjectMeta `json:"metadata,omitempty"` + Spec Fleets_Member_Spec `json:"spec,omitempty"` + Status Fleets_Member_STATUS `json:"status,omitempty"` +} + +var _ conditions.Conditioner = &FleetsMember{} + +// GetConditions returns the conditions of the resource +func (member *FleetsMember) GetConditions() conditions.Conditions { + return member.Status.Conditions +} + +// SetConditions sets the conditions on the resource status +func (member *FleetsMember) SetConditions(conditions conditions.Conditions) { + member.Status.Conditions = conditions +} + +var _ conversion.Convertible = &FleetsMember{} + +// ConvertFrom populates our FleetsMember from the provided hub FleetsMember +func (member *FleetsMember) ConvertFrom(hub conversion.Hub) error { + source, ok := hub.(*v20230315ps.FleetsMember) + if !ok { + return fmt.Errorf("expected containerservice/v1api20230315previewstorage/FleetsMember but received %T instead", hub) + } + + return member.AssignProperties_From_FleetsMember(source) +} + +// ConvertTo populates the provided hub FleetsMember from our FleetsMember +func (member *FleetsMember) ConvertTo(hub conversion.Hub) error { + destination, ok := hub.(*v20230315ps.FleetsMember) + if !ok { + return fmt.Errorf("expected containerservice/v1api20230315previewstorage/FleetsMember but received %T instead", hub) + } + + return member.AssignProperties_To_FleetsMember(destination) +} + +// +kubebuilder:webhook:path=/mutate-containerservice-azure-com-v1api20230315preview-fleetsmember,mutating=true,sideEffects=None,matchPolicy=Exact,failurePolicy=fail,groups=containerservice.azure.com,resources=fleetsmembers,verbs=create;update,versions=v1api20230315preview,name=default.v1api20230315preview.fleetsmembers.containerservice.azure.com,admissionReviewVersions=v1 + +var _ admission.Defaulter = &FleetsMember{} + +// Default applies defaults to the FleetsMember resource +func (member *FleetsMember) Default() { + member.defaultImpl() + var temp any = member + if runtimeDefaulter, ok := temp.(genruntime.Defaulter); ok { + runtimeDefaulter.CustomDefault() + } +} + +// defaultAzureName defaults the Azure name of the resource to the Kubernetes name +func (member *FleetsMember) defaultAzureName() { + if member.Spec.AzureName == "" { + member.Spec.AzureName = member.Name + } +} + +// defaultImpl applies the code generated defaults to the FleetsMember resource +func (member *FleetsMember) defaultImpl() { member.defaultAzureName() } + +var _ genruntime.ImportableResource = &FleetsMember{} + +// InitializeSpec initializes the spec for this resource from the given status +func (member *FleetsMember) InitializeSpec(status genruntime.ConvertibleStatus) error { + if s, ok := status.(*Fleets_Member_STATUS); ok { + return member.Spec.Initialize_From_Fleets_Member_STATUS(s) + } + + return fmt.Errorf("expected Status of type Fleets_Member_STATUS but received %T instead", status) +} + +var _ genruntime.KubernetesResource = &FleetsMember{} + +// AzureName returns the Azure name of the resource +func (member *FleetsMember) AzureName() string { + return member.Spec.AzureName +} + +// GetAPIVersion returns the ARM API version of the resource. This is always "2023-03-15-preview" +func (member FleetsMember) GetAPIVersion() string { + return string(APIVersion_Value) +} + +// GetResourceScope returns the scope of the resource +func (member *FleetsMember) GetResourceScope() genruntime.ResourceScope { + return genruntime.ResourceScopeResourceGroup +} + +// GetSpec returns the specification of this resource +func (member *FleetsMember) GetSpec() genruntime.ConvertibleSpec { + return &member.Spec +} + +// GetStatus returns the status of this resource +func (member *FleetsMember) GetStatus() genruntime.ConvertibleStatus { + return &member.Status +} + +// GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerService/fleets/members" +func (member *FleetsMember) GetType() string { + return "Microsoft.ContainerService/fleets/members" +} + +// NewEmptyStatus returns a new empty (blank) status +func (member *FleetsMember) NewEmptyStatus() genruntime.ConvertibleStatus { + return &Fleets_Member_STATUS{} +} + +// Owner returns the ResourceReference of the owner +func (member *FleetsMember) Owner() *genruntime.ResourceReference { + group, kind := genruntime.LookupOwnerGroupKind(member.Spec) + return member.Spec.Owner.AsResourceReference(group, kind) +} + +// SetStatus sets the status of this resource +func (member *FleetsMember) SetStatus(status genruntime.ConvertibleStatus) error { + // If we have exactly the right type of status, assign it + if st, ok := status.(*Fleets_Member_STATUS); ok { + member.Status = *st + return nil + } + + // Convert status to required version + var st Fleets_Member_STATUS + err := status.ConvertStatusTo(&st) + if err != nil { + return errors.Wrap(err, "failed to convert status") + } + + member.Status = st + return nil +} + +// +kubebuilder:webhook:path=/validate-containerservice-azure-com-v1api20230315preview-fleetsmember,mutating=false,sideEffects=None,matchPolicy=Exact,failurePolicy=fail,groups=containerservice.azure.com,resources=fleetsmembers,verbs=create;update,versions=v1api20230315preview,name=validate.v1api20230315preview.fleetsmembers.containerservice.azure.com,admissionReviewVersions=v1 + +var _ admission.Validator = &FleetsMember{} + +// ValidateCreate validates the creation of the resource +func (member *FleetsMember) ValidateCreate() (admission.Warnings, error) { + validations := member.createValidations() + var temp any = member + if runtimeValidator, ok := temp.(genruntime.Validator); ok { + validations = append(validations, runtimeValidator.CreateValidations()...) + } + return genruntime.ValidateCreate(validations) +} + +// ValidateDelete validates the deletion of the resource +func (member *FleetsMember) ValidateDelete() (admission.Warnings, error) { + validations := member.deleteValidations() + var temp any = member + if runtimeValidator, ok := temp.(genruntime.Validator); ok { + validations = append(validations, runtimeValidator.DeleteValidations()...) + } + return genruntime.ValidateDelete(validations) +} + +// ValidateUpdate validates an update of the resource +func (member *FleetsMember) ValidateUpdate(old runtime.Object) (admission.Warnings, error) { + validations := member.updateValidations() + var temp any = member + if runtimeValidator, ok := temp.(genruntime.Validator); ok { + validations = append(validations, runtimeValidator.UpdateValidations()...) + } + return genruntime.ValidateUpdate(old, validations) +} + +// createValidations validates the creation of the resource +func (member *FleetsMember) createValidations() []func() (admission.Warnings, error) { + return []func() (admission.Warnings, error){member.validateResourceReferences, member.validateOwnerReference} +} + +// deleteValidations validates the deletion of the resource +func (member *FleetsMember) deleteValidations() []func() (admission.Warnings, error) { + return nil +} + +// updateValidations validates the update of the resource +func (member *FleetsMember) updateValidations() []func(old runtime.Object) (admission.Warnings, error) { + return []func(old runtime.Object) (admission.Warnings, error){ + func(old runtime.Object) (admission.Warnings, error) { + return member.validateResourceReferences() + }, + member.validateWriteOnceProperties, + func(old runtime.Object) (admission.Warnings, error) { + return member.validateOwnerReference() + }, + } +} + +// validateOwnerReference validates the owner field +func (member *FleetsMember) validateOwnerReference() (admission.Warnings, error) { + return genruntime.ValidateOwner(member) +} + +// validateResourceReferences validates all resource references +func (member *FleetsMember) validateResourceReferences() (admission.Warnings, error) { + refs, err := reflecthelpers.FindResourceReferences(&member.Spec) + if err != nil { + return nil, err + } + return genruntime.ValidateResourceReferences(refs) +} + +// validateWriteOnceProperties validates all WriteOnce properties +func (member *FleetsMember) validateWriteOnceProperties(old runtime.Object) (admission.Warnings, error) { + oldObj, ok := old.(*FleetsMember) + if !ok { + return nil, nil + } + + return genruntime.ValidateWriteOnceProperties(oldObj, member) +} + +// AssignProperties_From_FleetsMember populates our FleetsMember from the provided source FleetsMember +func (member *FleetsMember) AssignProperties_From_FleetsMember(source *v20230315ps.FleetsMember) error { + + // ObjectMeta + member.ObjectMeta = *source.ObjectMeta.DeepCopy() + + // Spec + var spec Fleets_Member_Spec + err := spec.AssignProperties_From_Fleets_Member_Spec(&source.Spec) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_Fleets_Member_Spec() to populate field Spec") + } + member.Spec = spec + + // Status + var status Fleets_Member_STATUS + err = status.AssignProperties_From_Fleets_Member_STATUS(&source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_Fleets_Member_STATUS() to populate field Status") + } + member.Status = status + + // No error + return nil +} + +// AssignProperties_To_FleetsMember populates the provided destination FleetsMember from our FleetsMember +func (member *FleetsMember) AssignProperties_To_FleetsMember(destination *v20230315ps.FleetsMember) error { + + // ObjectMeta + destination.ObjectMeta = *member.ObjectMeta.DeepCopy() + + // Spec + var spec v20230315ps.Fleets_Member_Spec + err := member.Spec.AssignProperties_To_Fleets_Member_Spec(&spec) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_Fleets_Member_Spec() to populate field Spec") + } + destination.Spec = spec + + // Status + var status v20230315ps.Fleets_Member_STATUS + err = member.Status.AssignProperties_To_Fleets_Member_STATUS(&status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_Fleets_Member_STATUS() to populate field Status") + } + destination.Status = status + + // No error + return nil +} + +// OriginalGVK returns a GroupValueKind for the original API version used to create the resource +func (member *FleetsMember) OriginalGVK() *schema.GroupVersionKind { + return &schema.GroupVersionKind{ + Group: GroupVersion.Group, + Version: member.Spec.OriginalVersion(), + Kind: "FleetsMember", + } +} + +// +kubebuilder:object:root=true +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/members/{fleetMemberName} +type FleetsMemberList struct { + metav1.TypeMeta `json:",inline"` + metav1.ListMeta `json:"metadata,omitempty"` + Items []FleetsMember `json:"items"` +} + +type Fleets_Member_Spec struct { + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it + // doesn't have to be. + AzureName string `json:"azureName,omitempty"` + + // +kubebuilder:validation:Required + // ClusterResourceReference: The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. + // e.g.: + // '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'. + ClusterResourceReference *genruntime.ResourceReference `armReference:"ClusterResourceId" json:"clusterResourceReference,omitempty"` + + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // Group: The group this member belongs to for multi-cluster update management. + Group *string `json:"group,omitempty"` + + // +kubebuilder:validation:Required + // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also + // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a + // reference to a containerservice.azure.com/Fleet resource + Owner *genruntime.KnownResourceReference `group:"containerservice.azure.com" json:"owner,omitempty" kind:"Fleet"` +} + +var _ genruntime.ARMTransformer = &Fleets_Member_Spec{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (member *Fleets_Member_Spec) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if member == nil { + return nil, nil + } + result := &Fleets_Member_Spec_ARM{} + + // Set property "Name": + result.Name = resolved.Name + + // Set property "Properties": + if member.ClusterResourceReference != nil || member.Group != nil { + result.Properties = &FleetMemberProperties_ARM{} + } + if member.ClusterResourceReference != nil { + clusterResourceIdARMID, err := resolved.ResolvedReferences.Lookup(*member.ClusterResourceReference) + if err != nil { + return nil, err + } + clusterResourceId := clusterResourceIdARMID + result.Properties.ClusterResourceId = &clusterResourceId + } + if member.Group != nil { + group := *member.Group + result.Properties.Group = &group + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (member *Fleets_Member_Spec) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &Fleets_Member_Spec_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (member *Fleets_Member_Spec) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(Fleets_Member_Spec_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected Fleets_Member_Spec_ARM, got %T", armInput) + } + + // Set property "AzureName": + member.SetAzureName(genruntime.ExtractKubernetesResourceNameFromARMName(typedInput.Name)) + + // no assignment for property "ClusterResourceReference" + + // Set property "Group": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.Group != nil { + group := *typedInput.Properties.Group + member.Group = &group + } + } + + // Set property "Owner": + member.Owner = &genruntime.KnownResourceReference{ + Name: owner.Name, + ARMID: owner.ARMID, + } + + // No error + return nil +} + +var _ genruntime.ConvertibleSpec = &Fleets_Member_Spec{} + +// ConvertSpecFrom populates our Fleets_Member_Spec from the provided source +func (member *Fleets_Member_Spec) ConvertSpecFrom(source genruntime.ConvertibleSpec) error { + src, ok := source.(*v20230315ps.Fleets_Member_Spec) + if ok { + // Populate our instance from source + return member.AssignProperties_From_Fleets_Member_Spec(src) + } + + // Convert to an intermediate form + src = &v20230315ps.Fleets_Member_Spec{} + err := src.ConvertSpecFrom(source) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertSpecFrom()") + } + + // Update our instance from src + err = member.AssignProperties_From_Fleets_Member_Spec(src) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertSpecFrom()") + } + + return nil +} + +// ConvertSpecTo populates the provided destination from our Fleets_Member_Spec +func (member *Fleets_Member_Spec) ConvertSpecTo(destination genruntime.ConvertibleSpec) error { + dst, ok := destination.(*v20230315ps.Fleets_Member_Spec) + if ok { + // Populate destination from our instance + return member.AssignProperties_To_Fleets_Member_Spec(dst) + } + + // Convert to an intermediate form + dst = &v20230315ps.Fleets_Member_Spec{} + err := member.AssignProperties_To_Fleets_Member_Spec(dst) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertSpecTo()") + } + + // Update dst from our instance + err = dst.ConvertSpecTo(destination) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertSpecTo()") + } + + return nil +} + +// AssignProperties_From_Fleets_Member_Spec populates our Fleets_Member_Spec from the provided source Fleets_Member_Spec +func (member *Fleets_Member_Spec) AssignProperties_From_Fleets_Member_Spec(source *v20230315ps.Fleets_Member_Spec) error { + + // AzureName + member.AzureName = source.AzureName + + // ClusterResourceReference + if source.ClusterResourceReference != nil { + clusterResourceReference := source.ClusterResourceReference.Copy() + member.ClusterResourceReference = &clusterResourceReference + } else { + member.ClusterResourceReference = nil + } + + // Group + if source.Group != nil { + group := *source.Group + member.Group = &group + } else { + member.Group = nil + } + + // Owner + if source.Owner != nil { + owner := source.Owner.Copy() + member.Owner = &owner + } else { + member.Owner = nil + } + + // No error + return nil +} + +// AssignProperties_To_Fleets_Member_Spec populates the provided destination Fleets_Member_Spec from our Fleets_Member_Spec +func (member *Fleets_Member_Spec) AssignProperties_To_Fleets_Member_Spec(destination *v20230315ps.Fleets_Member_Spec) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AzureName + destination.AzureName = member.AzureName + + // ClusterResourceReference + if member.ClusterResourceReference != nil { + clusterResourceReference := member.ClusterResourceReference.Copy() + destination.ClusterResourceReference = &clusterResourceReference + } else { + destination.ClusterResourceReference = nil + } + + // Group + if member.Group != nil { + group := *member.Group + destination.Group = &group + } else { + destination.Group = nil + } + + // OriginalVersion + destination.OriginalVersion = member.OriginalVersion() + + // Owner + if member.Owner != nil { + owner := member.Owner.Copy() + destination.Owner = &owner + } else { + destination.Owner = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_Fleets_Member_STATUS populates our Fleets_Member_Spec from the provided source Fleets_Member_STATUS +func (member *Fleets_Member_Spec) Initialize_From_Fleets_Member_STATUS(source *Fleets_Member_STATUS) error { + + // ClusterResourceReference + if source.ClusterResourceId != nil { + clusterResourceReference := genruntime.CreateResourceReferenceFromARMID(*source.ClusterResourceId) + member.ClusterResourceReference = &clusterResourceReference + } else { + member.ClusterResourceReference = nil + } + + // Group + if source.Group != nil { + group := *source.Group + member.Group = &group + } else { + member.Group = nil + } + + // No error + return nil +} + +// OriginalVersion returns the original API version used to create the resource. +func (member *Fleets_Member_Spec) OriginalVersion() string { + return GroupVersion.Version +} + +// SetAzureName sets the Azure name of the resource +func (member *Fleets_Member_Spec) SetAzureName(azureName string) { member.AzureName = azureName } + +type Fleets_Member_STATUS struct { + // ClusterResourceId: The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. e.g.: + // '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'. + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + + // Conditions: The observed state of the resource + Conditions []conditions.Condition `json:"conditions,omitempty"` + + // ETag: If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. + // Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in + // the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header + // fields. + ETag *string `json:"eTag,omitempty"` + + // Group: The group this member belongs to for multi-cluster update management. + Group *string `json:"group,omitempty"` + + // Id: Fully qualified resource ID for the resource. Ex - + // /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + Id *string `json:"id,omitempty"` + + // Name: The name of the resource + Name *string `json:"name,omitempty"` + + // ProvisioningState: The status of the last operation. + ProvisioningState *FleetMemberProvisioningState_STATUS `json:"provisioningState,omitempty"` + + // SystemData: Azure Resource Manager metadata containing createdBy and modifiedBy information. + SystemData *SystemData_STATUS `json:"systemData,omitempty"` + + // Type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + Type *string `json:"type,omitempty"` +} + +var _ genruntime.ConvertibleStatus = &Fleets_Member_STATUS{} + +// ConvertStatusFrom populates our Fleets_Member_STATUS from the provided source +func (member *Fleets_Member_STATUS) ConvertStatusFrom(source genruntime.ConvertibleStatus) error { + src, ok := source.(*v20230315ps.Fleets_Member_STATUS) + if ok { + // Populate our instance from source + return member.AssignProperties_From_Fleets_Member_STATUS(src) + } + + // Convert to an intermediate form + src = &v20230315ps.Fleets_Member_STATUS{} + err := src.ConvertStatusFrom(source) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertStatusFrom()") + } + + // Update our instance from src + err = member.AssignProperties_From_Fleets_Member_STATUS(src) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertStatusFrom()") + } + + return nil +} + +// ConvertStatusTo populates the provided destination from our Fleets_Member_STATUS +func (member *Fleets_Member_STATUS) ConvertStatusTo(destination genruntime.ConvertibleStatus) error { + dst, ok := destination.(*v20230315ps.Fleets_Member_STATUS) + if ok { + // Populate destination from our instance + return member.AssignProperties_To_Fleets_Member_STATUS(dst) + } + + // Convert to an intermediate form + dst = &v20230315ps.Fleets_Member_STATUS{} + err := member.AssignProperties_To_Fleets_Member_STATUS(dst) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertStatusTo()") + } + + // Update dst from our instance + err = dst.ConvertStatusTo(destination) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertStatusTo()") + } + + return nil +} + +var _ genruntime.FromARMConverter = &Fleets_Member_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (member *Fleets_Member_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &Fleets_Member_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (member *Fleets_Member_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(Fleets_Member_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected Fleets_Member_STATUS_ARM, got %T", armInput) + } + + // Set property "ClusterResourceId": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.ClusterResourceId != nil { + clusterResourceId := *typedInput.Properties.ClusterResourceId + member.ClusterResourceId = &clusterResourceId + } + } + + // no assignment for property "Conditions" + + // Set property "ETag": + if typedInput.ETag != nil { + eTag := *typedInput.ETag + member.ETag = &eTag + } + + // Set property "Group": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.Group != nil { + group := *typedInput.Properties.Group + member.Group = &group + } + } + + // Set property "Id": + if typedInput.Id != nil { + id := *typedInput.Id + member.Id = &id + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + member.Name = &name + } + + // Set property "ProvisioningState": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.ProvisioningState != nil { + provisioningState := *typedInput.Properties.ProvisioningState + member.ProvisioningState = &provisioningState + } + } + + // Set property "SystemData": + if typedInput.SystemData != nil { + var systemData1 SystemData_STATUS + err := systemData1.PopulateFromARM(owner, *typedInput.SystemData) + if err != nil { + return err + } + systemData := systemData1 + member.SystemData = &systemData + } + + // Set property "Type": + if typedInput.Type != nil { + typeVar := *typedInput.Type + member.Type = &typeVar + } + + // No error + return nil +} + +// AssignProperties_From_Fleets_Member_STATUS populates our Fleets_Member_STATUS from the provided source Fleets_Member_STATUS +func (member *Fleets_Member_STATUS) AssignProperties_From_Fleets_Member_STATUS(source *v20230315ps.Fleets_Member_STATUS) error { + + // ClusterResourceId + member.ClusterResourceId = genruntime.ClonePointerToString(source.ClusterResourceId) + + // Conditions + member.Conditions = genruntime.CloneSliceOfCondition(source.Conditions) + + // ETag + member.ETag = genruntime.ClonePointerToString(source.ETag) + + // Group + member.Group = genruntime.ClonePointerToString(source.Group) + + // Id + member.Id = genruntime.ClonePointerToString(source.Id) + + // Name + member.Name = genruntime.ClonePointerToString(source.Name) + + // ProvisioningState + if source.ProvisioningState != nil { + provisioningState := FleetMemberProvisioningState_STATUS(*source.ProvisioningState) + member.ProvisioningState = &provisioningState + } else { + member.ProvisioningState = nil + } + + // SystemData + if source.SystemData != nil { + var systemDatum SystemData_STATUS + err := systemDatum.AssignProperties_From_SystemData_STATUS(source.SystemData) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_SystemData_STATUS() to populate field SystemData") + } + member.SystemData = &systemDatum + } else { + member.SystemData = nil + } + + // Type + member.Type = genruntime.ClonePointerToString(source.Type) + + // No error + return nil +} + +// AssignProperties_To_Fleets_Member_STATUS populates the provided destination Fleets_Member_STATUS from our Fleets_Member_STATUS +func (member *Fleets_Member_STATUS) AssignProperties_To_Fleets_Member_STATUS(destination *v20230315ps.Fleets_Member_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // ClusterResourceId + destination.ClusterResourceId = genruntime.ClonePointerToString(member.ClusterResourceId) + + // Conditions + destination.Conditions = genruntime.CloneSliceOfCondition(member.Conditions) + + // ETag + destination.ETag = genruntime.ClonePointerToString(member.ETag) + + // Group + destination.Group = genruntime.ClonePointerToString(member.Group) + + // Id + destination.Id = genruntime.ClonePointerToString(member.Id) + + // Name + destination.Name = genruntime.ClonePointerToString(member.Name) + + // ProvisioningState + if member.ProvisioningState != nil { + provisioningState := string(*member.ProvisioningState) + destination.ProvisioningState = &provisioningState + } else { + destination.ProvisioningState = nil + } + + // SystemData + if member.SystemData != nil { + var systemDatum v20230315ps.SystemData_STATUS + err := member.SystemData.AssignProperties_To_SystemData_STATUS(&systemDatum) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_SystemData_STATUS() to populate field SystemData") + } + destination.SystemData = &systemDatum + } else { + destination.SystemData = nil + } + + // Type + destination.Type = genruntime.ClonePointerToString(member.Type) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The provisioning state of the last accepted operation. +type FleetMemberProvisioningState_STATUS string + +const ( + FleetMemberProvisioningState_STATUS_Canceled = FleetMemberProvisioningState_STATUS("Canceled") + FleetMemberProvisioningState_STATUS_Failed = FleetMemberProvisioningState_STATUS("Failed") + FleetMemberProvisioningState_STATUS_Joining = FleetMemberProvisioningState_STATUS("Joining") + FleetMemberProvisioningState_STATUS_Leaving = FleetMemberProvisioningState_STATUS("Leaving") + FleetMemberProvisioningState_STATUS_Succeeded = FleetMemberProvisioningState_STATUS("Succeeded") + FleetMemberProvisioningState_STATUS_Updating = FleetMemberProvisioningState_STATUS("Updating") +) + +func init() { + SchemeBuilder.Register(&FleetsMember{}, &FleetsMemberList{}) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_member_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleets_member_types_gen_test.go new file mode 100644 index 00000000000..35634e14591 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_member_types_gen_test.go @@ -0,0 +1,397 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "encoding/json" + v20230315ps "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315previewstorage" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_FleetsMember_WhenConvertedToHub_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + parameters.MinSuccessfulTests = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from FleetsMember to hub returns original", + prop.ForAll(RunResourceConversionTestForFleetsMember, FleetsMemberGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunResourceConversionTestForFleetsMember tests if a specific instance of FleetsMember round trips to the hub storage version and back losslessly +func RunResourceConversionTestForFleetsMember(subject FleetsMember) string { + // Copy subject to make sure conversion doesn't modify it + copied := subject.DeepCopy() + + // Convert to our hub version + var hub v20230315ps.FleetsMember + err := copied.ConvertTo(&hub) + if err != nil { + return err.Error() + } + + // Convert from our hub version + var actual FleetsMember + err = actual.ConvertFrom(&hub) + if err != nil { + return err.Error() + } + + // Compare actual with what we started with + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_FleetsMember_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from FleetsMember to FleetsMember via AssignProperties_To_FleetsMember & AssignProperties_From_FleetsMember returns original", + prop.ForAll(RunPropertyAssignmentTestForFleetsMember, FleetsMemberGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleetsMember tests if a specific instance of FleetsMember can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleetsMember(subject FleetsMember) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.FleetsMember + err := copied.AssignProperties_To_FleetsMember(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual FleetsMember + err = actual.AssignProperties_From_FleetsMember(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_FleetsMember_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 20 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetsMember via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetsMember, FleetsMemberGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetsMember runs a test to see if a specific instance of FleetsMember round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetsMember(subject FleetsMember) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetsMember + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetsMember instances for property testing - lazily instantiated by FleetsMemberGenerator() +var fleetsMemberGenerator gopter.Gen + +// FleetsMemberGenerator returns a generator of FleetsMember instances for property testing. +func FleetsMemberGenerator() gopter.Gen { + if fleetsMemberGenerator != nil { + return fleetsMemberGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForFleetsMember(generators) + fleetsMemberGenerator = gen.Struct(reflect.TypeOf(FleetsMember{}), generators) + + return fleetsMemberGenerator +} + +// AddRelatedPropertyGeneratorsForFleetsMember is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleetsMember(gens map[string]gopter.Gen) { + gens["Spec"] = Fleets_Member_SpecGenerator() + gens["Status"] = Fleets_Member_STATUSGenerator() +} + +func Test_Fleets_Member_Spec_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from Fleets_Member_Spec to Fleets_Member_Spec via AssignProperties_To_Fleets_Member_Spec & AssignProperties_From_Fleets_Member_Spec returns original", + prop.ForAll(RunPropertyAssignmentTestForFleets_Member_Spec, Fleets_Member_SpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleets_Member_Spec tests if a specific instance of Fleets_Member_Spec can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleets_Member_Spec(subject Fleets_Member_Spec) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.Fleets_Member_Spec + err := copied.AssignProperties_To_Fleets_Member_Spec(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual Fleets_Member_Spec + err = actual.AssignProperties_From_Fleets_Member_Spec(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_Fleets_Member_Spec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_Member_Spec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_Member_Spec, Fleets_Member_SpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_Member_Spec runs a test to see if a specific instance of Fleets_Member_Spec round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_Member_Spec(subject Fleets_Member_Spec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_Member_Spec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_Member_Spec instances for property testing - lazily instantiated by Fleets_Member_SpecGenerator() +var fleets_Member_SpecGenerator gopter.Gen + +// Fleets_Member_SpecGenerator returns a generator of Fleets_Member_Spec instances for property testing. +func Fleets_Member_SpecGenerator() gopter.Gen { + if fleets_Member_SpecGenerator != nil { + return fleets_Member_SpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_Spec(generators) + fleets_Member_SpecGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_Spec{}), generators) + + return fleets_Member_SpecGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_Member_Spec is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_Member_Spec(gens map[string]gopter.Gen) { + gens["AzureName"] = gen.AlphaString() + gens["Group"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_Fleets_Member_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from Fleets_Member_STATUS to Fleets_Member_STATUS via AssignProperties_To_Fleets_Member_STATUS & AssignProperties_From_Fleets_Member_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForFleets_Member_STATUS, Fleets_Member_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleets_Member_STATUS tests if a specific instance of Fleets_Member_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleets_Member_STATUS(subject Fleets_Member_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.Fleets_Member_STATUS + err := copied.AssignProperties_To_Fleets_Member_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual Fleets_Member_STATUS + err = actual.AssignProperties_From_Fleets_Member_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_Fleets_Member_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_Member_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_Member_STATUS, Fleets_Member_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_Member_STATUS runs a test to see if a specific instance of Fleets_Member_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_Member_STATUS(subject Fleets_Member_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_Member_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_Member_STATUS instances for property testing - lazily instantiated by +// Fleets_Member_STATUSGenerator() +var fleets_Member_STATUSGenerator gopter.Gen + +// Fleets_Member_STATUSGenerator returns a generator of Fleets_Member_STATUS instances for property testing. +// We first initialize fleets_Member_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_Member_STATUSGenerator() gopter.Gen { + if fleets_Member_STATUSGenerator != nil { + return fleets_Member_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_STATUS(generators) + fleets_Member_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_STATUS(generators) + AddRelatedPropertyGeneratorsForFleets_Member_STATUS(generators) + fleets_Member_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_STATUS{}), generators) + + return fleets_Member_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_Member_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_Member_STATUS(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["ETag"] = gen.PtrOf(gen.AlphaString()) + gens["Group"] = gen.PtrOf(gen.AlphaString()) + gens["Id"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["ProvisioningState"] = gen.PtrOf(gen.OneConstOf( + FleetMemberProvisioningState_STATUS_Canceled, + FleetMemberProvisioningState_STATUS_Failed, + FleetMemberProvisioningState_STATUS_Joining, + FleetMemberProvisioningState_STATUS_Leaving, + FleetMemberProvisioningState_STATUS_Succeeded, + FleetMemberProvisioningState_STATUS_Updating)) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForFleets_Member_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_Member_STATUS(gens map[string]gopter.Gen) { + gens["SystemData"] = gen.PtrOf(SystemData_STATUSGenerator()) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_update_run_spec_arm_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleets_update_run_spec_arm_types_gen.go new file mode 100644 index 00000000000..dfd09371572 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_update_run_spec_arm_types_gen.go @@ -0,0 +1,94 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import "github.com/Azure/azure-service-operator/v2/pkg/genruntime" + +type Fleets_UpdateRun_Spec_ARM struct { + Name string `json:"name,omitempty"` + + // Properties: The resource-specific properties for this resource. + Properties *UpdateRunProperties_ARM `json:"properties,omitempty"` +} + +var _ genruntime.ARMResourceSpec = &Fleets_UpdateRun_Spec_ARM{} + +// GetAPIVersion returns the ARM API version of the resource. This is always "2023-03-15-preview" +func (updateRun Fleets_UpdateRun_Spec_ARM) GetAPIVersion() string { + return string(APIVersion_Value) +} + +// GetName returns the Name of the resource +func (updateRun *Fleets_UpdateRun_Spec_ARM) GetName() string { + return updateRun.Name +} + +// GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerService/fleets/updateRuns" +func (updateRun *Fleets_UpdateRun_Spec_ARM) GetType() string { + return "Microsoft.ContainerService/fleets/updateRuns" +} + +// The properties of the UpdateRun. +type UpdateRunProperties_ARM struct { + // ManagedClusterUpdate: The update to be applied to all clusters in the UpdateRun. The managedClusterUpdate can be + // modified until the run is started. + ManagedClusterUpdate *ManagedClusterUpdate_ARM `json:"managedClusterUpdate,omitempty"` + + // Strategy: The strategy defines the order in which the clusters will be updated. + // If not set, all members will be updated sequentially. The UpdateRun status will show a single UpdateStage and a single + // UpdateGroup targeting all members. + // The strategy of the UpdateRun can be modified until the run is started. + Strategy *UpdateRunStrategy_ARM `json:"strategy,omitempty"` +} + +// The update to be applied to the ManagedClusters. +type ManagedClusterUpdate_ARM struct { + // Upgrade: The upgrade to apply to the ManagedClusters. + Upgrade *ManagedClusterUpgradeSpec_ARM `json:"upgrade,omitempty"` +} + +// The UpdateRunStrategy configures the sequence of Stages and Groups in which the clusters will be updated. +type UpdateRunStrategy_ARM struct { + // Stages: The list of stages that compose this update run. + Stages []UpdateStage_ARM `json:"stages,omitempty"` +} + +// The upgrade to apply to a ManagedCluster. +type ManagedClusterUpgradeSpec_ARM struct { + // KubernetesVersion: The Kubernetes version to upgrade the member clusters to. + KubernetesVersion *string `json:"kubernetesVersion,omitempty"` + + // Type: The upgrade type. + // Full requires the KubernetesVersion property to be set. + // NodeImageOnly requires the KubernetesVersion property not to be set. + Type *ManagedClusterUpgradeType `json:"type,omitempty"` +} + +// Contains the groups to be updated by an UpdateRun. +// Update order: +// - Sequential between stages: Stages run sequentially. +// The previous stage must complete before the next one starts. +// - Parallel within a stage: Groups within a stage run in +// parallel. +// - Sequential within a group: Clusters within a group are updated sequentially. +type UpdateStage_ARM struct { + // AfterStageWaitInSeconds: The time in seconds to wait at the end of this stage before starting the next one. Defaults to + // 0 seconds if unspecified. + AfterStageWaitInSeconds *int `json:"afterStageWaitInSeconds,omitempty"` + + // Groups: A list of group names that compose the stage. + // The groups will be updated in parallel. Each group name can only appear once in the UpdateRun. + Groups []UpdateGroup_ARM `json:"groups,omitempty"` + + // Name: The name of the stage. Must be unique within the UpdateRun. + Name *string `json:"name,omitempty"` +} + +// A group to be updated. +type UpdateGroup_ARM struct { + // Name: The name of the Fleet member group to update. + // It should match the name of an existing FleetMember group. + // A group can only appear once across all UpdateStages in the UpdateRun. + Name *string `json:"name,omitempty"` +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_update_run_spec_arm_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleets_update_run_spec_arm_types_gen_test.go new file mode 100644 index 00000000000..154c1e61409 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_update_run_spec_arm_types_gen_test.go @@ -0,0 +1,474 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "encoding/json" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_Fleets_UpdateRun_Spec_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_UpdateRun_Spec_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_UpdateRun_Spec_ARM, Fleets_UpdateRun_Spec_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_UpdateRun_Spec_ARM runs a test to see if a specific instance of Fleets_UpdateRun_Spec_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_UpdateRun_Spec_ARM(subject Fleets_UpdateRun_Spec_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_UpdateRun_Spec_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_UpdateRun_Spec_ARM instances for property testing - lazily instantiated by +// Fleets_UpdateRun_Spec_ARMGenerator() +var fleets_UpdateRun_Spec_ARMGenerator gopter.Gen + +// Fleets_UpdateRun_Spec_ARMGenerator returns a generator of Fleets_UpdateRun_Spec_ARM instances for property testing. +// We first initialize fleets_UpdateRun_Spec_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_UpdateRun_Spec_ARMGenerator() gopter.Gen { + if fleets_UpdateRun_Spec_ARMGenerator != nil { + return fleets_UpdateRun_Spec_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec_ARM(generators) + fleets_UpdateRun_Spec_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_Spec_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec_ARM(generators) + AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec_ARM(generators) + fleets_UpdateRun_Spec_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_Spec_ARM{}), generators) + + return fleets_UpdateRun_Spec_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec_ARM(gens map[string]gopter.Gen) { + gens["Name"] = gen.AlphaString() +} + +// AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec_ARM(gens map[string]gopter.Gen) { + gens["Properties"] = gen.PtrOf(UpdateRunProperties_ARMGenerator()) +} + +func Test_UpdateRunProperties_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunProperties_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunProperties_ARM, UpdateRunProperties_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunProperties_ARM runs a test to see if a specific instance of UpdateRunProperties_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunProperties_ARM(subject UpdateRunProperties_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunProperties_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunProperties_ARM instances for property testing - lazily instantiated by +// UpdateRunProperties_ARMGenerator() +var updateRunProperties_ARMGenerator gopter.Gen + +// UpdateRunProperties_ARMGenerator returns a generator of UpdateRunProperties_ARM instances for property testing. +func UpdateRunProperties_ARMGenerator() gopter.Gen { + if updateRunProperties_ARMGenerator != nil { + return updateRunProperties_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunProperties_ARM(generators) + updateRunProperties_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateRunProperties_ARM{}), generators) + + return updateRunProperties_ARMGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunProperties_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunProperties_ARM(gens map[string]gopter.Gen) { + gens["ManagedClusterUpdate"] = gen.PtrOf(ManagedClusterUpdate_ARMGenerator()) + gens["Strategy"] = gen.PtrOf(UpdateRunStrategy_ARMGenerator()) +} + +func Test_ManagedClusterUpdate_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpdate_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpdate_ARM, ManagedClusterUpdate_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpdate_ARM runs a test to see if a specific instance of ManagedClusterUpdate_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpdate_ARM(subject ManagedClusterUpdate_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpdate_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpdate_ARM instances for property testing - lazily instantiated by +// ManagedClusterUpdate_ARMGenerator() +var managedClusterUpdate_ARMGenerator gopter.Gen + +// ManagedClusterUpdate_ARMGenerator returns a generator of ManagedClusterUpdate_ARM instances for property testing. +func ManagedClusterUpdate_ARMGenerator() gopter.Gen { + if managedClusterUpdate_ARMGenerator != nil { + return managedClusterUpdate_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForManagedClusterUpdate_ARM(generators) + managedClusterUpdate_ARMGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpdate_ARM{}), generators) + + return managedClusterUpdate_ARMGenerator +} + +// AddRelatedPropertyGeneratorsForManagedClusterUpdate_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForManagedClusterUpdate_ARM(gens map[string]gopter.Gen) { + gens["Upgrade"] = gen.PtrOf(ManagedClusterUpgradeSpec_ARMGenerator()) +} + +func Test_UpdateRunStrategy_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStrategy_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStrategy_ARM, UpdateRunStrategy_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStrategy_ARM runs a test to see if a specific instance of UpdateRunStrategy_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStrategy_ARM(subject UpdateRunStrategy_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStrategy_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStrategy_ARM instances for property testing - lazily instantiated by +// UpdateRunStrategy_ARMGenerator() +var updateRunStrategy_ARMGenerator gopter.Gen + +// UpdateRunStrategy_ARMGenerator returns a generator of UpdateRunStrategy_ARM instances for property testing. +func UpdateRunStrategy_ARMGenerator() gopter.Gen { + if updateRunStrategy_ARMGenerator != nil { + return updateRunStrategy_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStrategy_ARM(generators) + updateRunStrategy_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateRunStrategy_ARM{}), generators) + + return updateRunStrategy_ARMGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStrategy_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStrategy_ARM(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStage_ARMGenerator()) +} + +func Test_ManagedClusterUpgradeSpec_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpgradeSpec_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpgradeSpec_ARM, ManagedClusterUpgradeSpec_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpgradeSpec_ARM runs a test to see if a specific instance of ManagedClusterUpgradeSpec_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpgradeSpec_ARM(subject ManagedClusterUpgradeSpec_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpgradeSpec_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpgradeSpec_ARM instances for property testing - lazily instantiated by +// ManagedClusterUpgradeSpec_ARMGenerator() +var managedClusterUpgradeSpec_ARMGenerator gopter.Gen + +// ManagedClusterUpgradeSpec_ARMGenerator returns a generator of ManagedClusterUpgradeSpec_ARM instances for property testing. +func ManagedClusterUpgradeSpec_ARMGenerator() gopter.Gen { + if managedClusterUpgradeSpec_ARMGenerator != nil { + return managedClusterUpgradeSpec_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_ARM(generators) + managedClusterUpgradeSpec_ARMGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpgradeSpec_ARM{}), generators) + + return managedClusterUpgradeSpec_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_ARM(gens map[string]gopter.Gen) { + gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.OneConstOf(ManagedClusterUpgradeType_Full, ManagedClusterUpgradeType_NodeImageOnly)) +} + +func Test_UpdateStage_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStage_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStage_ARM, UpdateStage_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStage_ARM runs a test to see if a specific instance of UpdateStage_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStage_ARM(subject UpdateStage_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStage_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStage_ARM instances for property testing - lazily instantiated by UpdateStage_ARMGenerator() +var updateStage_ARMGenerator gopter.Gen + +// UpdateStage_ARMGenerator returns a generator of UpdateStage_ARM instances for property testing. +// We first initialize updateStage_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStage_ARMGenerator() gopter.Gen { + if updateStage_ARMGenerator != nil { + return updateStage_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_ARM(generators) + updateStage_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStage_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_ARM(generators) + AddRelatedPropertyGeneratorsForUpdateStage_ARM(generators) + updateStage_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStage_ARM{}), generators) + + return updateStage_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStage_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStage_ARM(gens map[string]gopter.Gen) { + gens["AfterStageWaitInSeconds"] = gen.PtrOf(gen.Int()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStage_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStage_ARM(gens map[string]gopter.Gen) { + gens["Groups"] = gen.SliceOf(UpdateGroup_ARMGenerator()) +} + +func Test_UpdateGroup_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroup_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroup_ARM, UpdateGroup_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroup_ARM runs a test to see if a specific instance of UpdateGroup_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroup_ARM(subject UpdateGroup_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroup_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroup_ARM instances for property testing - lazily instantiated by UpdateGroup_ARMGenerator() +var updateGroup_ARMGenerator gopter.Gen + +// UpdateGroup_ARMGenerator returns a generator of UpdateGroup_ARM instances for property testing. +func UpdateGroup_ARMGenerator() gopter.Gen { + if updateGroup_ARMGenerator != nil { + return updateGroup_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroup_ARM(generators) + updateGroup_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateGroup_ARM{}), generators) + + return updateGroup_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroup_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroup_ARM(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_update_run_status_arm_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleets_update_run_status_arm_types_gen.go new file mode 100644 index 00000000000..7a7c3ccc6b8 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_update_run_status_arm_types_gen.go @@ -0,0 +1,216 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" + +type Fleets_UpdateRun_STATUS_ARM struct { + // ETag: If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. + // Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in + // the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header + // fields. + ETag *string `json:"eTag,omitempty"` + + // Id: Fully qualified resource ID for the resource. Ex - + // /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + Id *string `json:"id,omitempty"` + + // Name: The name of the resource + Name *string `json:"name,omitempty"` + + // Properties: The resource-specific properties for this resource. + Properties *UpdateRunProperties_STATUS_ARM `json:"properties,omitempty"` + + // SystemData: Azure Resource Manager metadata containing createdBy and modifiedBy information. + SystemData *SystemData_STATUS_ARM `json:"systemData,omitempty"` + + // Type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + Type *string `json:"type,omitempty"` +} + +// The properties of the UpdateRun. +type UpdateRunProperties_STATUS_ARM struct { + // ManagedClusterUpdate: The update to be applied to all clusters in the UpdateRun. The managedClusterUpdate can be + // modified until the run is started. + ManagedClusterUpdate *ManagedClusterUpdate_STATUS_ARM `json:"managedClusterUpdate,omitempty"` + + // ProvisioningState: The provisioning state of the UpdateRun resource. + ProvisioningState *UpdateRunProvisioningState_STATUS `json:"provisioningState,omitempty"` + + // Status: The status of the UpdateRun. + Status *UpdateRunStatus_STATUS_ARM `json:"status,omitempty"` + + // Strategy: The strategy defines the order in which the clusters will be updated. + // If not set, all members will be updated sequentially. The UpdateRun status will show a single UpdateStage and a single + // UpdateGroup targeting all members. + // The strategy of the UpdateRun can be modified until the run is started. + Strategy *UpdateRunStrategy_STATUS_ARM `json:"strategy,omitempty"` +} + +// The update to be applied to the ManagedClusters. +type ManagedClusterUpdate_STATUS_ARM struct { + // Upgrade: The upgrade to apply to the ManagedClusters. + Upgrade *ManagedClusterUpgradeSpec_STATUS_ARM `json:"upgrade,omitempty"` +} + +// The status of a UpdateRun. +type UpdateRunStatus_STATUS_ARM struct { + // Stages: The stages composing an update run. Stages are run sequentially withing an UpdateRun. + Stages []UpdateStageStatus_STATUS_ARM `json:"stages,omitempty"` + + // Status: The status of the UpdateRun. + Status *UpdateStatus_STATUS_ARM `json:"status,omitempty"` +} + +// The UpdateRunStrategy configures the sequence of Stages and Groups in which the clusters will be updated. +type UpdateRunStrategy_STATUS_ARM struct { + // Stages: The list of stages that compose this update run. + Stages []UpdateStage_STATUS_ARM `json:"stages,omitempty"` +} + +// The upgrade to apply to a ManagedCluster. +type ManagedClusterUpgradeSpec_STATUS_ARM struct { + // KubernetesVersion: The Kubernetes version to upgrade the member clusters to. + KubernetesVersion *string `json:"kubernetesVersion,omitempty"` + + // Type: The upgrade type. + // Full requires the KubernetesVersion property to be set. + // NodeImageOnly requires the KubernetesVersion property not to be set. + Type *ManagedClusterUpgradeType_STATUS `json:"type,omitempty"` +} + +// Contains the groups to be updated by an UpdateRun. +// Update order: +// - Sequential between stages: Stages run sequentially. +// The previous stage must complete before the next one starts. +// - Parallel within a stage: Groups within a stage run in +// parallel. +// - Sequential within a group: Clusters within a group are updated sequentially. +type UpdateStage_STATUS_ARM struct { + // AfterStageWaitInSeconds: The time in seconds to wait at the end of this stage before starting the next one. Defaults to + // 0 seconds if unspecified. + AfterStageWaitInSeconds *int `json:"afterStageWaitInSeconds,omitempty"` + + // Groups: A list of group names that compose the stage. + // The groups will be updated in parallel. Each group name can only appear once in the UpdateRun. + Groups []UpdateGroup_STATUS_ARM `json:"groups,omitempty"` + + // Name: The name of the stage. Must be unique within the UpdateRun. + Name *string `json:"name,omitempty"` +} + +// The status of a UpdateStage. +type UpdateStageStatus_STATUS_ARM struct { + // AfterStageWaitStatus: The status of the wait period configured on the UpdateStage. + AfterStageWaitStatus *WaitStatus_STATUS_ARM `json:"afterStageWaitStatus,omitempty"` + + // Groups: The list of groups to be updated as part of this UpdateStage. + Groups []UpdateGroupStatus_STATUS_ARM `json:"groups,omitempty"` + + // Name: The name of the UpdateStage. + Name *string `json:"name,omitempty"` + + // Status: The status of the UpdateStage. + Status *UpdateStatus_STATUS_ARM `json:"status,omitempty"` +} + +// The status for an operation or group of operations. +type UpdateStatus_STATUS_ARM struct { + // CompletedTime: The time the operation or group was completed. + CompletedTime *string `json:"completedTime,omitempty"` + + // Error: The error details when a failure is encountered. + Error *ErrorDetail_STATUS_ARM `json:"error,omitempty"` + + // StartTime: The time the operation or group was started. + StartTime *string `json:"startTime,omitempty"` + + // State: The State of the operation or group. + State *UpdateState_STATUS `json:"state,omitempty"` +} + +// The error detail. +type ErrorDetail_STATUS_ARM struct { + // AdditionalInfo: The error additional info. + AdditionalInfo []ErrorAdditionalInfo_STATUS_ARM `json:"additionalInfo,omitempty"` + + // Code: The error code. + Code *string `json:"code,omitempty"` + + // Details: The error details. + Details []ErrorDetail_STATUS_Unrolled_ARM `json:"details,omitempty"` + + // Message: The error message. + Message *string `json:"message,omitempty"` + + // Target: The error target. + Target *string `json:"target,omitempty"` +} + +// A group to be updated. +type UpdateGroup_STATUS_ARM struct { + // Name: The name of the Fleet member group to update. + // It should match the name of an existing FleetMember group. + // A group can only appear once across all UpdateStages in the UpdateRun. + Name *string `json:"name,omitempty"` +} + +// The status of a UpdateGroup. +type UpdateGroupStatus_STATUS_ARM struct { + // Members: The list of member this UpdateGroup updates. + Members []MemberUpdateStatus_STATUS_ARM `json:"members,omitempty"` + + // Name: The name of the UpdateGroup. + Name *string `json:"name,omitempty"` + + // Status: The status of the UpdateGroup. + Status *UpdateStatus_STATUS_ARM `json:"status,omitempty"` +} + +// The status of the wait duration. +type WaitStatus_STATUS_ARM struct { + // Status: The status of the wait duration. + Status *UpdateStatus_STATUS_ARM `json:"status,omitempty"` + + // WaitDurationInSeconds: The wait duration configured in seconds. + WaitDurationInSeconds *int `json:"waitDurationInSeconds,omitempty"` +} + +// The resource management error additional info. +type ErrorAdditionalInfo_STATUS_ARM struct { + // Info: The additional info. + Info map[string]v1.JSON `json:"info,omitempty"` + + // Type: The additional info type. + Type *string `json:"type,omitempty"` +} + +type ErrorDetail_STATUS_Unrolled_ARM struct { + // AdditionalInfo: The error additional info. + AdditionalInfo []ErrorAdditionalInfo_STATUS_ARM `json:"additionalInfo,omitempty"` + + // Code: The error code. + Code *string `json:"code,omitempty"` + + // Message: The error message. + Message *string `json:"message,omitempty"` + + // Target: The error target. + Target *string `json:"target,omitempty"` +} + +// The status of a member update operation. +type MemberUpdateStatus_STATUS_ARM struct { + // ClusterResourceId: The Azure resource id of the target Kubernetes cluster. + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + + // Name: The name of the FleetMember. + Name *string `json:"name,omitempty"` + + // OperationId: The operation resource id of the latest attempt to perform the operation. + OperationId *string `json:"operationId,omitempty"` + + // Status: The status of the MemberUpdate operation. + Status *UpdateStatus_STATUS_ARM `json:"status,omitempty"` +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_update_run_status_arm_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleets_update_run_status_arm_types_gen_test.go new file mode 100644 index 00000000000..9ec53097eb1 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_update_run_status_arm_types_gen_test.go @@ -0,0 +1,1161 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "encoding/json" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_Fleets_UpdateRun_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_UpdateRun_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_UpdateRun_STATUS_ARM, Fleets_UpdateRun_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_UpdateRun_STATUS_ARM runs a test to see if a specific instance of Fleets_UpdateRun_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_UpdateRun_STATUS_ARM(subject Fleets_UpdateRun_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_UpdateRun_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_UpdateRun_STATUS_ARM instances for property testing - lazily instantiated by +// Fleets_UpdateRun_STATUS_ARMGenerator() +var fleets_UpdateRun_STATUS_ARMGenerator gopter.Gen + +// Fleets_UpdateRun_STATUS_ARMGenerator returns a generator of Fleets_UpdateRun_STATUS_ARM instances for property testing. +// We first initialize fleets_UpdateRun_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_UpdateRun_STATUS_ARMGenerator() gopter.Gen { + if fleets_UpdateRun_STATUS_ARMGenerator != nil { + return fleets_UpdateRun_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM(generators) + fleets_UpdateRun_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM(generators) + fleets_UpdateRun_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_STATUS_ARM{}), generators) + + return fleets_UpdateRun_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM(gens map[string]gopter.Gen) { + gens["ETag"] = gen.PtrOf(gen.AlphaString()) + gens["Id"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Properties"] = gen.PtrOf(UpdateRunProperties_STATUS_ARMGenerator()) + gens["SystemData"] = gen.PtrOf(SystemData_STATUS_ARMGenerator()) +} + +func Test_UpdateRunProperties_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunProperties_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunProperties_STATUS_ARM, UpdateRunProperties_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunProperties_STATUS_ARM runs a test to see if a specific instance of UpdateRunProperties_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunProperties_STATUS_ARM(subject UpdateRunProperties_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunProperties_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunProperties_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateRunProperties_STATUS_ARMGenerator() +var updateRunProperties_STATUS_ARMGenerator gopter.Gen + +// UpdateRunProperties_STATUS_ARMGenerator returns a generator of UpdateRunProperties_STATUS_ARM instances for property testing. +// We first initialize updateRunProperties_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateRunProperties_STATUS_ARMGenerator() gopter.Gen { + if updateRunProperties_STATUS_ARMGenerator != nil { + return updateRunProperties_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateRunProperties_STATUS_ARM(generators) + updateRunProperties_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateRunProperties_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateRunProperties_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForUpdateRunProperties_STATUS_ARM(generators) + updateRunProperties_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateRunProperties_STATUS_ARM{}), generators) + + return updateRunProperties_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateRunProperties_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateRunProperties_STATUS_ARM(gens map[string]gopter.Gen) { + gens["ProvisioningState"] = gen.PtrOf(gen.OneConstOf(UpdateRunProvisioningState_STATUS_Canceled, UpdateRunProvisioningState_STATUS_Failed, UpdateRunProvisioningState_STATUS_Succeeded)) +} + +// AddRelatedPropertyGeneratorsForUpdateRunProperties_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunProperties_STATUS_ARM(gens map[string]gopter.Gen) { + gens["ManagedClusterUpdate"] = gen.PtrOf(ManagedClusterUpdate_STATUS_ARMGenerator()) + gens["Status"] = gen.PtrOf(UpdateRunStatus_STATUS_ARMGenerator()) + gens["Strategy"] = gen.PtrOf(UpdateRunStrategy_STATUS_ARMGenerator()) +} + +func Test_ManagedClusterUpdate_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpdate_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpdate_STATUS_ARM, ManagedClusterUpdate_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpdate_STATUS_ARM runs a test to see if a specific instance of ManagedClusterUpdate_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpdate_STATUS_ARM(subject ManagedClusterUpdate_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpdate_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpdate_STATUS_ARM instances for property testing - lazily instantiated by +// ManagedClusterUpdate_STATUS_ARMGenerator() +var managedClusterUpdate_STATUS_ARMGenerator gopter.Gen + +// ManagedClusterUpdate_STATUS_ARMGenerator returns a generator of ManagedClusterUpdate_STATUS_ARM instances for property testing. +func ManagedClusterUpdate_STATUS_ARMGenerator() gopter.Gen { + if managedClusterUpdate_STATUS_ARMGenerator != nil { + return managedClusterUpdate_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS_ARM(generators) + managedClusterUpdate_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpdate_STATUS_ARM{}), generators) + + return managedClusterUpdate_STATUS_ARMGenerator +} + +// AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Upgrade"] = gen.PtrOf(ManagedClusterUpgradeSpec_STATUS_ARMGenerator()) +} + +func Test_UpdateRunStatus_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStatus_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStatus_STATUS_ARM, UpdateRunStatus_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStatus_STATUS_ARM runs a test to see if a specific instance of UpdateRunStatus_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStatus_STATUS_ARM(subject UpdateRunStatus_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStatus_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStatus_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateRunStatus_STATUS_ARMGenerator() +var updateRunStatus_STATUS_ARMGenerator gopter.Gen + +// UpdateRunStatus_STATUS_ARMGenerator returns a generator of UpdateRunStatus_STATUS_ARM instances for property testing. +func UpdateRunStatus_STATUS_ARMGenerator() gopter.Gen { + if updateRunStatus_STATUS_ARMGenerator != nil { + return updateRunStatus_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS_ARM(generators) + updateRunStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateRunStatus_STATUS_ARM{}), generators) + + return updateRunStatus_STATUS_ARMGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStageStatus_STATUS_ARMGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUS_ARMGenerator()) +} + +func Test_UpdateRunStrategy_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStrategy_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStrategy_STATUS_ARM, UpdateRunStrategy_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStrategy_STATUS_ARM runs a test to see if a specific instance of UpdateRunStrategy_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStrategy_STATUS_ARM(subject UpdateRunStrategy_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStrategy_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStrategy_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateRunStrategy_STATUS_ARMGenerator() +var updateRunStrategy_STATUS_ARMGenerator gopter.Gen + +// UpdateRunStrategy_STATUS_ARMGenerator returns a generator of UpdateRunStrategy_STATUS_ARM instances for property testing. +func UpdateRunStrategy_STATUS_ARMGenerator() gopter.Gen { + if updateRunStrategy_STATUS_ARMGenerator != nil { + return updateRunStrategy_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS_ARM(generators) + updateRunStrategy_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateRunStrategy_STATUS_ARM{}), generators) + + return updateRunStrategy_STATUS_ARMGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStage_STATUS_ARMGenerator()) +} + +func Test_ManagedClusterUpgradeSpec_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpgradeSpec_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS_ARM, ManagedClusterUpgradeSpec_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS_ARM runs a test to see if a specific instance of ManagedClusterUpgradeSpec_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS_ARM(subject ManagedClusterUpgradeSpec_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpgradeSpec_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpgradeSpec_STATUS_ARM instances for property testing - lazily instantiated by +// ManagedClusterUpgradeSpec_STATUS_ARMGenerator() +var managedClusterUpgradeSpec_STATUS_ARMGenerator gopter.Gen + +// ManagedClusterUpgradeSpec_STATUS_ARMGenerator returns a generator of ManagedClusterUpgradeSpec_STATUS_ARM instances for property testing. +func ManagedClusterUpgradeSpec_STATUS_ARMGenerator() gopter.Gen { + if managedClusterUpgradeSpec_STATUS_ARMGenerator != nil { + return managedClusterUpgradeSpec_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS_ARM(generators) + managedClusterUpgradeSpec_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpgradeSpec_STATUS_ARM{}), generators) + + return managedClusterUpgradeSpec_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS_ARM(gens map[string]gopter.Gen) { + gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.OneConstOf(ManagedClusterUpgradeType_STATUS_Full, ManagedClusterUpgradeType_STATUS_NodeImageOnly)) +} + +func Test_UpdateStage_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStage_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStage_STATUS_ARM, UpdateStage_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStage_STATUS_ARM runs a test to see if a specific instance of UpdateStage_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStage_STATUS_ARM(subject UpdateStage_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStage_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStage_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateStage_STATUS_ARMGenerator() +var updateStage_STATUS_ARMGenerator gopter.Gen + +// UpdateStage_STATUS_ARMGenerator returns a generator of UpdateStage_STATUS_ARM instances for property testing. +// We first initialize updateStage_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStage_STATUS_ARMGenerator() gopter.Gen { + if updateStage_STATUS_ARMGenerator != nil { + return updateStage_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_STATUS_ARM(generators) + updateStage_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStage_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForUpdateStage_STATUS_ARM(generators) + updateStage_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStage_STATUS_ARM{}), generators) + + return updateStage_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStage_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStage_STATUS_ARM(gens map[string]gopter.Gen) { + gens["AfterStageWaitInSeconds"] = gen.PtrOf(gen.Int()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStage_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStage_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Groups"] = gen.SliceOf(UpdateGroup_STATUS_ARMGenerator()) +} + +func Test_UpdateStageStatus_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStageStatus_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStageStatus_STATUS_ARM, UpdateStageStatus_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStageStatus_STATUS_ARM runs a test to see if a specific instance of UpdateStageStatus_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStageStatus_STATUS_ARM(subject UpdateStageStatus_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStageStatus_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStageStatus_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateStageStatus_STATUS_ARMGenerator() +var updateStageStatus_STATUS_ARMGenerator gopter.Gen + +// UpdateStageStatus_STATUS_ARMGenerator returns a generator of UpdateStageStatus_STATUS_ARM instances for property testing. +// We first initialize updateStageStatus_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStageStatus_STATUS_ARMGenerator() gopter.Gen { + if updateStageStatus_STATUS_ARMGenerator != nil { + return updateStageStatus_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS_ARM(generators) + updateStageStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStageStatus_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS_ARM(generators) + updateStageStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStageStatus_STATUS_ARM{}), generators) + + return updateStageStatus_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["AfterStageWaitStatus"] = gen.PtrOf(WaitStatus_STATUS_ARMGenerator()) + gens["Groups"] = gen.SliceOf(UpdateGroupStatus_STATUS_ARMGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUS_ARMGenerator()) +} + +func Test_UpdateStatus_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStatus_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStatus_STATUS_ARM, UpdateStatus_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStatus_STATUS_ARM runs a test to see if a specific instance of UpdateStatus_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStatus_STATUS_ARM(subject UpdateStatus_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStatus_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStatus_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateStatus_STATUS_ARMGenerator() +var updateStatus_STATUS_ARMGenerator gopter.Gen + +// UpdateStatus_STATUS_ARMGenerator returns a generator of UpdateStatus_STATUS_ARM instances for property testing. +// We first initialize updateStatus_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStatus_STATUS_ARMGenerator() gopter.Gen { + if updateStatus_STATUS_ARMGenerator != nil { + return updateStatus_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStatus_STATUS_ARM(generators) + updateStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStatus_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStatus_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForUpdateStatus_STATUS_ARM(generators) + updateStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateStatus_STATUS_ARM{}), generators) + + return updateStatus_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStatus_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["CompletedTime"] = gen.PtrOf(gen.AlphaString()) + gens["StartTime"] = gen.PtrOf(gen.AlphaString()) + gens["State"] = gen.PtrOf(gen.OneConstOf( + UpdateState_STATUS_Completed, + UpdateState_STATUS_Failed, + UpdateState_STATUS_NotStarted, + UpdateState_STATUS_Running, + UpdateState_STATUS_Stopped, + UpdateState_STATUS_Stopping)) +} + +// AddRelatedPropertyGeneratorsForUpdateStatus_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Error"] = gen.PtrOf(ErrorDetail_STATUS_ARMGenerator()) +} + +func Test_ErrorDetail_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorDetail_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorDetail_STATUS_ARM, ErrorDetail_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorDetail_STATUS_ARM runs a test to see if a specific instance of ErrorDetail_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorDetail_STATUS_ARM(subject ErrorDetail_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorDetail_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorDetail_STATUS_ARM instances for property testing - lazily instantiated by +// ErrorDetail_STATUS_ARMGenerator() +var errorDetail_STATUS_ARMGenerator gopter.Gen + +// ErrorDetail_STATUS_ARMGenerator returns a generator of ErrorDetail_STATUS_ARM instances for property testing. +// We first initialize errorDetail_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func ErrorDetail_STATUS_ARMGenerator() gopter.Gen { + if errorDetail_STATUS_ARMGenerator != nil { + return errorDetail_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_ARM(generators) + errorDetail_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForErrorDetail_STATUS_ARM(generators) + errorDetail_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_ARM{}), generators) + + return errorDetail_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForErrorDetail_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorDetail_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Code"] = gen.PtrOf(gen.AlphaString()) + gens["Message"] = gen.PtrOf(gen.AlphaString()) + gens["Target"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForErrorDetail_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForErrorDetail_STATUS_ARM(gens map[string]gopter.Gen) { + gens["AdditionalInfo"] = gen.SliceOf(ErrorAdditionalInfo_STATUS_ARMGenerator()) + gens["Details"] = gen.SliceOf(ErrorDetail_STATUS_Unrolled_ARMGenerator()) +} + +func Test_UpdateGroup_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroup_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroup_STATUS_ARM, UpdateGroup_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroup_STATUS_ARM runs a test to see if a specific instance of UpdateGroup_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroup_STATUS_ARM(subject UpdateGroup_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroup_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroup_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateGroup_STATUS_ARMGenerator() +var updateGroup_STATUS_ARMGenerator gopter.Gen + +// UpdateGroup_STATUS_ARMGenerator returns a generator of UpdateGroup_STATUS_ARM instances for property testing. +func UpdateGroup_STATUS_ARMGenerator() gopter.Gen { + if updateGroup_STATUS_ARMGenerator != nil { + return updateGroup_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroup_STATUS_ARM(generators) + updateGroup_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateGroup_STATUS_ARM{}), generators) + + return updateGroup_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroup_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroup_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_UpdateGroupStatus_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroupStatus_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroupStatus_STATUS_ARM, UpdateGroupStatus_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroupStatus_STATUS_ARM runs a test to see if a specific instance of UpdateGroupStatus_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroupStatus_STATUS_ARM(subject UpdateGroupStatus_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroupStatus_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroupStatus_STATUS_ARM instances for property testing - lazily instantiated by +// UpdateGroupStatus_STATUS_ARMGenerator() +var updateGroupStatus_STATUS_ARMGenerator gopter.Gen + +// UpdateGroupStatus_STATUS_ARMGenerator returns a generator of UpdateGroupStatus_STATUS_ARM instances for property testing. +// We first initialize updateGroupStatus_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateGroupStatus_STATUS_ARMGenerator() gopter.Gen { + if updateGroupStatus_STATUS_ARMGenerator != nil { + return updateGroupStatus_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM(generators) + updateGroupStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateGroupStatus_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM(generators) + updateGroupStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(UpdateGroupStatus_STATUS_ARM{}), generators) + + return updateGroupStatus_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Members"] = gen.SliceOf(MemberUpdateStatus_STATUS_ARMGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUS_ARMGenerator()) +} + +func Test_WaitStatus_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of WaitStatus_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForWaitStatus_STATUS_ARM, WaitStatus_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForWaitStatus_STATUS_ARM runs a test to see if a specific instance of WaitStatus_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForWaitStatus_STATUS_ARM(subject WaitStatus_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual WaitStatus_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of WaitStatus_STATUS_ARM instances for property testing - lazily instantiated by +// WaitStatus_STATUS_ARMGenerator() +var waitStatus_STATUS_ARMGenerator gopter.Gen + +// WaitStatus_STATUS_ARMGenerator returns a generator of WaitStatus_STATUS_ARM instances for property testing. +// We first initialize waitStatus_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func WaitStatus_STATUS_ARMGenerator() gopter.Gen { + if waitStatus_STATUS_ARMGenerator != nil { + return waitStatus_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForWaitStatus_STATUS_ARM(generators) + waitStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(WaitStatus_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForWaitStatus_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForWaitStatus_STATUS_ARM(generators) + waitStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(WaitStatus_STATUS_ARM{}), generators) + + return waitStatus_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForWaitStatus_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForWaitStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["WaitDurationInSeconds"] = gen.PtrOf(gen.Int()) +} + +// AddRelatedPropertyGeneratorsForWaitStatus_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForWaitStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Status"] = gen.PtrOf(UpdateStatus_STATUS_ARMGenerator()) +} + +func Test_ErrorAdditionalInfo_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorAdditionalInfo_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorAdditionalInfo_STATUS_ARM, ErrorAdditionalInfo_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorAdditionalInfo_STATUS_ARM runs a test to see if a specific instance of ErrorAdditionalInfo_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorAdditionalInfo_STATUS_ARM(subject ErrorAdditionalInfo_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorAdditionalInfo_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorAdditionalInfo_STATUS_ARM instances for property testing - lazily instantiated by +// ErrorAdditionalInfo_STATUS_ARMGenerator() +var errorAdditionalInfo_STATUS_ARMGenerator gopter.Gen + +// ErrorAdditionalInfo_STATUS_ARMGenerator returns a generator of ErrorAdditionalInfo_STATUS_ARM instances for property testing. +func ErrorAdditionalInfo_STATUS_ARMGenerator() gopter.Gen { + if errorAdditionalInfo_STATUS_ARMGenerator != nil { + return errorAdditionalInfo_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS_ARM(generators) + errorAdditionalInfo_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(ErrorAdditionalInfo_STATUS_ARM{}), generators) + + return errorAdditionalInfo_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_ErrorDetail_STATUS_Unrolled_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorDetail_STATUS_Unrolled_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorDetail_STATUS_Unrolled_ARM, ErrorDetail_STATUS_Unrolled_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorDetail_STATUS_Unrolled_ARM runs a test to see if a specific instance of ErrorDetail_STATUS_Unrolled_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorDetail_STATUS_Unrolled_ARM(subject ErrorDetail_STATUS_Unrolled_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorDetail_STATUS_Unrolled_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorDetail_STATUS_Unrolled_ARM instances for property testing - lazily instantiated by +// ErrorDetail_STATUS_Unrolled_ARMGenerator() +var errorDetail_STATUS_Unrolled_ARMGenerator gopter.Gen + +// ErrorDetail_STATUS_Unrolled_ARMGenerator returns a generator of ErrorDetail_STATUS_Unrolled_ARM instances for property testing. +// We first initialize errorDetail_STATUS_Unrolled_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func ErrorDetail_STATUS_Unrolled_ARMGenerator() gopter.Gen { + if errorDetail_STATUS_Unrolled_ARMGenerator != nil { + return errorDetail_STATUS_Unrolled_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM(generators) + errorDetail_STATUS_Unrolled_ARMGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_Unrolled_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM(generators) + AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM(generators) + errorDetail_STATUS_Unrolled_ARMGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_Unrolled_ARM{}), generators) + + return errorDetail_STATUS_Unrolled_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM(gens map[string]gopter.Gen) { + gens["Code"] = gen.PtrOf(gen.AlphaString()) + gens["Message"] = gen.PtrOf(gen.AlphaString()) + gens["Target"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled_ARM(gens map[string]gopter.Gen) { + gens["AdditionalInfo"] = gen.SliceOf(ErrorAdditionalInfo_STATUS_ARMGenerator()) +} + +func Test_MemberUpdateStatus_STATUS_ARM_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of MemberUpdateStatus_STATUS_ARM via JSON returns original", + prop.ForAll(RunJSONSerializationTestForMemberUpdateStatus_STATUS_ARM, MemberUpdateStatus_STATUS_ARMGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForMemberUpdateStatus_STATUS_ARM runs a test to see if a specific instance of MemberUpdateStatus_STATUS_ARM round trips to JSON and back losslessly +func RunJSONSerializationTestForMemberUpdateStatus_STATUS_ARM(subject MemberUpdateStatus_STATUS_ARM) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual MemberUpdateStatus_STATUS_ARM + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of MemberUpdateStatus_STATUS_ARM instances for property testing - lazily instantiated by +// MemberUpdateStatus_STATUS_ARMGenerator() +var memberUpdateStatus_STATUS_ARMGenerator gopter.Gen + +// MemberUpdateStatus_STATUS_ARMGenerator returns a generator of MemberUpdateStatus_STATUS_ARM instances for property testing. +// We first initialize memberUpdateStatus_STATUS_ARMGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func MemberUpdateStatus_STATUS_ARMGenerator() gopter.Gen { + if memberUpdateStatus_STATUS_ARMGenerator != nil { + return memberUpdateStatus_STATUS_ARMGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM(generators) + memberUpdateStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(MemberUpdateStatus_STATUS_ARM{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM(generators) + AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM(generators) + memberUpdateStatus_STATUS_ARMGenerator = gen.Struct(reflect.TypeOf(MemberUpdateStatus_STATUS_ARM{}), generators) + + return memberUpdateStatus_STATUS_ARMGenerator +} + +// AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["OperationId"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS_ARM(gens map[string]gopter.Gen) { + gens["Status"] = gen.PtrOf(UpdateStatus_STATUS_ARMGenerator()) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_update_run_types_gen.go b/v2/api/containerservice/v1api20230315preview/fleets_update_run_types_gen.go new file mode 100644 index 00000000000..b7b329f6f82 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_update_run_types_gen.go @@ -0,0 +1,3416 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "fmt" + v20230315ps "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315previewstorage" + "github.com/Azure/azure-service-operator/v2/internal/reflecthelpers" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions" + "github.com/pkg/errors" + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/runtime/schema" + "sigs.k8s.io/controller-runtime/pkg/conversion" + "sigs.k8s.io/controller-runtime/pkg/webhook/admission" +) + +// +kubebuilder:object:root=true +// +kubebuilder:subresource:status +// +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +// +kubebuilder:printcolumn:name="Severity",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].severity" +// +kubebuilder:printcolumn:name="Reason",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].reason" +// +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].message" +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/updateRuns/{updateRunName} +type FleetsUpdateRun struct { + metav1.TypeMeta `json:",inline"` + metav1.ObjectMeta `json:"metadata,omitempty"` + Spec Fleets_UpdateRun_Spec `json:"spec,omitempty"` + Status Fleets_UpdateRun_STATUS `json:"status,omitempty"` +} + +var _ conditions.Conditioner = &FleetsUpdateRun{} + +// GetConditions returns the conditions of the resource +func (updateRun *FleetsUpdateRun) GetConditions() conditions.Conditions { + return updateRun.Status.Conditions +} + +// SetConditions sets the conditions on the resource status +func (updateRun *FleetsUpdateRun) SetConditions(conditions conditions.Conditions) { + updateRun.Status.Conditions = conditions +} + +var _ conversion.Convertible = &FleetsUpdateRun{} + +// ConvertFrom populates our FleetsUpdateRun from the provided hub FleetsUpdateRun +func (updateRun *FleetsUpdateRun) ConvertFrom(hub conversion.Hub) error { + source, ok := hub.(*v20230315ps.FleetsUpdateRun) + if !ok { + return fmt.Errorf("expected containerservice/v1api20230315previewstorage/FleetsUpdateRun but received %T instead", hub) + } + + return updateRun.AssignProperties_From_FleetsUpdateRun(source) +} + +// ConvertTo populates the provided hub FleetsUpdateRun from our FleetsUpdateRun +func (updateRun *FleetsUpdateRun) ConvertTo(hub conversion.Hub) error { + destination, ok := hub.(*v20230315ps.FleetsUpdateRun) + if !ok { + return fmt.Errorf("expected containerservice/v1api20230315previewstorage/FleetsUpdateRun but received %T instead", hub) + } + + return updateRun.AssignProperties_To_FleetsUpdateRun(destination) +} + +// +kubebuilder:webhook:path=/mutate-containerservice-azure-com-v1api20230315preview-fleetsupdaterun,mutating=true,sideEffects=None,matchPolicy=Exact,failurePolicy=fail,groups=containerservice.azure.com,resources=fleetsupdateruns,verbs=create;update,versions=v1api20230315preview,name=default.v1api20230315preview.fleetsupdateruns.containerservice.azure.com,admissionReviewVersions=v1 + +var _ admission.Defaulter = &FleetsUpdateRun{} + +// Default applies defaults to the FleetsUpdateRun resource +func (updateRun *FleetsUpdateRun) Default() { + updateRun.defaultImpl() + var temp any = updateRun + if runtimeDefaulter, ok := temp.(genruntime.Defaulter); ok { + runtimeDefaulter.CustomDefault() + } +} + +// defaultAzureName defaults the Azure name of the resource to the Kubernetes name +func (updateRun *FleetsUpdateRun) defaultAzureName() { + if updateRun.Spec.AzureName == "" { + updateRun.Spec.AzureName = updateRun.Name + } +} + +// defaultImpl applies the code generated defaults to the FleetsUpdateRun resource +func (updateRun *FleetsUpdateRun) defaultImpl() { updateRun.defaultAzureName() } + +var _ genruntime.ImportableResource = &FleetsUpdateRun{} + +// InitializeSpec initializes the spec for this resource from the given status +func (updateRun *FleetsUpdateRun) InitializeSpec(status genruntime.ConvertibleStatus) error { + if s, ok := status.(*Fleets_UpdateRun_STATUS); ok { + return updateRun.Spec.Initialize_From_Fleets_UpdateRun_STATUS(s) + } + + return fmt.Errorf("expected Status of type Fleets_UpdateRun_STATUS but received %T instead", status) +} + +var _ genruntime.KubernetesResource = &FleetsUpdateRun{} + +// AzureName returns the Azure name of the resource +func (updateRun *FleetsUpdateRun) AzureName() string { + return updateRun.Spec.AzureName +} + +// GetAPIVersion returns the ARM API version of the resource. This is always "2023-03-15-preview" +func (updateRun FleetsUpdateRun) GetAPIVersion() string { + return string(APIVersion_Value) +} + +// GetResourceScope returns the scope of the resource +func (updateRun *FleetsUpdateRun) GetResourceScope() genruntime.ResourceScope { + return genruntime.ResourceScopeResourceGroup +} + +// GetSpec returns the specification of this resource +func (updateRun *FleetsUpdateRun) GetSpec() genruntime.ConvertibleSpec { + return &updateRun.Spec +} + +// GetStatus returns the status of this resource +func (updateRun *FleetsUpdateRun) GetStatus() genruntime.ConvertibleStatus { + return &updateRun.Status +} + +// GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerService/fleets/updateRuns" +func (updateRun *FleetsUpdateRun) GetType() string { + return "Microsoft.ContainerService/fleets/updateRuns" +} + +// NewEmptyStatus returns a new empty (blank) status +func (updateRun *FleetsUpdateRun) NewEmptyStatus() genruntime.ConvertibleStatus { + return &Fleets_UpdateRun_STATUS{} +} + +// Owner returns the ResourceReference of the owner +func (updateRun *FleetsUpdateRun) Owner() *genruntime.ResourceReference { + group, kind := genruntime.LookupOwnerGroupKind(updateRun.Spec) + return updateRun.Spec.Owner.AsResourceReference(group, kind) +} + +// SetStatus sets the status of this resource +func (updateRun *FleetsUpdateRun) SetStatus(status genruntime.ConvertibleStatus) error { + // If we have exactly the right type of status, assign it + if st, ok := status.(*Fleets_UpdateRun_STATUS); ok { + updateRun.Status = *st + return nil + } + + // Convert status to required version + var st Fleets_UpdateRun_STATUS + err := status.ConvertStatusTo(&st) + if err != nil { + return errors.Wrap(err, "failed to convert status") + } + + updateRun.Status = st + return nil +} + +// +kubebuilder:webhook:path=/validate-containerservice-azure-com-v1api20230315preview-fleetsupdaterun,mutating=false,sideEffects=None,matchPolicy=Exact,failurePolicy=fail,groups=containerservice.azure.com,resources=fleetsupdateruns,verbs=create;update,versions=v1api20230315preview,name=validate.v1api20230315preview.fleetsupdateruns.containerservice.azure.com,admissionReviewVersions=v1 + +var _ admission.Validator = &FleetsUpdateRun{} + +// ValidateCreate validates the creation of the resource +func (updateRun *FleetsUpdateRun) ValidateCreate() (admission.Warnings, error) { + validations := updateRun.createValidations() + var temp any = updateRun + if runtimeValidator, ok := temp.(genruntime.Validator); ok { + validations = append(validations, runtimeValidator.CreateValidations()...) + } + return genruntime.ValidateCreate(validations) +} + +// ValidateDelete validates the deletion of the resource +func (updateRun *FleetsUpdateRun) ValidateDelete() (admission.Warnings, error) { + validations := updateRun.deleteValidations() + var temp any = updateRun + if runtimeValidator, ok := temp.(genruntime.Validator); ok { + validations = append(validations, runtimeValidator.DeleteValidations()...) + } + return genruntime.ValidateDelete(validations) +} + +// ValidateUpdate validates an update of the resource +func (updateRun *FleetsUpdateRun) ValidateUpdate(old runtime.Object) (admission.Warnings, error) { + validations := updateRun.updateValidations() + var temp any = updateRun + if runtimeValidator, ok := temp.(genruntime.Validator); ok { + validations = append(validations, runtimeValidator.UpdateValidations()...) + } + return genruntime.ValidateUpdate(old, validations) +} + +// createValidations validates the creation of the resource +func (updateRun *FleetsUpdateRun) createValidations() []func() (admission.Warnings, error) { + return []func() (admission.Warnings, error){updateRun.validateResourceReferences, updateRun.validateOwnerReference} +} + +// deleteValidations validates the deletion of the resource +func (updateRun *FleetsUpdateRun) deleteValidations() []func() (admission.Warnings, error) { + return nil +} + +// updateValidations validates the update of the resource +func (updateRun *FleetsUpdateRun) updateValidations() []func(old runtime.Object) (admission.Warnings, error) { + return []func(old runtime.Object) (admission.Warnings, error){ + func(old runtime.Object) (admission.Warnings, error) { + return updateRun.validateResourceReferences() + }, + updateRun.validateWriteOnceProperties, + func(old runtime.Object) (admission.Warnings, error) { + return updateRun.validateOwnerReference() + }, + } +} + +// validateOwnerReference validates the owner field +func (updateRun *FleetsUpdateRun) validateOwnerReference() (admission.Warnings, error) { + return genruntime.ValidateOwner(updateRun) +} + +// validateResourceReferences validates all resource references +func (updateRun *FleetsUpdateRun) validateResourceReferences() (admission.Warnings, error) { + refs, err := reflecthelpers.FindResourceReferences(&updateRun.Spec) + if err != nil { + return nil, err + } + return genruntime.ValidateResourceReferences(refs) +} + +// validateWriteOnceProperties validates all WriteOnce properties +func (updateRun *FleetsUpdateRun) validateWriteOnceProperties(old runtime.Object) (admission.Warnings, error) { + oldObj, ok := old.(*FleetsUpdateRun) + if !ok { + return nil, nil + } + + return genruntime.ValidateWriteOnceProperties(oldObj, updateRun) +} + +// AssignProperties_From_FleetsUpdateRun populates our FleetsUpdateRun from the provided source FleetsUpdateRun +func (updateRun *FleetsUpdateRun) AssignProperties_From_FleetsUpdateRun(source *v20230315ps.FleetsUpdateRun) error { + + // ObjectMeta + updateRun.ObjectMeta = *source.ObjectMeta.DeepCopy() + + // Spec + var spec Fleets_UpdateRun_Spec + err := spec.AssignProperties_From_Fleets_UpdateRun_Spec(&source.Spec) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_Fleets_UpdateRun_Spec() to populate field Spec") + } + updateRun.Spec = spec + + // Status + var status Fleets_UpdateRun_STATUS + err = status.AssignProperties_From_Fleets_UpdateRun_STATUS(&source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_Fleets_UpdateRun_STATUS() to populate field Status") + } + updateRun.Status = status + + // No error + return nil +} + +// AssignProperties_To_FleetsUpdateRun populates the provided destination FleetsUpdateRun from our FleetsUpdateRun +func (updateRun *FleetsUpdateRun) AssignProperties_To_FleetsUpdateRun(destination *v20230315ps.FleetsUpdateRun) error { + + // ObjectMeta + destination.ObjectMeta = *updateRun.ObjectMeta.DeepCopy() + + // Spec + var spec v20230315ps.Fleets_UpdateRun_Spec + err := updateRun.Spec.AssignProperties_To_Fleets_UpdateRun_Spec(&spec) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_Fleets_UpdateRun_Spec() to populate field Spec") + } + destination.Spec = spec + + // Status + var status v20230315ps.Fleets_UpdateRun_STATUS + err = updateRun.Status.AssignProperties_To_Fleets_UpdateRun_STATUS(&status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_Fleets_UpdateRun_STATUS() to populate field Status") + } + destination.Status = status + + // No error + return nil +} + +// OriginalGVK returns a GroupValueKind for the original API version used to create the resource +func (updateRun *FleetsUpdateRun) OriginalGVK() *schema.GroupVersionKind { + return &schema.GroupVersionKind{ + Group: GroupVersion.Group, + Version: updateRun.Spec.OriginalVersion(), + Kind: "FleetsUpdateRun", + } +} + +// +kubebuilder:object:root=true +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/updateRuns/{updateRunName} +type FleetsUpdateRunList struct { + metav1.TypeMeta `json:",inline"` + metav1.ListMeta `json:"metadata,omitempty"` + Items []FleetsUpdateRun `json:"items"` +} + +type Fleets_UpdateRun_Spec struct { + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it + // doesn't have to be. + AzureName string `json:"azureName,omitempty"` + + // +kubebuilder:validation:Required + // ManagedClusterUpdate: The update to be applied to all clusters in the UpdateRun. The managedClusterUpdate can be + // modified until the run is started. + ManagedClusterUpdate *ManagedClusterUpdate `json:"managedClusterUpdate,omitempty"` + + // +kubebuilder:validation:Required + // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also + // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a + // reference to a containerservice.azure.com/Fleet resource + Owner *genruntime.KnownResourceReference `group:"containerservice.azure.com" json:"owner,omitempty" kind:"Fleet"` + + // Strategy: The strategy defines the order in which the clusters will be updated. + // If not set, all members will be updated sequentially. The UpdateRun status will show a single UpdateStage and a single + // UpdateGroup targeting all members. + // The strategy of the UpdateRun can be modified until the run is started. + Strategy *UpdateRunStrategy `json:"strategy,omitempty"` +} + +var _ genruntime.ARMTransformer = &Fleets_UpdateRun_Spec{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (updateRun *Fleets_UpdateRun_Spec) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if updateRun == nil { + return nil, nil + } + result := &Fleets_UpdateRun_Spec_ARM{} + + // Set property "Name": + result.Name = resolved.Name + + // Set property "Properties": + if updateRun.ManagedClusterUpdate != nil || updateRun.Strategy != nil { + result.Properties = &UpdateRunProperties_ARM{} + } + if updateRun.ManagedClusterUpdate != nil { + managedClusterUpdate_ARM, err := (*updateRun.ManagedClusterUpdate).ConvertToARM(resolved) + if err != nil { + return nil, err + } + managedClusterUpdate := *managedClusterUpdate_ARM.(*ManagedClusterUpdate_ARM) + result.Properties.ManagedClusterUpdate = &managedClusterUpdate + } + if updateRun.Strategy != nil { + strategy_ARM, err := (*updateRun.Strategy).ConvertToARM(resolved) + if err != nil { + return nil, err + } + strategy := *strategy_ARM.(*UpdateRunStrategy_ARM) + result.Properties.Strategy = &strategy + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (updateRun *Fleets_UpdateRun_Spec) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &Fleets_UpdateRun_Spec_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (updateRun *Fleets_UpdateRun_Spec) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(Fleets_UpdateRun_Spec_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected Fleets_UpdateRun_Spec_ARM, got %T", armInput) + } + + // Set property "AzureName": + updateRun.SetAzureName(genruntime.ExtractKubernetesResourceNameFromARMName(typedInput.Name)) + + // Set property "ManagedClusterUpdate": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.ManagedClusterUpdate != nil { + var managedClusterUpdate1 ManagedClusterUpdate + err := managedClusterUpdate1.PopulateFromARM(owner, *typedInput.Properties.ManagedClusterUpdate) + if err != nil { + return err + } + managedClusterUpdate := managedClusterUpdate1 + updateRun.ManagedClusterUpdate = &managedClusterUpdate + } + } + + // Set property "Owner": + updateRun.Owner = &genruntime.KnownResourceReference{ + Name: owner.Name, + ARMID: owner.ARMID, + } + + // Set property "Strategy": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.Strategy != nil { + var strategy1 UpdateRunStrategy + err := strategy1.PopulateFromARM(owner, *typedInput.Properties.Strategy) + if err != nil { + return err + } + strategy := strategy1 + updateRun.Strategy = &strategy + } + } + + // No error + return nil +} + +var _ genruntime.ConvertibleSpec = &Fleets_UpdateRun_Spec{} + +// ConvertSpecFrom populates our Fleets_UpdateRun_Spec from the provided source +func (updateRun *Fleets_UpdateRun_Spec) ConvertSpecFrom(source genruntime.ConvertibleSpec) error { + src, ok := source.(*v20230315ps.Fleets_UpdateRun_Spec) + if ok { + // Populate our instance from source + return updateRun.AssignProperties_From_Fleets_UpdateRun_Spec(src) + } + + // Convert to an intermediate form + src = &v20230315ps.Fleets_UpdateRun_Spec{} + err := src.ConvertSpecFrom(source) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertSpecFrom()") + } + + // Update our instance from src + err = updateRun.AssignProperties_From_Fleets_UpdateRun_Spec(src) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertSpecFrom()") + } + + return nil +} + +// ConvertSpecTo populates the provided destination from our Fleets_UpdateRun_Spec +func (updateRun *Fleets_UpdateRun_Spec) ConvertSpecTo(destination genruntime.ConvertibleSpec) error { + dst, ok := destination.(*v20230315ps.Fleets_UpdateRun_Spec) + if ok { + // Populate destination from our instance + return updateRun.AssignProperties_To_Fleets_UpdateRun_Spec(dst) + } + + // Convert to an intermediate form + dst = &v20230315ps.Fleets_UpdateRun_Spec{} + err := updateRun.AssignProperties_To_Fleets_UpdateRun_Spec(dst) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertSpecTo()") + } + + // Update dst from our instance + err = dst.ConvertSpecTo(destination) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertSpecTo()") + } + + return nil +} + +// AssignProperties_From_Fleets_UpdateRun_Spec populates our Fleets_UpdateRun_Spec from the provided source Fleets_UpdateRun_Spec +func (updateRun *Fleets_UpdateRun_Spec) AssignProperties_From_Fleets_UpdateRun_Spec(source *v20230315ps.Fleets_UpdateRun_Spec) error { + + // AzureName + updateRun.AzureName = source.AzureName + + // ManagedClusterUpdate + if source.ManagedClusterUpdate != nil { + var managedClusterUpdate ManagedClusterUpdate + err := managedClusterUpdate.AssignProperties_From_ManagedClusterUpdate(source.ManagedClusterUpdate) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ManagedClusterUpdate() to populate field ManagedClusterUpdate") + } + updateRun.ManagedClusterUpdate = &managedClusterUpdate + } else { + updateRun.ManagedClusterUpdate = nil + } + + // Owner + if source.Owner != nil { + owner := source.Owner.Copy() + updateRun.Owner = &owner + } else { + updateRun.Owner = nil + } + + // Strategy + if source.Strategy != nil { + var strategy UpdateRunStrategy + err := strategy.AssignProperties_From_UpdateRunStrategy(source.Strategy) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateRunStrategy() to populate field Strategy") + } + updateRun.Strategy = &strategy + } else { + updateRun.Strategy = nil + } + + // No error + return nil +} + +// AssignProperties_To_Fleets_UpdateRun_Spec populates the provided destination Fleets_UpdateRun_Spec from our Fleets_UpdateRun_Spec +func (updateRun *Fleets_UpdateRun_Spec) AssignProperties_To_Fleets_UpdateRun_Spec(destination *v20230315ps.Fleets_UpdateRun_Spec) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AzureName + destination.AzureName = updateRun.AzureName + + // ManagedClusterUpdate + if updateRun.ManagedClusterUpdate != nil { + var managedClusterUpdate v20230315ps.ManagedClusterUpdate + err := updateRun.ManagedClusterUpdate.AssignProperties_To_ManagedClusterUpdate(&managedClusterUpdate) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ManagedClusterUpdate() to populate field ManagedClusterUpdate") + } + destination.ManagedClusterUpdate = &managedClusterUpdate + } else { + destination.ManagedClusterUpdate = nil + } + + // OriginalVersion + destination.OriginalVersion = updateRun.OriginalVersion() + + // Owner + if updateRun.Owner != nil { + owner := updateRun.Owner.Copy() + destination.Owner = &owner + } else { + destination.Owner = nil + } + + // Strategy + if updateRun.Strategy != nil { + var strategy v20230315ps.UpdateRunStrategy + err := updateRun.Strategy.AssignProperties_To_UpdateRunStrategy(&strategy) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateRunStrategy() to populate field Strategy") + } + destination.Strategy = &strategy + } else { + destination.Strategy = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_Fleets_UpdateRun_STATUS populates our Fleets_UpdateRun_Spec from the provided source Fleets_UpdateRun_STATUS +func (updateRun *Fleets_UpdateRun_Spec) Initialize_From_Fleets_UpdateRun_STATUS(source *Fleets_UpdateRun_STATUS) error { + + // ManagedClusterUpdate + if source.ManagedClusterUpdate != nil { + var managedClusterUpdate ManagedClusterUpdate + err := managedClusterUpdate.Initialize_From_ManagedClusterUpdate_STATUS(source.ManagedClusterUpdate) + if err != nil { + return errors.Wrap(err, "calling Initialize_From_ManagedClusterUpdate_STATUS() to populate field ManagedClusterUpdate") + } + updateRun.ManagedClusterUpdate = &managedClusterUpdate + } else { + updateRun.ManagedClusterUpdate = nil + } + + // Strategy + if source.Strategy != nil { + var strategy UpdateRunStrategy + err := strategy.Initialize_From_UpdateRunStrategy_STATUS(source.Strategy) + if err != nil { + return errors.Wrap(err, "calling Initialize_From_UpdateRunStrategy_STATUS() to populate field Strategy") + } + updateRun.Strategy = &strategy + } else { + updateRun.Strategy = nil + } + + // No error + return nil +} + +// OriginalVersion returns the original API version used to create the resource. +func (updateRun *Fleets_UpdateRun_Spec) OriginalVersion() string { + return GroupVersion.Version +} + +// SetAzureName sets the Azure name of the resource +func (updateRun *Fleets_UpdateRun_Spec) SetAzureName(azureName string) { + updateRun.AzureName = azureName +} + +type Fleets_UpdateRun_STATUS struct { + // Conditions: The observed state of the resource + Conditions []conditions.Condition `json:"conditions,omitempty"` + + // ETag: If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. + // Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in + // the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header + // fields. + ETag *string `json:"eTag,omitempty"` + + // Id: Fully qualified resource ID for the resource. Ex - + // /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + Id *string `json:"id,omitempty"` + + // ManagedClusterUpdate: The update to be applied to all clusters in the UpdateRun. The managedClusterUpdate can be + // modified until the run is started. + ManagedClusterUpdate *ManagedClusterUpdate_STATUS `json:"managedClusterUpdate,omitempty"` + + // Name: The name of the resource + Name *string `json:"name,omitempty"` + + // ProvisioningState: The provisioning state of the UpdateRun resource. + ProvisioningState *UpdateRunProvisioningState_STATUS `json:"provisioningState,omitempty"` + + // Status: The status of the UpdateRun. + Status *UpdateRunStatus_STATUS `json:"status,omitempty"` + + // Strategy: The strategy defines the order in which the clusters will be updated. + // If not set, all members will be updated sequentially. The UpdateRun status will show a single UpdateStage and a single + // UpdateGroup targeting all members. + // The strategy of the UpdateRun can be modified until the run is started. + Strategy *UpdateRunStrategy_STATUS `json:"strategy,omitempty"` + + // SystemData: Azure Resource Manager metadata containing createdBy and modifiedBy information. + SystemData *SystemData_STATUS `json:"systemData,omitempty"` + + // Type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + Type *string `json:"type,omitempty"` +} + +var _ genruntime.ConvertibleStatus = &Fleets_UpdateRun_STATUS{} + +// ConvertStatusFrom populates our Fleets_UpdateRun_STATUS from the provided source +func (updateRun *Fleets_UpdateRun_STATUS) ConvertStatusFrom(source genruntime.ConvertibleStatus) error { + src, ok := source.(*v20230315ps.Fleets_UpdateRun_STATUS) + if ok { + // Populate our instance from source + return updateRun.AssignProperties_From_Fleets_UpdateRun_STATUS(src) + } + + // Convert to an intermediate form + src = &v20230315ps.Fleets_UpdateRun_STATUS{} + err := src.ConvertStatusFrom(source) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertStatusFrom()") + } + + // Update our instance from src + err = updateRun.AssignProperties_From_Fleets_UpdateRun_STATUS(src) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertStatusFrom()") + } + + return nil +} + +// ConvertStatusTo populates the provided destination from our Fleets_UpdateRun_STATUS +func (updateRun *Fleets_UpdateRun_STATUS) ConvertStatusTo(destination genruntime.ConvertibleStatus) error { + dst, ok := destination.(*v20230315ps.Fleets_UpdateRun_STATUS) + if ok { + // Populate destination from our instance + return updateRun.AssignProperties_To_Fleets_UpdateRun_STATUS(dst) + } + + // Convert to an intermediate form + dst = &v20230315ps.Fleets_UpdateRun_STATUS{} + err := updateRun.AssignProperties_To_Fleets_UpdateRun_STATUS(dst) + if err != nil { + return errors.Wrap(err, "initial step of conversion in ConvertStatusTo()") + } + + // Update dst from our instance + err = dst.ConvertStatusTo(destination) + if err != nil { + return errors.Wrap(err, "final step of conversion in ConvertStatusTo()") + } + + return nil +} + +var _ genruntime.FromARMConverter = &Fleets_UpdateRun_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (updateRun *Fleets_UpdateRun_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &Fleets_UpdateRun_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (updateRun *Fleets_UpdateRun_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(Fleets_UpdateRun_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected Fleets_UpdateRun_STATUS_ARM, got %T", armInput) + } + + // no assignment for property "Conditions" + + // Set property "ETag": + if typedInput.ETag != nil { + eTag := *typedInput.ETag + updateRun.ETag = &eTag + } + + // Set property "Id": + if typedInput.Id != nil { + id := *typedInput.Id + updateRun.Id = &id + } + + // Set property "ManagedClusterUpdate": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.ManagedClusterUpdate != nil { + var managedClusterUpdate1 ManagedClusterUpdate_STATUS + err := managedClusterUpdate1.PopulateFromARM(owner, *typedInput.Properties.ManagedClusterUpdate) + if err != nil { + return err + } + managedClusterUpdate := managedClusterUpdate1 + updateRun.ManagedClusterUpdate = &managedClusterUpdate + } + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + updateRun.Name = &name + } + + // Set property "ProvisioningState": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.ProvisioningState != nil { + provisioningState := *typedInput.Properties.ProvisioningState + updateRun.ProvisioningState = &provisioningState + } + } + + // Set property "Status": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.Status != nil { + var status1 UpdateRunStatus_STATUS + err := status1.PopulateFromARM(owner, *typedInput.Properties.Status) + if err != nil { + return err + } + status := status1 + updateRun.Status = &status + } + } + + // Set property "Strategy": + // copying flattened property: + if typedInput.Properties != nil { + if typedInput.Properties.Strategy != nil { + var strategy1 UpdateRunStrategy_STATUS + err := strategy1.PopulateFromARM(owner, *typedInput.Properties.Strategy) + if err != nil { + return err + } + strategy := strategy1 + updateRun.Strategy = &strategy + } + } + + // Set property "SystemData": + if typedInput.SystemData != nil { + var systemData1 SystemData_STATUS + err := systemData1.PopulateFromARM(owner, *typedInput.SystemData) + if err != nil { + return err + } + systemData := systemData1 + updateRun.SystemData = &systemData + } + + // Set property "Type": + if typedInput.Type != nil { + typeVar := *typedInput.Type + updateRun.Type = &typeVar + } + + // No error + return nil +} + +// AssignProperties_From_Fleets_UpdateRun_STATUS populates our Fleets_UpdateRun_STATUS from the provided source Fleets_UpdateRun_STATUS +func (updateRun *Fleets_UpdateRun_STATUS) AssignProperties_From_Fleets_UpdateRun_STATUS(source *v20230315ps.Fleets_UpdateRun_STATUS) error { + + // Conditions + updateRun.Conditions = genruntime.CloneSliceOfCondition(source.Conditions) + + // ETag + updateRun.ETag = genruntime.ClonePointerToString(source.ETag) + + // Id + updateRun.Id = genruntime.ClonePointerToString(source.Id) + + // ManagedClusterUpdate + if source.ManagedClusterUpdate != nil { + var managedClusterUpdate ManagedClusterUpdate_STATUS + err := managedClusterUpdate.AssignProperties_From_ManagedClusterUpdate_STATUS(source.ManagedClusterUpdate) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ManagedClusterUpdate_STATUS() to populate field ManagedClusterUpdate") + } + updateRun.ManagedClusterUpdate = &managedClusterUpdate + } else { + updateRun.ManagedClusterUpdate = nil + } + + // Name + updateRun.Name = genruntime.ClonePointerToString(source.Name) + + // ProvisioningState + if source.ProvisioningState != nil { + provisioningState := UpdateRunProvisioningState_STATUS(*source.ProvisioningState) + updateRun.ProvisioningState = &provisioningState + } else { + updateRun.ProvisioningState = nil + } + + // Status + if source.Status != nil { + var status UpdateRunStatus_STATUS + err := status.AssignProperties_From_UpdateRunStatus_STATUS(source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateRunStatus_STATUS() to populate field Status") + } + updateRun.Status = &status + } else { + updateRun.Status = nil + } + + // Strategy + if source.Strategy != nil { + var strategy UpdateRunStrategy_STATUS + err := strategy.AssignProperties_From_UpdateRunStrategy_STATUS(source.Strategy) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateRunStrategy_STATUS() to populate field Strategy") + } + updateRun.Strategy = &strategy + } else { + updateRun.Strategy = nil + } + + // SystemData + if source.SystemData != nil { + var systemDatum SystemData_STATUS + err := systemDatum.AssignProperties_From_SystemData_STATUS(source.SystemData) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_SystemData_STATUS() to populate field SystemData") + } + updateRun.SystemData = &systemDatum + } else { + updateRun.SystemData = nil + } + + // Type + updateRun.Type = genruntime.ClonePointerToString(source.Type) + + // No error + return nil +} + +// AssignProperties_To_Fleets_UpdateRun_STATUS populates the provided destination Fleets_UpdateRun_STATUS from our Fleets_UpdateRun_STATUS +func (updateRun *Fleets_UpdateRun_STATUS) AssignProperties_To_Fleets_UpdateRun_STATUS(destination *v20230315ps.Fleets_UpdateRun_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Conditions + destination.Conditions = genruntime.CloneSliceOfCondition(updateRun.Conditions) + + // ETag + destination.ETag = genruntime.ClonePointerToString(updateRun.ETag) + + // Id + destination.Id = genruntime.ClonePointerToString(updateRun.Id) + + // ManagedClusterUpdate + if updateRun.ManagedClusterUpdate != nil { + var managedClusterUpdate v20230315ps.ManagedClusterUpdate_STATUS + err := updateRun.ManagedClusterUpdate.AssignProperties_To_ManagedClusterUpdate_STATUS(&managedClusterUpdate) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ManagedClusterUpdate_STATUS() to populate field ManagedClusterUpdate") + } + destination.ManagedClusterUpdate = &managedClusterUpdate + } else { + destination.ManagedClusterUpdate = nil + } + + // Name + destination.Name = genruntime.ClonePointerToString(updateRun.Name) + + // ProvisioningState + if updateRun.ProvisioningState != nil { + provisioningState := string(*updateRun.ProvisioningState) + destination.ProvisioningState = &provisioningState + } else { + destination.ProvisioningState = nil + } + + // Status + if updateRun.Status != nil { + var status v20230315ps.UpdateRunStatus_STATUS + err := updateRun.Status.AssignProperties_To_UpdateRunStatus_STATUS(&status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateRunStatus_STATUS() to populate field Status") + } + destination.Status = &status + } else { + destination.Status = nil + } + + // Strategy + if updateRun.Strategy != nil { + var strategy v20230315ps.UpdateRunStrategy_STATUS + err := updateRun.Strategy.AssignProperties_To_UpdateRunStrategy_STATUS(&strategy) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateRunStrategy_STATUS() to populate field Strategy") + } + destination.Strategy = &strategy + } else { + destination.Strategy = nil + } + + // SystemData + if updateRun.SystemData != nil { + var systemDatum v20230315ps.SystemData_STATUS + err := updateRun.SystemData.AssignProperties_To_SystemData_STATUS(&systemDatum) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_SystemData_STATUS() to populate field SystemData") + } + destination.SystemData = &systemDatum + } else { + destination.SystemData = nil + } + + // Type + destination.Type = genruntime.ClonePointerToString(updateRun.Type) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The update to be applied to the ManagedClusters. +type ManagedClusterUpdate struct { + // +kubebuilder:validation:Required + // Upgrade: The upgrade to apply to the ManagedClusters. + Upgrade *ManagedClusterUpgradeSpec `json:"upgrade,omitempty"` +} + +var _ genruntime.ARMTransformer = &ManagedClusterUpdate{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (update *ManagedClusterUpdate) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if update == nil { + return nil, nil + } + result := &ManagedClusterUpdate_ARM{} + + // Set property "Upgrade": + if update.Upgrade != nil { + upgrade_ARM, err := (*update.Upgrade).ConvertToARM(resolved) + if err != nil { + return nil, err + } + upgrade := *upgrade_ARM.(*ManagedClusterUpgradeSpec_ARM) + result.Upgrade = &upgrade + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (update *ManagedClusterUpdate) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ManagedClusterUpdate_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (update *ManagedClusterUpdate) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ManagedClusterUpdate_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ManagedClusterUpdate_ARM, got %T", armInput) + } + + // Set property "Upgrade": + if typedInput.Upgrade != nil { + var upgrade1 ManagedClusterUpgradeSpec + err := upgrade1.PopulateFromARM(owner, *typedInput.Upgrade) + if err != nil { + return err + } + upgrade := upgrade1 + update.Upgrade = &upgrade + } + + // No error + return nil +} + +// AssignProperties_From_ManagedClusterUpdate populates our ManagedClusterUpdate from the provided source ManagedClusterUpdate +func (update *ManagedClusterUpdate) AssignProperties_From_ManagedClusterUpdate(source *v20230315ps.ManagedClusterUpdate) error { + + // Upgrade + if source.Upgrade != nil { + var upgrade ManagedClusterUpgradeSpec + err := upgrade.AssignProperties_From_ManagedClusterUpgradeSpec(source.Upgrade) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ManagedClusterUpgradeSpec() to populate field Upgrade") + } + update.Upgrade = &upgrade + } else { + update.Upgrade = nil + } + + // No error + return nil +} + +// AssignProperties_To_ManagedClusterUpdate populates the provided destination ManagedClusterUpdate from our ManagedClusterUpdate +func (update *ManagedClusterUpdate) AssignProperties_To_ManagedClusterUpdate(destination *v20230315ps.ManagedClusterUpdate) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Upgrade + if update.Upgrade != nil { + var upgrade v20230315ps.ManagedClusterUpgradeSpec + err := update.Upgrade.AssignProperties_To_ManagedClusterUpgradeSpec(&upgrade) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ManagedClusterUpgradeSpec() to populate field Upgrade") + } + destination.Upgrade = &upgrade + } else { + destination.Upgrade = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_ManagedClusterUpdate_STATUS populates our ManagedClusterUpdate from the provided source ManagedClusterUpdate_STATUS +func (update *ManagedClusterUpdate) Initialize_From_ManagedClusterUpdate_STATUS(source *ManagedClusterUpdate_STATUS) error { + + // Upgrade + if source.Upgrade != nil { + var upgrade ManagedClusterUpgradeSpec + err := upgrade.Initialize_From_ManagedClusterUpgradeSpec_STATUS(source.Upgrade) + if err != nil { + return errors.Wrap(err, "calling Initialize_From_ManagedClusterUpgradeSpec_STATUS() to populate field Upgrade") + } + update.Upgrade = &upgrade + } else { + update.Upgrade = nil + } + + // No error + return nil +} + +// The update to be applied to the ManagedClusters. +type ManagedClusterUpdate_STATUS struct { + // Upgrade: The upgrade to apply to the ManagedClusters. + Upgrade *ManagedClusterUpgradeSpec_STATUS `json:"upgrade,omitempty"` +} + +var _ genruntime.FromARMConverter = &ManagedClusterUpdate_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (update *ManagedClusterUpdate_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ManagedClusterUpdate_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (update *ManagedClusterUpdate_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ManagedClusterUpdate_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ManagedClusterUpdate_STATUS_ARM, got %T", armInput) + } + + // Set property "Upgrade": + if typedInput.Upgrade != nil { + var upgrade1 ManagedClusterUpgradeSpec_STATUS + err := upgrade1.PopulateFromARM(owner, *typedInput.Upgrade) + if err != nil { + return err + } + upgrade := upgrade1 + update.Upgrade = &upgrade + } + + // No error + return nil +} + +// AssignProperties_From_ManagedClusterUpdate_STATUS populates our ManagedClusterUpdate_STATUS from the provided source ManagedClusterUpdate_STATUS +func (update *ManagedClusterUpdate_STATUS) AssignProperties_From_ManagedClusterUpdate_STATUS(source *v20230315ps.ManagedClusterUpdate_STATUS) error { + + // Upgrade + if source.Upgrade != nil { + var upgrade ManagedClusterUpgradeSpec_STATUS + err := upgrade.AssignProperties_From_ManagedClusterUpgradeSpec_STATUS(source.Upgrade) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ManagedClusterUpgradeSpec_STATUS() to populate field Upgrade") + } + update.Upgrade = &upgrade + } else { + update.Upgrade = nil + } + + // No error + return nil +} + +// AssignProperties_To_ManagedClusterUpdate_STATUS populates the provided destination ManagedClusterUpdate_STATUS from our ManagedClusterUpdate_STATUS +func (update *ManagedClusterUpdate_STATUS) AssignProperties_To_ManagedClusterUpdate_STATUS(destination *v20230315ps.ManagedClusterUpdate_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Upgrade + if update.Upgrade != nil { + var upgrade v20230315ps.ManagedClusterUpgradeSpec_STATUS + err := update.Upgrade.AssignProperties_To_ManagedClusterUpgradeSpec_STATUS(&upgrade) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ManagedClusterUpgradeSpec_STATUS() to populate field Upgrade") + } + destination.Upgrade = &upgrade + } else { + destination.Upgrade = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The provisioning state of the UpdateRun resource. +type UpdateRunProvisioningState_STATUS string + +const ( + UpdateRunProvisioningState_STATUS_Canceled = UpdateRunProvisioningState_STATUS("Canceled") + UpdateRunProvisioningState_STATUS_Failed = UpdateRunProvisioningState_STATUS("Failed") + UpdateRunProvisioningState_STATUS_Succeeded = UpdateRunProvisioningState_STATUS("Succeeded") +) + +// The status of a UpdateRun. +type UpdateRunStatus_STATUS struct { + // Stages: The stages composing an update run. Stages are run sequentially withing an UpdateRun. + Stages []UpdateStageStatus_STATUS `json:"stages,omitempty"` + + // Status: The status of the UpdateRun. + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateRunStatus_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (status *UpdateRunStatus_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateRunStatus_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (status *UpdateRunStatus_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateRunStatus_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateRunStatus_STATUS_ARM, got %T", armInput) + } + + // Set property "Stages": + for _, item := range typedInput.Stages { + var item1 UpdateStageStatus_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + status.Stages = append(status.Stages, item1) + } + + // Set property "Status": + if typedInput.Status != nil { + var status2 UpdateStatus_STATUS + err := status2.PopulateFromARM(owner, *typedInput.Status) + if err != nil { + return err + } + status1 := status2 + status.Status = &status1 + } + + // No error + return nil +} + +// AssignProperties_From_UpdateRunStatus_STATUS populates our UpdateRunStatus_STATUS from the provided source UpdateRunStatus_STATUS +func (status *UpdateRunStatus_STATUS) AssignProperties_From_UpdateRunStatus_STATUS(source *v20230315ps.UpdateRunStatus_STATUS) error { + + // Stages + if source.Stages != nil { + stageList := make([]UpdateStageStatus_STATUS, len(source.Stages)) + for stageIndex, stageItem := range source.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage UpdateStageStatus_STATUS + err := stage.AssignProperties_From_UpdateStageStatus_STATUS(&stageItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStageStatus_STATUS() to populate field Stages") + } + stageList[stageIndex] = stage + } + status.Stages = stageList + } else { + status.Stages = nil + } + + // Status + if source.Status != nil { + var statusLocal UpdateStatus_STATUS + err := statusLocal.AssignProperties_From_UpdateStatus_STATUS(source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStatus_STATUS() to populate field Status") + } + status.Status = &statusLocal + } else { + status.Status = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateRunStatus_STATUS populates the provided destination UpdateRunStatus_STATUS from our UpdateRunStatus_STATUS +func (status *UpdateRunStatus_STATUS) AssignProperties_To_UpdateRunStatus_STATUS(destination *v20230315ps.UpdateRunStatus_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Stages + if status.Stages != nil { + stageList := make([]v20230315ps.UpdateStageStatus_STATUS, len(status.Stages)) + for stageIndex, stageItem := range status.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage v20230315ps.UpdateStageStatus_STATUS + err := stageItem.AssignProperties_To_UpdateStageStatus_STATUS(&stage) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStageStatus_STATUS() to populate field Stages") + } + stageList[stageIndex] = stage + } + destination.Stages = stageList + } else { + destination.Stages = nil + } + + // Status + if status.Status != nil { + var statusLocal v20230315ps.UpdateStatus_STATUS + err := status.Status.AssignProperties_To_UpdateStatus_STATUS(&statusLocal) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStatus_STATUS() to populate field Status") + } + destination.Status = &statusLocal + } else { + destination.Status = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The UpdateRunStrategy configures the sequence of Stages and Groups in which the clusters will be updated. +type UpdateRunStrategy struct { + // +kubebuilder:validation:Required + // Stages: The list of stages that compose this update run. + Stages []UpdateStage `json:"stages,omitempty"` +} + +var _ genruntime.ARMTransformer = &UpdateRunStrategy{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (strategy *UpdateRunStrategy) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if strategy == nil { + return nil, nil + } + result := &UpdateRunStrategy_ARM{} + + // Set property "Stages": + for _, item := range strategy.Stages { + item_ARM, err := item.ConvertToARM(resolved) + if err != nil { + return nil, err + } + result.Stages = append(result.Stages, *item_ARM.(*UpdateStage_ARM)) + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (strategy *UpdateRunStrategy) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateRunStrategy_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (strategy *UpdateRunStrategy) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateRunStrategy_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateRunStrategy_ARM, got %T", armInput) + } + + // Set property "Stages": + for _, item := range typedInput.Stages { + var item1 UpdateStage + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + strategy.Stages = append(strategy.Stages, item1) + } + + // No error + return nil +} + +// AssignProperties_From_UpdateRunStrategy populates our UpdateRunStrategy from the provided source UpdateRunStrategy +func (strategy *UpdateRunStrategy) AssignProperties_From_UpdateRunStrategy(source *v20230315ps.UpdateRunStrategy) error { + + // Stages + if source.Stages != nil { + stageList := make([]UpdateStage, len(source.Stages)) + for stageIndex, stageItem := range source.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage UpdateStage + err := stage.AssignProperties_From_UpdateStage(&stageItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStage() to populate field Stages") + } + stageList[stageIndex] = stage + } + strategy.Stages = stageList + } else { + strategy.Stages = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateRunStrategy populates the provided destination UpdateRunStrategy from our UpdateRunStrategy +func (strategy *UpdateRunStrategy) AssignProperties_To_UpdateRunStrategy(destination *v20230315ps.UpdateRunStrategy) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Stages + if strategy.Stages != nil { + stageList := make([]v20230315ps.UpdateStage, len(strategy.Stages)) + for stageIndex, stageItem := range strategy.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage v20230315ps.UpdateStage + err := stageItem.AssignProperties_To_UpdateStage(&stage) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStage() to populate field Stages") + } + stageList[stageIndex] = stage + } + destination.Stages = stageList + } else { + destination.Stages = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_UpdateRunStrategy_STATUS populates our UpdateRunStrategy from the provided source UpdateRunStrategy_STATUS +func (strategy *UpdateRunStrategy) Initialize_From_UpdateRunStrategy_STATUS(source *UpdateRunStrategy_STATUS) error { + + // Stages + if source.Stages != nil { + stageList := make([]UpdateStage, len(source.Stages)) + for stageIndex, stageItem := range source.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage UpdateStage + err := stage.Initialize_From_UpdateStage_STATUS(&stageItem) + if err != nil { + return errors.Wrap(err, "calling Initialize_From_UpdateStage_STATUS() to populate field Stages") + } + stageList[stageIndex] = stage + } + strategy.Stages = stageList + } else { + strategy.Stages = nil + } + + // No error + return nil +} + +// The UpdateRunStrategy configures the sequence of Stages and Groups in which the clusters will be updated. +type UpdateRunStrategy_STATUS struct { + // Stages: The list of stages that compose this update run. + Stages []UpdateStage_STATUS `json:"stages,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateRunStrategy_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (strategy *UpdateRunStrategy_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateRunStrategy_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (strategy *UpdateRunStrategy_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateRunStrategy_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateRunStrategy_STATUS_ARM, got %T", armInput) + } + + // Set property "Stages": + for _, item := range typedInput.Stages { + var item1 UpdateStage_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + strategy.Stages = append(strategy.Stages, item1) + } + + // No error + return nil +} + +// AssignProperties_From_UpdateRunStrategy_STATUS populates our UpdateRunStrategy_STATUS from the provided source UpdateRunStrategy_STATUS +func (strategy *UpdateRunStrategy_STATUS) AssignProperties_From_UpdateRunStrategy_STATUS(source *v20230315ps.UpdateRunStrategy_STATUS) error { + + // Stages + if source.Stages != nil { + stageList := make([]UpdateStage_STATUS, len(source.Stages)) + for stageIndex, stageItem := range source.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage UpdateStage_STATUS + err := stage.AssignProperties_From_UpdateStage_STATUS(&stageItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStage_STATUS() to populate field Stages") + } + stageList[stageIndex] = stage + } + strategy.Stages = stageList + } else { + strategy.Stages = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateRunStrategy_STATUS populates the provided destination UpdateRunStrategy_STATUS from our UpdateRunStrategy_STATUS +func (strategy *UpdateRunStrategy_STATUS) AssignProperties_To_UpdateRunStrategy_STATUS(destination *v20230315ps.UpdateRunStrategy_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Stages + if strategy.Stages != nil { + stageList := make([]v20230315ps.UpdateStage_STATUS, len(strategy.Stages)) + for stageIndex, stageItem := range strategy.Stages { + // Shadow the loop variable to avoid aliasing + stageItem := stageItem + var stage v20230315ps.UpdateStage_STATUS + err := stageItem.AssignProperties_To_UpdateStage_STATUS(&stage) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStage_STATUS() to populate field Stages") + } + stageList[stageIndex] = stage + } + destination.Stages = stageList + } else { + destination.Stages = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The upgrade to apply to a ManagedCluster. +type ManagedClusterUpgradeSpec struct { + // KubernetesVersion: The Kubernetes version to upgrade the member clusters to. + KubernetesVersion *string `json:"kubernetesVersion,omitempty"` + + // +kubebuilder:validation:Required + // Type: The upgrade type. + // Full requires the KubernetesVersion property to be set. + // NodeImageOnly requires the KubernetesVersion property not to be set. + Type *ManagedClusterUpgradeType `json:"type,omitempty"` +} + +var _ genruntime.ARMTransformer = &ManagedClusterUpgradeSpec{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (upgrade *ManagedClusterUpgradeSpec) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if upgrade == nil { + return nil, nil + } + result := &ManagedClusterUpgradeSpec_ARM{} + + // Set property "KubernetesVersion": + if upgrade.KubernetesVersion != nil { + kubernetesVersion := *upgrade.KubernetesVersion + result.KubernetesVersion = &kubernetesVersion + } + + // Set property "Type": + if upgrade.Type != nil { + typeVar := *upgrade.Type + result.Type = &typeVar + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (upgrade *ManagedClusterUpgradeSpec) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ManagedClusterUpgradeSpec_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (upgrade *ManagedClusterUpgradeSpec) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ManagedClusterUpgradeSpec_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ManagedClusterUpgradeSpec_ARM, got %T", armInput) + } + + // Set property "KubernetesVersion": + if typedInput.KubernetesVersion != nil { + kubernetesVersion := *typedInput.KubernetesVersion + upgrade.KubernetesVersion = &kubernetesVersion + } + + // Set property "Type": + if typedInput.Type != nil { + typeVar := *typedInput.Type + upgrade.Type = &typeVar + } + + // No error + return nil +} + +// AssignProperties_From_ManagedClusterUpgradeSpec populates our ManagedClusterUpgradeSpec from the provided source ManagedClusterUpgradeSpec +func (upgrade *ManagedClusterUpgradeSpec) AssignProperties_From_ManagedClusterUpgradeSpec(source *v20230315ps.ManagedClusterUpgradeSpec) error { + + // KubernetesVersion + upgrade.KubernetesVersion = genruntime.ClonePointerToString(source.KubernetesVersion) + + // Type + if source.Type != nil { + typeVar := ManagedClusterUpgradeType(*source.Type) + upgrade.Type = &typeVar + } else { + upgrade.Type = nil + } + + // No error + return nil +} + +// AssignProperties_To_ManagedClusterUpgradeSpec populates the provided destination ManagedClusterUpgradeSpec from our ManagedClusterUpgradeSpec +func (upgrade *ManagedClusterUpgradeSpec) AssignProperties_To_ManagedClusterUpgradeSpec(destination *v20230315ps.ManagedClusterUpgradeSpec) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // KubernetesVersion + destination.KubernetesVersion = genruntime.ClonePointerToString(upgrade.KubernetesVersion) + + // Type + if upgrade.Type != nil { + typeVar := string(*upgrade.Type) + destination.Type = &typeVar + } else { + destination.Type = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_ManagedClusterUpgradeSpec_STATUS populates our ManagedClusterUpgradeSpec from the provided source ManagedClusterUpgradeSpec_STATUS +func (upgrade *ManagedClusterUpgradeSpec) Initialize_From_ManagedClusterUpgradeSpec_STATUS(source *ManagedClusterUpgradeSpec_STATUS) error { + + // KubernetesVersion + upgrade.KubernetesVersion = genruntime.ClonePointerToString(source.KubernetesVersion) + + // Type + if source.Type != nil { + typeVar := ManagedClusterUpgradeType(*source.Type) + upgrade.Type = &typeVar + } else { + upgrade.Type = nil + } + + // No error + return nil +} + +// The upgrade to apply to a ManagedCluster. +type ManagedClusterUpgradeSpec_STATUS struct { + // KubernetesVersion: The Kubernetes version to upgrade the member clusters to. + KubernetesVersion *string `json:"kubernetesVersion,omitempty"` + + // Type: The upgrade type. + // Full requires the KubernetesVersion property to be set. + // NodeImageOnly requires the KubernetesVersion property not to be set. + Type *ManagedClusterUpgradeType_STATUS `json:"type,omitempty"` +} + +var _ genruntime.FromARMConverter = &ManagedClusterUpgradeSpec_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (upgrade *ManagedClusterUpgradeSpec_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ManagedClusterUpgradeSpec_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (upgrade *ManagedClusterUpgradeSpec_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ManagedClusterUpgradeSpec_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ManagedClusterUpgradeSpec_STATUS_ARM, got %T", armInput) + } + + // Set property "KubernetesVersion": + if typedInput.KubernetesVersion != nil { + kubernetesVersion := *typedInput.KubernetesVersion + upgrade.KubernetesVersion = &kubernetesVersion + } + + // Set property "Type": + if typedInput.Type != nil { + typeVar := *typedInput.Type + upgrade.Type = &typeVar + } + + // No error + return nil +} + +// AssignProperties_From_ManagedClusterUpgradeSpec_STATUS populates our ManagedClusterUpgradeSpec_STATUS from the provided source ManagedClusterUpgradeSpec_STATUS +func (upgrade *ManagedClusterUpgradeSpec_STATUS) AssignProperties_From_ManagedClusterUpgradeSpec_STATUS(source *v20230315ps.ManagedClusterUpgradeSpec_STATUS) error { + + // KubernetesVersion + upgrade.KubernetesVersion = genruntime.ClonePointerToString(source.KubernetesVersion) + + // Type + if source.Type != nil { + typeVar := ManagedClusterUpgradeType_STATUS(*source.Type) + upgrade.Type = &typeVar + } else { + upgrade.Type = nil + } + + // No error + return nil +} + +// AssignProperties_To_ManagedClusterUpgradeSpec_STATUS populates the provided destination ManagedClusterUpgradeSpec_STATUS from our ManagedClusterUpgradeSpec_STATUS +func (upgrade *ManagedClusterUpgradeSpec_STATUS) AssignProperties_To_ManagedClusterUpgradeSpec_STATUS(destination *v20230315ps.ManagedClusterUpgradeSpec_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // KubernetesVersion + destination.KubernetesVersion = genruntime.ClonePointerToString(upgrade.KubernetesVersion) + + // Type + if upgrade.Type != nil { + typeVar := string(*upgrade.Type) + destination.Type = &typeVar + } else { + destination.Type = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Contains the groups to be updated by an UpdateRun. +// Update order: +// - Sequential between stages: Stages run sequentially. +// The previous stage must complete before the next one starts. +// - Parallel within a stage: Groups within a stage run in +// parallel. +// - Sequential within a group: Clusters within a group are updated sequentially. +type UpdateStage struct { + // AfterStageWaitInSeconds: The time in seconds to wait at the end of this stage before starting the next one. Defaults to + // 0 seconds if unspecified. + AfterStageWaitInSeconds *int `json:"afterStageWaitInSeconds,omitempty"` + + // Groups: A list of group names that compose the stage. + // The groups will be updated in parallel. Each group name can only appear once in the UpdateRun. + Groups []UpdateGroup `json:"groups,omitempty"` + + // +kubebuilder:validation:Required + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // Name: The name of the stage. Must be unique within the UpdateRun. + Name *string `json:"name,omitempty"` +} + +var _ genruntime.ARMTransformer = &UpdateStage{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (stage *UpdateStage) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if stage == nil { + return nil, nil + } + result := &UpdateStage_ARM{} + + // Set property "AfterStageWaitInSeconds": + if stage.AfterStageWaitInSeconds != nil { + afterStageWaitInSeconds := *stage.AfterStageWaitInSeconds + result.AfterStageWaitInSeconds = &afterStageWaitInSeconds + } + + // Set property "Groups": + for _, item := range stage.Groups { + item_ARM, err := item.ConvertToARM(resolved) + if err != nil { + return nil, err + } + result.Groups = append(result.Groups, *item_ARM.(*UpdateGroup_ARM)) + } + + // Set property "Name": + if stage.Name != nil { + name := *stage.Name + result.Name = &name + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (stage *UpdateStage) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateStage_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (stage *UpdateStage) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateStage_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateStage_ARM, got %T", armInput) + } + + // Set property "AfterStageWaitInSeconds": + if typedInput.AfterStageWaitInSeconds != nil { + afterStageWaitInSeconds := *typedInput.AfterStageWaitInSeconds + stage.AfterStageWaitInSeconds = &afterStageWaitInSeconds + } + + // Set property "Groups": + for _, item := range typedInput.Groups { + var item1 UpdateGroup + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + stage.Groups = append(stage.Groups, item1) + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + stage.Name = &name + } + + // No error + return nil +} + +// AssignProperties_From_UpdateStage populates our UpdateStage from the provided source UpdateStage +func (stage *UpdateStage) AssignProperties_From_UpdateStage(source *v20230315ps.UpdateStage) error { + + // AfterStageWaitInSeconds + stage.AfterStageWaitInSeconds = genruntime.ClonePointerToInt(source.AfterStageWaitInSeconds) + + // Groups + if source.Groups != nil { + groupList := make([]UpdateGroup, len(source.Groups)) + for groupIndex, groupItem := range source.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group UpdateGroup + err := group.AssignProperties_From_UpdateGroup(&groupItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateGroup() to populate field Groups") + } + groupList[groupIndex] = group + } + stage.Groups = groupList + } else { + stage.Groups = nil + } + + // Name + if source.Name != nil { + name := *source.Name + stage.Name = &name + } else { + stage.Name = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateStage populates the provided destination UpdateStage from our UpdateStage +func (stage *UpdateStage) AssignProperties_To_UpdateStage(destination *v20230315ps.UpdateStage) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AfterStageWaitInSeconds + destination.AfterStageWaitInSeconds = genruntime.ClonePointerToInt(stage.AfterStageWaitInSeconds) + + // Groups + if stage.Groups != nil { + groupList := make([]v20230315ps.UpdateGroup, len(stage.Groups)) + for groupIndex, groupItem := range stage.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group v20230315ps.UpdateGroup + err := groupItem.AssignProperties_To_UpdateGroup(&group) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateGroup() to populate field Groups") + } + groupList[groupIndex] = group + } + destination.Groups = groupList + } else { + destination.Groups = nil + } + + // Name + if stage.Name != nil { + name := *stage.Name + destination.Name = &name + } else { + destination.Name = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_UpdateStage_STATUS populates our UpdateStage from the provided source UpdateStage_STATUS +func (stage *UpdateStage) Initialize_From_UpdateStage_STATUS(source *UpdateStage_STATUS) error { + + // AfterStageWaitInSeconds + stage.AfterStageWaitInSeconds = genruntime.ClonePointerToInt(source.AfterStageWaitInSeconds) + + // Groups + if source.Groups != nil { + groupList := make([]UpdateGroup, len(source.Groups)) + for groupIndex, groupItem := range source.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group UpdateGroup + err := group.Initialize_From_UpdateGroup_STATUS(&groupItem) + if err != nil { + return errors.Wrap(err, "calling Initialize_From_UpdateGroup_STATUS() to populate field Groups") + } + groupList[groupIndex] = group + } + stage.Groups = groupList + } else { + stage.Groups = nil + } + + // Name + if source.Name != nil { + name := *source.Name + stage.Name = &name + } else { + stage.Name = nil + } + + // No error + return nil +} + +// Contains the groups to be updated by an UpdateRun. +// Update order: +// - Sequential between stages: Stages run sequentially. +// The previous stage must complete before the next one starts. +// - Parallel within a stage: Groups within a stage run in +// parallel. +// - Sequential within a group: Clusters within a group are updated sequentially. +type UpdateStage_STATUS struct { + // AfterStageWaitInSeconds: The time in seconds to wait at the end of this stage before starting the next one. Defaults to + // 0 seconds if unspecified. + AfterStageWaitInSeconds *int `json:"afterStageWaitInSeconds,omitempty"` + + // Groups: A list of group names that compose the stage. + // The groups will be updated in parallel. Each group name can only appear once in the UpdateRun. + Groups []UpdateGroup_STATUS `json:"groups,omitempty"` + + // Name: The name of the stage. Must be unique within the UpdateRun. + Name *string `json:"name,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateStage_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (stage *UpdateStage_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateStage_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (stage *UpdateStage_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateStage_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateStage_STATUS_ARM, got %T", armInput) + } + + // Set property "AfterStageWaitInSeconds": + if typedInput.AfterStageWaitInSeconds != nil { + afterStageWaitInSeconds := *typedInput.AfterStageWaitInSeconds + stage.AfterStageWaitInSeconds = &afterStageWaitInSeconds + } + + // Set property "Groups": + for _, item := range typedInput.Groups { + var item1 UpdateGroup_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + stage.Groups = append(stage.Groups, item1) + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + stage.Name = &name + } + + // No error + return nil +} + +// AssignProperties_From_UpdateStage_STATUS populates our UpdateStage_STATUS from the provided source UpdateStage_STATUS +func (stage *UpdateStage_STATUS) AssignProperties_From_UpdateStage_STATUS(source *v20230315ps.UpdateStage_STATUS) error { + + // AfterStageWaitInSeconds + stage.AfterStageWaitInSeconds = genruntime.ClonePointerToInt(source.AfterStageWaitInSeconds) + + // Groups + if source.Groups != nil { + groupList := make([]UpdateGroup_STATUS, len(source.Groups)) + for groupIndex, groupItem := range source.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group UpdateGroup_STATUS + err := group.AssignProperties_From_UpdateGroup_STATUS(&groupItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateGroup_STATUS() to populate field Groups") + } + groupList[groupIndex] = group + } + stage.Groups = groupList + } else { + stage.Groups = nil + } + + // Name + stage.Name = genruntime.ClonePointerToString(source.Name) + + // No error + return nil +} + +// AssignProperties_To_UpdateStage_STATUS populates the provided destination UpdateStage_STATUS from our UpdateStage_STATUS +func (stage *UpdateStage_STATUS) AssignProperties_To_UpdateStage_STATUS(destination *v20230315ps.UpdateStage_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AfterStageWaitInSeconds + destination.AfterStageWaitInSeconds = genruntime.ClonePointerToInt(stage.AfterStageWaitInSeconds) + + // Groups + if stage.Groups != nil { + groupList := make([]v20230315ps.UpdateGroup_STATUS, len(stage.Groups)) + for groupIndex, groupItem := range stage.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group v20230315ps.UpdateGroup_STATUS + err := groupItem.AssignProperties_To_UpdateGroup_STATUS(&group) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateGroup_STATUS() to populate field Groups") + } + groupList[groupIndex] = group + } + destination.Groups = groupList + } else { + destination.Groups = nil + } + + // Name + destination.Name = genruntime.ClonePointerToString(stage.Name) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The status of a UpdateStage. +type UpdateStageStatus_STATUS struct { + // AfterStageWaitStatus: The status of the wait period configured on the UpdateStage. + AfterStageWaitStatus *WaitStatus_STATUS `json:"afterStageWaitStatus,omitempty"` + + // Groups: The list of groups to be updated as part of this UpdateStage. + Groups []UpdateGroupStatus_STATUS `json:"groups,omitempty"` + + // Name: The name of the UpdateStage. + Name *string `json:"name,omitempty"` + + // Status: The status of the UpdateStage. + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateStageStatus_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (status *UpdateStageStatus_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateStageStatus_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (status *UpdateStageStatus_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateStageStatus_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateStageStatus_STATUS_ARM, got %T", armInput) + } + + // Set property "AfterStageWaitStatus": + if typedInput.AfterStageWaitStatus != nil { + var afterStageWaitStatus1 WaitStatus_STATUS + err := afterStageWaitStatus1.PopulateFromARM(owner, *typedInput.AfterStageWaitStatus) + if err != nil { + return err + } + afterStageWaitStatus := afterStageWaitStatus1 + status.AfterStageWaitStatus = &afterStageWaitStatus + } + + // Set property "Groups": + for _, item := range typedInput.Groups { + var item1 UpdateGroupStatus_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + status.Groups = append(status.Groups, item1) + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + status.Name = &name + } + + // Set property "Status": + if typedInput.Status != nil { + var status2 UpdateStatus_STATUS + err := status2.PopulateFromARM(owner, *typedInput.Status) + if err != nil { + return err + } + status1 := status2 + status.Status = &status1 + } + + // No error + return nil +} + +// AssignProperties_From_UpdateStageStatus_STATUS populates our UpdateStageStatus_STATUS from the provided source UpdateStageStatus_STATUS +func (status *UpdateStageStatus_STATUS) AssignProperties_From_UpdateStageStatus_STATUS(source *v20230315ps.UpdateStageStatus_STATUS) error { + + // AfterStageWaitStatus + if source.AfterStageWaitStatus != nil { + var afterStageWaitStatus WaitStatus_STATUS + err := afterStageWaitStatus.AssignProperties_From_WaitStatus_STATUS(source.AfterStageWaitStatus) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_WaitStatus_STATUS() to populate field AfterStageWaitStatus") + } + status.AfterStageWaitStatus = &afterStageWaitStatus + } else { + status.AfterStageWaitStatus = nil + } + + // Groups + if source.Groups != nil { + groupList := make([]UpdateGroupStatus_STATUS, len(source.Groups)) + for groupIndex, groupItem := range source.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group UpdateGroupStatus_STATUS + err := group.AssignProperties_From_UpdateGroupStatus_STATUS(&groupItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateGroupStatus_STATUS() to populate field Groups") + } + groupList[groupIndex] = group + } + status.Groups = groupList + } else { + status.Groups = nil + } + + // Name + status.Name = genruntime.ClonePointerToString(source.Name) + + // Status + if source.Status != nil { + var statusLocal UpdateStatus_STATUS + err := statusLocal.AssignProperties_From_UpdateStatus_STATUS(source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStatus_STATUS() to populate field Status") + } + status.Status = &statusLocal + } else { + status.Status = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateStageStatus_STATUS populates the provided destination UpdateStageStatus_STATUS from our UpdateStageStatus_STATUS +func (status *UpdateStageStatus_STATUS) AssignProperties_To_UpdateStageStatus_STATUS(destination *v20230315ps.UpdateStageStatus_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AfterStageWaitStatus + if status.AfterStageWaitStatus != nil { + var afterStageWaitStatus v20230315ps.WaitStatus_STATUS + err := status.AfterStageWaitStatus.AssignProperties_To_WaitStatus_STATUS(&afterStageWaitStatus) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_WaitStatus_STATUS() to populate field AfterStageWaitStatus") + } + destination.AfterStageWaitStatus = &afterStageWaitStatus + } else { + destination.AfterStageWaitStatus = nil + } + + // Groups + if status.Groups != nil { + groupList := make([]v20230315ps.UpdateGroupStatus_STATUS, len(status.Groups)) + for groupIndex, groupItem := range status.Groups { + // Shadow the loop variable to avoid aliasing + groupItem := groupItem + var group v20230315ps.UpdateGroupStatus_STATUS + err := groupItem.AssignProperties_To_UpdateGroupStatus_STATUS(&group) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateGroupStatus_STATUS() to populate field Groups") + } + groupList[groupIndex] = group + } + destination.Groups = groupList + } else { + destination.Groups = nil + } + + // Name + destination.Name = genruntime.ClonePointerToString(status.Name) + + // Status + if status.Status != nil { + var statusLocal v20230315ps.UpdateStatus_STATUS + err := status.Status.AssignProperties_To_UpdateStatus_STATUS(&statusLocal) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStatus_STATUS() to populate field Status") + } + destination.Status = &statusLocal + } else { + destination.Status = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The status for an operation or group of operations. +type UpdateStatus_STATUS struct { + // CompletedTime: The time the operation or group was completed. + CompletedTime *string `json:"completedTime,omitempty"` + + // Error: The error details when a failure is encountered. + Error *ErrorDetail_STATUS `json:"error,omitempty"` + + // StartTime: The time the operation or group was started. + StartTime *string `json:"startTime,omitempty"` + + // State: The State of the operation or group. + State *UpdateState_STATUS `json:"state,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateStatus_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (status *UpdateStatus_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateStatus_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (status *UpdateStatus_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateStatus_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateStatus_STATUS_ARM, got %T", armInput) + } + + // Set property "CompletedTime": + if typedInput.CompletedTime != nil { + completedTime := *typedInput.CompletedTime + status.CompletedTime = &completedTime + } + + // Set property "Error": + if typedInput.Error != nil { + var error1 ErrorDetail_STATUS + err := error1.PopulateFromARM(owner, *typedInput.Error) + if err != nil { + return err + } + error := error1 + status.Error = &error + } + + // Set property "StartTime": + if typedInput.StartTime != nil { + startTime := *typedInput.StartTime + status.StartTime = &startTime + } + + // Set property "State": + if typedInput.State != nil { + state := *typedInput.State + status.State = &state + } + + // No error + return nil +} + +// AssignProperties_From_UpdateStatus_STATUS populates our UpdateStatus_STATUS from the provided source UpdateStatus_STATUS +func (status *UpdateStatus_STATUS) AssignProperties_From_UpdateStatus_STATUS(source *v20230315ps.UpdateStatus_STATUS) error { + + // CompletedTime + status.CompletedTime = genruntime.ClonePointerToString(source.CompletedTime) + + // Error + if source.Error != nil { + var error ErrorDetail_STATUS + err := error.AssignProperties_From_ErrorDetail_STATUS(source.Error) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ErrorDetail_STATUS() to populate field Error") + } + status.Error = &error + } else { + status.Error = nil + } + + // StartTime + status.StartTime = genruntime.ClonePointerToString(source.StartTime) + + // State + if source.State != nil { + state := UpdateState_STATUS(*source.State) + status.State = &state + } else { + status.State = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateStatus_STATUS populates the provided destination UpdateStatus_STATUS from our UpdateStatus_STATUS +func (status *UpdateStatus_STATUS) AssignProperties_To_UpdateStatus_STATUS(destination *v20230315ps.UpdateStatus_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // CompletedTime + destination.CompletedTime = genruntime.ClonePointerToString(status.CompletedTime) + + // Error + if status.Error != nil { + var error v20230315ps.ErrorDetail_STATUS + err := status.Error.AssignProperties_To_ErrorDetail_STATUS(&error) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ErrorDetail_STATUS() to populate field Error") + } + destination.Error = &error + } else { + destination.Error = nil + } + + // StartTime + destination.StartTime = genruntime.ClonePointerToString(status.StartTime) + + // State + if status.State != nil { + state := string(*status.State) + destination.State = &state + } else { + destination.State = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The error detail. +type ErrorDetail_STATUS struct { + // AdditionalInfo: The error additional info. + AdditionalInfo []ErrorAdditionalInfo_STATUS `json:"additionalInfo,omitempty"` + + // Code: The error code. + Code *string `json:"code,omitempty"` + + // Details: The error details. + Details []ErrorDetail_STATUS_Unrolled `json:"details,omitempty"` + + // Message: The error message. + Message *string `json:"message,omitempty"` + + // Target: The error target. + Target *string `json:"target,omitempty"` +} + +var _ genruntime.FromARMConverter = &ErrorDetail_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (detail *ErrorDetail_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ErrorDetail_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (detail *ErrorDetail_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ErrorDetail_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ErrorDetail_STATUS_ARM, got %T", armInput) + } + + // Set property "AdditionalInfo": + for _, item := range typedInput.AdditionalInfo { + var item1 ErrorAdditionalInfo_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + detail.AdditionalInfo = append(detail.AdditionalInfo, item1) + } + + // Set property "Code": + if typedInput.Code != nil { + code := *typedInput.Code + detail.Code = &code + } + + // Set property "Details": + for _, item := range typedInput.Details { + var item1 ErrorDetail_STATUS_Unrolled + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + detail.Details = append(detail.Details, item1) + } + + // Set property "Message": + if typedInput.Message != nil { + message := *typedInput.Message + detail.Message = &message + } + + // Set property "Target": + if typedInput.Target != nil { + target := *typedInput.Target + detail.Target = &target + } + + // No error + return nil +} + +// AssignProperties_From_ErrorDetail_STATUS populates our ErrorDetail_STATUS from the provided source ErrorDetail_STATUS +func (detail *ErrorDetail_STATUS) AssignProperties_From_ErrorDetail_STATUS(source *v20230315ps.ErrorDetail_STATUS) error { + + // AdditionalInfo + if source.AdditionalInfo != nil { + additionalInfoList := make([]ErrorAdditionalInfo_STATUS, len(source.AdditionalInfo)) + for additionalInfoIndex, additionalInfoItem := range source.AdditionalInfo { + // Shadow the loop variable to avoid aliasing + additionalInfoItem := additionalInfoItem + var additionalInfo ErrorAdditionalInfo_STATUS + err := additionalInfo.AssignProperties_From_ErrorAdditionalInfo_STATUS(&additionalInfoItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ErrorAdditionalInfo_STATUS() to populate field AdditionalInfo") + } + additionalInfoList[additionalInfoIndex] = additionalInfo + } + detail.AdditionalInfo = additionalInfoList + } else { + detail.AdditionalInfo = nil + } + + // Code + detail.Code = genruntime.ClonePointerToString(source.Code) + + // Details + if source.Details != nil { + detailList := make([]ErrorDetail_STATUS_Unrolled, len(source.Details)) + for detailIndex, detailItem := range source.Details { + // Shadow the loop variable to avoid aliasing + detailItem := detailItem + var detailLocal ErrorDetail_STATUS_Unrolled + err := detailLocal.AssignProperties_From_ErrorDetail_STATUS_Unrolled(&detailItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ErrorDetail_STATUS_Unrolled() to populate field Details") + } + detailList[detailIndex] = detailLocal + } + detail.Details = detailList + } else { + detail.Details = nil + } + + // Message + detail.Message = genruntime.ClonePointerToString(source.Message) + + // Target + detail.Target = genruntime.ClonePointerToString(source.Target) + + // No error + return nil +} + +// AssignProperties_To_ErrorDetail_STATUS populates the provided destination ErrorDetail_STATUS from our ErrorDetail_STATUS +func (detail *ErrorDetail_STATUS) AssignProperties_To_ErrorDetail_STATUS(destination *v20230315ps.ErrorDetail_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AdditionalInfo + if detail.AdditionalInfo != nil { + additionalInfoList := make([]v20230315ps.ErrorAdditionalInfo_STATUS, len(detail.AdditionalInfo)) + for additionalInfoIndex, additionalInfoItem := range detail.AdditionalInfo { + // Shadow the loop variable to avoid aliasing + additionalInfoItem := additionalInfoItem + var additionalInfo v20230315ps.ErrorAdditionalInfo_STATUS + err := additionalInfoItem.AssignProperties_To_ErrorAdditionalInfo_STATUS(&additionalInfo) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ErrorAdditionalInfo_STATUS() to populate field AdditionalInfo") + } + additionalInfoList[additionalInfoIndex] = additionalInfo + } + destination.AdditionalInfo = additionalInfoList + } else { + destination.AdditionalInfo = nil + } + + // Code + destination.Code = genruntime.ClonePointerToString(detail.Code) + + // Details + if detail.Details != nil { + detailList := make([]v20230315ps.ErrorDetail_STATUS_Unrolled, len(detail.Details)) + for detailIndex, detailItem := range detail.Details { + // Shadow the loop variable to avoid aliasing + detailItem := detailItem + var detailLocal v20230315ps.ErrorDetail_STATUS_Unrolled + err := detailItem.AssignProperties_To_ErrorDetail_STATUS_Unrolled(&detailLocal) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ErrorDetail_STATUS_Unrolled() to populate field Details") + } + detailList[detailIndex] = detailLocal + } + destination.Details = detailList + } else { + destination.Details = nil + } + + // Message + destination.Message = genruntime.ClonePointerToString(detail.Message) + + // Target + destination.Target = genruntime.ClonePointerToString(detail.Target) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The type of upgrade to perform when targeting ManagedClusters. +// +kubebuilder:validation:Enum={"Full","NodeImageOnly"} +type ManagedClusterUpgradeType string + +const ( + ManagedClusterUpgradeType_Full = ManagedClusterUpgradeType("Full") + ManagedClusterUpgradeType_NodeImageOnly = ManagedClusterUpgradeType("NodeImageOnly") +) + +// The type of upgrade to perform when targeting ManagedClusters. +type ManagedClusterUpgradeType_STATUS string + +const ( + ManagedClusterUpgradeType_STATUS_Full = ManagedClusterUpgradeType_STATUS("Full") + ManagedClusterUpgradeType_STATUS_NodeImageOnly = ManagedClusterUpgradeType_STATUS("NodeImageOnly") +) + +// A group to be updated. +type UpdateGroup struct { + // +kubebuilder:validation:Required + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // Name: The name of the Fleet member group to update. + // It should match the name of an existing FleetMember group. + // A group can only appear once across all UpdateStages in the UpdateRun. + Name *string `json:"name,omitempty"` +} + +var _ genruntime.ARMTransformer = &UpdateGroup{} + +// ConvertToARM converts from a Kubernetes CRD object to an ARM object +func (group *UpdateGroup) ConvertToARM(resolved genruntime.ConvertToARMResolvedDetails) (interface{}, error) { + if group == nil { + return nil, nil + } + result := &UpdateGroup_ARM{} + + // Set property "Name": + if group.Name != nil { + name := *group.Name + result.Name = &name + } + return result, nil +} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (group *UpdateGroup) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateGroup_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (group *UpdateGroup) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateGroup_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateGroup_ARM, got %T", armInput) + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + group.Name = &name + } + + // No error + return nil +} + +// AssignProperties_From_UpdateGroup populates our UpdateGroup from the provided source UpdateGroup +func (group *UpdateGroup) AssignProperties_From_UpdateGroup(source *v20230315ps.UpdateGroup) error { + + // Name + if source.Name != nil { + name := *source.Name + group.Name = &name + } else { + group.Name = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateGroup populates the provided destination UpdateGroup from our UpdateGroup +func (group *UpdateGroup) AssignProperties_To_UpdateGroup(destination *v20230315ps.UpdateGroup) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Name + if group.Name != nil { + name := *group.Name + destination.Name = &name + } else { + destination.Name = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// Initialize_From_UpdateGroup_STATUS populates our UpdateGroup from the provided source UpdateGroup_STATUS +func (group *UpdateGroup) Initialize_From_UpdateGroup_STATUS(source *UpdateGroup_STATUS) error { + + // Name + if source.Name != nil { + name := *source.Name + group.Name = &name + } else { + group.Name = nil + } + + // No error + return nil +} + +// A group to be updated. +type UpdateGroup_STATUS struct { + // Name: The name of the Fleet member group to update. + // It should match the name of an existing FleetMember group. + // A group can only appear once across all UpdateStages in the UpdateRun. + Name *string `json:"name,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateGroup_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (group *UpdateGroup_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateGroup_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (group *UpdateGroup_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateGroup_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateGroup_STATUS_ARM, got %T", armInput) + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + group.Name = &name + } + + // No error + return nil +} + +// AssignProperties_From_UpdateGroup_STATUS populates our UpdateGroup_STATUS from the provided source UpdateGroup_STATUS +func (group *UpdateGroup_STATUS) AssignProperties_From_UpdateGroup_STATUS(source *v20230315ps.UpdateGroup_STATUS) error { + + // Name + group.Name = genruntime.ClonePointerToString(source.Name) + + // No error + return nil +} + +// AssignProperties_To_UpdateGroup_STATUS populates the provided destination UpdateGroup_STATUS from our UpdateGroup_STATUS +func (group *UpdateGroup_STATUS) AssignProperties_To_UpdateGroup_STATUS(destination *v20230315ps.UpdateGroup_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Name + destination.Name = genruntime.ClonePointerToString(group.Name) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The status of a UpdateGroup. +type UpdateGroupStatus_STATUS struct { + // Members: The list of member this UpdateGroup updates. + Members []MemberUpdateStatus_STATUS `json:"members,omitempty"` + + // Name: The name of the UpdateGroup. + Name *string `json:"name,omitempty"` + + // Status: The status of the UpdateGroup. + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +var _ genruntime.FromARMConverter = &UpdateGroupStatus_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (status *UpdateGroupStatus_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &UpdateGroupStatus_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (status *UpdateGroupStatus_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(UpdateGroupStatus_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected UpdateGroupStatus_STATUS_ARM, got %T", armInput) + } + + // Set property "Members": + for _, item := range typedInput.Members { + var item1 MemberUpdateStatus_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + status.Members = append(status.Members, item1) + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + status.Name = &name + } + + // Set property "Status": + if typedInput.Status != nil { + var status2 UpdateStatus_STATUS + err := status2.PopulateFromARM(owner, *typedInput.Status) + if err != nil { + return err + } + status1 := status2 + status.Status = &status1 + } + + // No error + return nil +} + +// AssignProperties_From_UpdateGroupStatus_STATUS populates our UpdateGroupStatus_STATUS from the provided source UpdateGroupStatus_STATUS +func (status *UpdateGroupStatus_STATUS) AssignProperties_From_UpdateGroupStatus_STATUS(source *v20230315ps.UpdateGroupStatus_STATUS) error { + + // Members + if source.Members != nil { + memberList := make([]MemberUpdateStatus_STATUS, len(source.Members)) + for memberIndex, memberItem := range source.Members { + // Shadow the loop variable to avoid aliasing + memberItem := memberItem + var member MemberUpdateStatus_STATUS + err := member.AssignProperties_From_MemberUpdateStatus_STATUS(&memberItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_MemberUpdateStatus_STATUS() to populate field Members") + } + memberList[memberIndex] = member + } + status.Members = memberList + } else { + status.Members = nil + } + + // Name + status.Name = genruntime.ClonePointerToString(source.Name) + + // Status + if source.Status != nil { + var statusLocal UpdateStatus_STATUS + err := statusLocal.AssignProperties_From_UpdateStatus_STATUS(source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStatus_STATUS() to populate field Status") + } + status.Status = &statusLocal + } else { + status.Status = nil + } + + // No error + return nil +} + +// AssignProperties_To_UpdateGroupStatus_STATUS populates the provided destination UpdateGroupStatus_STATUS from our UpdateGroupStatus_STATUS +func (status *UpdateGroupStatus_STATUS) AssignProperties_To_UpdateGroupStatus_STATUS(destination *v20230315ps.UpdateGroupStatus_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Members + if status.Members != nil { + memberList := make([]v20230315ps.MemberUpdateStatus_STATUS, len(status.Members)) + for memberIndex, memberItem := range status.Members { + // Shadow the loop variable to avoid aliasing + memberItem := memberItem + var member v20230315ps.MemberUpdateStatus_STATUS + err := memberItem.AssignProperties_To_MemberUpdateStatus_STATUS(&member) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_MemberUpdateStatus_STATUS() to populate field Members") + } + memberList[memberIndex] = member + } + destination.Members = memberList + } else { + destination.Members = nil + } + + // Name + destination.Name = genruntime.ClonePointerToString(status.Name) + + // Status + if status.Status != nil { + var statusLocal v20230315ps.UpdateStatus_STATUS + err := status.Status.AssignProperties_To_UpdateStatus_STATUS(&statusLocal) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStatus_STATUS() to populate field Status") + } + destination.Status = &statusLocal + } else { + destination.Status = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The state of the UpdateRun, UpdateStage, UpdateGroup, or MemberUpdate. +type UpdateState_STATUS string + +const ( + UpdateState_STATUS_Completed = UpdateState_STATUS("Completed") + UpdateState_STATUS_Failed = UpdateState_STATUS("Failed") + UpdateState_STATUS_NotStarted = UpdateState_STATUS("NotStarted") + UpdateState_STATUS_Running = UpdateState_STATUS("Running") + UpdateState_STATUS_Stopped = UpdateState_STATUS("Stopped") + UpdateState_STATUS_Stopping = UpdateState_STATUS("Stopping") +) + +// The status of the wait duration. +type WaitStatus_STATUS struct { + // Status: The status of the wait duration. + Status *UpdateStatus_STATUS `json:"status,omitempty"` + + // WaitDurationInSeconds: The wait duration configured in seconds. + WaitDurationInSeconds *int `json:"waitDurationInSeconds,omitempty"` +} + +var _ genruntime.FromARMConverter = &WaitStatus_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (status *WaitStatus_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &WaitStatus_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (status *WaitStatus_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(WaitStatus_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected WaitStatus_STATUS_ARM, got %T", armInput) + } + + // Set property "Status": + if typedInput.Status != nil { + var status2 UpdateStatus_STATUS + err := status2.PopulateFromARM(owner, *typedInput.Status) + if err != nil { + return err + } + status1 := status2 + status.Status = &status1 + } + + // Set property "WaitDurationInSeconds": + if typedInput.WaitDurationInSeconds != nil { + waitDurationInSeconds := *typedInput.WaitDurationInSeconds + status.WaitDurationInSeconds = &waitDurationInSeconds + } + + // No error + return nil +} + +// AssignProperties_From_WaitStatus_STATUS populates our WaitStatus_STATUS from the provided source WaitStatus_STATUS +func (status *WaitStatus_STATUS) AssignProperties_From_WaitStatus_STATUS(source *v20230315ps.WaitStatus_STATUS) error { + + // Status + if source.Status != nil { + var statusLocal UpdateStatus_STATUS + err := statusLocal.AssignProperties_From_UpdateStatus_STATUS(source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStatus_STATUS() to populate field Status") + } + status.Status = &statusLocal + } else { + status.Status = nil + } + + // WaitDurationInSeconds + status.WaitDurationInSeconds = genruntime.ClonePointerToInt(source.WaitDurationInSeconds) + + // No error + return nil +} + +// AssignProperties_To_WaitStatus_STATUS populates the provided destination WaitStatus_STATUS from our WaitStatus_STATUS +func (status *WaitStatus_STATUS) AssignProperties_To_WaitStatus_STATUS(destination *v20230315ps.WaitStatus_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Status + if status.Status != nil { + var statusLocal v20230315ps.UpdateStatus_STATUS + err := status.Status.AssignProperties_To_UpdateStatus_STATUS(&statusLocal) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStatus_STATUS() to populate field Status") + } + destination.Status = &statusLocal + } else { + destination.Status = nil + } + + // WaitDurationInSeconds + destination.WaitDurationInSeconds = genruntime.ClonePointerToInt(status.WaitDurationInSeconds) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The resource management error additional info. +type ErrorAdditionalInfo_STATUS struct { + // Info: The additional info. + Info map[string]v1.JSON `json:"info,omitempty"` + + // Type: The additional info type. + Type *string `json:"type,omitempty"` +} + +var _ genruntime.FromARMConverter = &ErrorAdditionalInfo_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (info *ErrorAdditionalInfo_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ErrorAdditionalInfo_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (info *ErrorAdditionalInfo_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ErrorAdditionalInfo_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ErrorAdditionalInfo_STATUS_ARM, got %T", armInput) + } + + // Set property "Info": + if typedInput.Info != nil { + info.Info = make(map[string]v1.JSON, len(typedInput.Info)) + for key, value := range typedInput.Info { + info.Info[key] = *value.DeepCopy() + } + } + + // Set property "Type": + if typedInput.Type != nil { + typeVar := *typedInput.Type + info.Type = &typeVar + } + + // No error + return nil +} + +// AssignProperties_From_ErrorAdditionalInfo_STATUS populates our ErrorAdditionalInfo_STATUS from the provided source ErrorAdditionalInfo_STATUS +func (info *ErrorAdditionalInfo_STATUS) AssignProperties_From_ErrorAdditionalInfo_STATUS(source *v20230315ps.ErrorAdditionalInfo_STATUS) error { + + // Info + if source.Info != nil { + infoMap := make(map[string]v1.JSON, len(source.Info)) + for infoKey, infoValue := range source.Info { + // Shadow the loop variable to avoid aliasing + infoValue := infoValue + infoMap[infoKey] = *infoValue.DeepCopy() + } + info.Info = infoMap + } else { + info.Info = nil + } + + // Type + info.Type = genruntime.ClonePointerToString(source.Type) + + // No error + return nil +} + +// AssignProperties_To_ErrorAdditionalInfo_STATUS populates the provided destination ErrorAdditionalInfo_STATUS from our ErrorAdditionalInfo_STATUS +func (info *ErrorAdditionalInfo_STATUS) AssignProperties_To_ErrorAdditionalInfo_STATUS(destination *v20230315ps.ErrorAdditionalInfo_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // Info + if info.Info != nil { + infoMap := make(map[string]v1.JSON, len(info.Info)) + for infoKey, infoValue := range info.Info { + // Shadow the loop variable to avoid aliasing + infoValue := infoValue + infoMap[infoKey] = *infoValue.DeepCopy() + } + destination.Info = infoMap + } else { + destination.Info = nil + } + + // Type + destination.Type = genruntime.ClonePointerToString(info.Type) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +type ErrorDetail_STATUS_Unrolled struct { + // AdditionalInfo: The error additional info. + AdditionalInfo []ErrorAdditionalInfo_STATUS `json:"additionalInfo,omitempty"` + + // Code: The error code. + Code *string `json:"code,omitempty"` + + // Message: The error message. + Message *string `json:"message,omitempty"` + + // Target: The error target. + Target *string `json:"target,omitempty"` +} + +var _ genruntime.FromARMConverter = &ErrorDetail_STATUS_Unrolled{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (unrolled *ErrorDetail_STATUS_Unrolled) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &ErrorDetail_STATUS_Unrolled_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (unrolled *ErrorDetail_STATUS_Unrolled) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(ErrorDetail_STATUS_Unrolled_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected ErrorDetail_STATUS_Unrolled_ARM, got %T", armInput) + } + + // Set property "AdditionalInfo": + for _, item := range typedInput.AdditionalInfo { + var item1 ErrorAdditionalInfo_STATUS + err := item1.PopulateFromARM(owner, item) + if err != nil { + return err + } + unrolled.AdditionalInfo = append(unrolled.AdditionalInfo, item1) + } + + // Set property "Code": + if typedInput.Code != nil { + code := *typedInput.Code + unrolled.Code = &code + } + + // Set property "Message": + if typedInput.Message != nil { + message := *typedInput.Message + unrolled.Message = &message + } + + // Set property "Target": + if typedInput.Target != nil { + target := *typedInput.Target + unrolled.Target = &target + } + + // No error + return nil +} + +// AssignProperties_From_ErrorDetail_STATUS_Unrolled populates our ErrorDetail_STATUS_Unrolled from the provided source ErrorDetail_STATUS_Unrolled +func (unrolled *ErrorDetail_STATUS_Unrolled) AssignProperties_From_ErrorDetail_STATUS_Unrolled(source *v20230315ps.ErrorDetail_STATUS_Unrolled) error { + + // AdditionalInfo + if source.AdditionalInfo != nil { + additionalInfoList := make([]ErrorAdditionalInfo_STATUS, len(source.AdditionalInfo)) + for additionalInfoIndex, additionalInfoItem := range source.AdditionalInfo { + // Shadow the loop variable to avoid aliasing + additionalInfoItem := additionalInfoItem + var additionalInfo ErrorAdditionalInfo_STATUS + err := additionalInfo.AssignProperties_From_ErrorAdditionalInfo_STATUS(&additionalInfoItem) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_ErrorAdditionalInfo_STATUS() to populate field AdditionalInfo") + } + additionalInfoList[additionalInfoIndex] = additionalInfo + } + unrolled.AdditionalInfo = additionalInfoList + } else { + unrolled.AdditionalInfo = nil + } + + // Code + unrolled.Code = genruntime.ClonePointerToString(source.Code) + + // Message + unrolled.Message = genruntime.ClonePointerToString(source.Message) + + // Target + unrolled.Target = genruntime.ClonePointerToString(source.Target) + + // No error + return nil +} + +// AssignProperties_To_ErrorDetail_STATUS_Unrolled populates the provided destination ErrorDetail_STATUS_Unrolled from our ErrorDetail_STATUS_Unrolled +func (unrolled *ErrorDetail_STATUS_Unrolled) AssignProperties_To_ErrorDetail_STATUS_Unrolled(destination *v20230315ps.ErrorDetail_STATUS_Unrolled) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // AdditionalInfo + if unrolled.AdditionalInfo != nil { + additionalInfoList := make([]v20230315ps.ErrorAdditionalInfo_STATUS, len(unrolled.AdditionalInfo)) + for additionalInfoIndex, additionalInfoItem := range unrolled.AdditionalInfo { + // Shadow the loop variable to avoid aliasing + additionalInfoItem := additionalInfoItem + var additionalInfo v20230315ps.ErrorAdditionalInfo_STATUS + err := additionalInfoItem.AssignProperties_To_ErrorAdditionalInfo_STATUS(&additionalInfo) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_ErrorAdditionalInfo_STATUS() to populate field AdditionalInfo") + } + additionalInfoList[additionalInfoIndex] = additionalInfo + } + destination.AdditionalInfo = additionalInfoList + } else { + destination.AdditionalInfo = nil + } + + // Code + destination.Code = genruntime.ClonePointerToString(unrolled.Code) + + // Message + destination.Message = genruntime.ClonePointerToString(unrolled.Message) + + // Target + destination.Target = genruntime.ClonePointerToString(unrolled.Target) + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +// The status of a member update operation. +type MemberUpdateStatus_STATUS struct { + // ClusterResourceId: The Azure resource id of the target Kubernetes cluster. + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + + // Name: The name of the FleetMember. + Name *string `json:"name,omitempty"` + + // OperationId: The operation resource id of the latest attempt to perform the operation. + OperationId *string `json:"operationId,omitempty"` + + // Status: The status of the MemberUpdate operation. + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +var _ genruntime.FromARMConverter = &MemberUpdateStatus_STATUS{} + +// NewEmptyARMValue returns an empty ARM value suitable for deserializing into +func (status *MemberUpdateStatus_STATUS) NewEmptyARMValue() genruntime.ARMResourceStatus { + return &MemberUpdateStatus_STATUS_ARM{} +} + +// PopulateFromARM populates a Kubernetes CRD object from an Azure ARM object +func (status *MemberUpdateStatus_STATUS) PopulateFromARM(owner genruntime.ArbitraryOwnerReference, armInput interface{}) error { + typedInput, ok := armInput.(MemberUpdateStatus_STATUS_ARM) + if !ok { + return fmt.Errorf("unexpected type supplied for PopulateFromARM() function. Expected MemberUpdateStatus_STATUS_ARM, got %T", armInput) + } + + // Set property "ClusterResourceId": + if typedInput.ClusterResourceId != nil { + clusterResourceId := *typedInput.ClusterResourceId + status.ClusterResourceId = &clusterResourceId + } + + // Set property "Name": + if typedInput.Name != nil { + name := *typedInput.Name + status.Name = &name + } + + // Set property "OperationId": + if typedInput.OperationId != nil { + operationId := *typedInput.OperationId + status.OperationId = &operationId + } + + // Set property "Status": + if typedInput.Status != nil { + var status2 UpdateStatus_STATUS + err := status2.PopulateFromARM(owner, *typedInput.Status) + if err != nil { + return err + } + status1 := status2 + status.Status = &status1 + } + + // No error + return nil +} + +// AssignProperties_From_MemberUpdateStatus_STATUS populates our MemberUpdateStatus_STATUS from the provided source MemberUpdateStatus_STATUS +func (status *MemberUpdateStatus_STATUS) AssignProperties_From_MemberUpdateStatus_STATUS(source *v20230315ps.MemberUpdateStatus_STATUS) error { + + // ClusterResourceId + status.ClusterResourceId = genruntime.ClonePointerToString(source.ClusterResourceId) + + // Name + status.Name = genruntime.ClonePointerToString(source.Name) + + // OperationId + status.OperationId = genruntime.ClonePointerToString(source.OperationId) + + // Status + if source.Status != nil { + var statusLocal UpdateStatus_STATUS + err := statusLocal.AssignProperties_From_UpdateStatus_STATUS(source.Status) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_From_UpdateStatus_STATUS() to populate field Status") + } + status.Status = &statusLocal + } else { + status.Status = nil + } + + // No error + return nil +} + +// AssignProperties_To_MemberUpdateStatus_STATUS populates the provided destination MemberUpdateStatus_STATUS from our MemberUpdateStatus_STATUS +func (status *MemberUpdateStatus_STATUS) AssignProperties_To_MemberUpdateStatus_STATUS(destination *v20230315ps.MemberUpdateStatus_STATUS) error { + // Create a new property bag + propertyBag := genruntime.NewPropertyBag() + + // ClusterResourceId + destination.ClusterResourceId = genruntime.ClonePointerToString(status.ClusterResourceId) + + // Name + destination.Name = genruntime.ClonePointerToString(status.Name) + + // OperationId + destination.OperationId = genruntime.ClonePointerToString(status.OperationId) + + // Status + if status.Status != nil { + var statusLocal v20230315ps.UpdateStatus_STATUS + err := status.Status.AssignProperties_To_UpdateStatus_STATUS(&statusLocal) + if err != nil { + return errors.Wrap(err, "calling AssignProperties_To_UpdateStatus_STATUS() to populate field Status") + } + destination.Status = &statusLocal + } else { + destination.Status = nil + } + + // Update the property bag + if len(propertyBag) > 0 { + destination.PropertyBag = propertyBag + } else { + destination.PropertyBag = nil + } + + // No error + return nil +} + +func init() { + SchemeBuilder.Register(&FleetsUpdateRun{}, &FleetsUpdateRunList{}) +} diff --git a/v2/api/containerservice/v1api20230315preview/fleets_update_run_types_gen_test.go b/v2/api/containerservice/v1api20230315preview/fleets_update_run_types_gen_test.go new file mode 100644 index 00000000000..f90d04638f3 --- /dev/null +++ b/v2/api/containerservice/v1api20230315preview/fleets_update_run_types_gen_test.go @@ -0,0 +1,2506 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315preview + +import ( + "encoding/json" + v20230315ps "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315previewstorage" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_FleetsUpdateRun_WhenConvertedToHub_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + parameters.MinSuccessfulTests = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from FleetsUpdateRun to hub returns original", + prop.ForAll(RunResourceConversionTestForFleetsUpdateRun, FleetsUpdateRunGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunResourceConversionTestForFleetsUpdateRun tests if a specific instance of FleetsUpdateRun round trips to the hub storage version and back losslessly +func RunResourceConversionTestForFleetsUpdateRun(subject FleetsUpdateRun) string { + // Copy subject to make sure conversion doesn't modify it + copied := subject.DeepCopy() + + // Convert to our hub version + var hub v20230315ps.FleetsUpdateRun + err := copied.ConvertTo(&hub) + if err != nil { + return err.Error() + } + + // Convert from our hub version + var actual FleetsUpdateRun + err = actual.ConvertFrom(&hub) + if err != nil { + return err.Error() + } + + // Compare actual with what we started with + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_FleetsUpdateRun_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from FleetsUpdateRun to FleetsUpdateRun via AssignProperties_To_FleetsUpdateRun & AssignProperties_From_FleetsUpdateRun returns original", + prop.ForAll(RunPropertyAssignmentTestForFleetsUpdateRun, FleetsUpdateRunGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleetsUpdateRun tests if a specific instance of FleetsUpdateRun can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleetsUpdateRun(subject FleetsUpdateRun) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.FleetsUpdateRun + err := copied.AssignProperties_To_FleetsUpdateRun(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual FleetsUpdateRun + err = actual.AssignProperties_From_FleetsUpdateRun(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_FleetsUpdateRun_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 20 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetsUpdateRun via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetsUpdateRun, FleetsUpdateRunGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetsUpdateRun runs a test to see if a specific instance of FleetsUpdateRun round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetsUpdateRun(subject FleetsUpdateRun) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetsUpdateRun + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetsUpdateRun instances for property testing - lazily instantiated by FleetsUpdateRunGenerator() +var fleetsUpdateRunGenerator gopter.Gen + +// FleetsUpdateRunGenerator returns a generator of FleetsUpdateRun instances for property testing. +func FleetsUpdateRunGenerator() gopter.Gen { + if fleetsUpdateRunGenerator != nil { + return fleetsUpdateRunGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForFleetsUpdateRun(generators) + fleetsUpdateRunGenerator = gen.Struct(reflect.TypeOf(FleetsUpdateRun{}), generators) + + return fleetsUpdateRunGenerator +} + +// AddRelatedPropertyGeneratorsForFleetsUpdateRun is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleetsUpdateRun(gens map[string]gopter.Gen) { + gens["Spec"] = Fleets_UpdateRun_SpecGenerator() + gens["Status"] = Fleets_UpdateRun_STATUSGenerator() +} + +func Test_Fleets_UpdateRun_Spec_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from Fleets_UpdateRun_Spec to Fleets_UpdateRun_Spec via AssignProperties_To_Fleets_UpdateRun_Spec & AssignProperties_From_Fleets_UpdateRun_Spec returns original", + prop.ForAll(RunPropertyAssignmentTestForFleets_UpdateRun_Spec, Fleets_UpdateRun_SpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleets_UpdateRun_Spec tests if a specific instance of Fleets_UpdateRun_Spec can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleets_UpdateRun_Spec(subject Fleets_UpdateRun_Spec) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.Fleets_UpdateRun_Spec + err := copied.AssignProperties_To_Fleets_UpdateRun_Spec(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual Fleets_UpdateRun_Spec + err = actual.AssignProperties_From_Fleets_UpdateRun_Spec(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_Fleets_UpdateRun_Spec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_UpdateRun_Spec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_UpdateRun_Spec, Fleets_UpdateRun_SpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_UpdateRun_Spec runs a test to see if a specific instance of Fleets_UpdateRun_Spec round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_UpdateRun_Spec(subject Fleets_UpdateRun_Spec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_UpdateRun_Spec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_UpdateRun_Spec instances for property testing - lazily instantiated by +// Fleets_UpdateRun_SpecGenerator() +var fleets_UpdateRun_SpecGenerator gopter.Gen + +// Fleets_UpdateRun_SpecGenerator returns a generator of Fleets_UpdateRun_Spec instances for property testing. +// We first initialize fleets_UpdateRun_SpecGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_UpdateRun_SpecGenerator() gopter.Gen { + if fleets_UpdateRun_SpecGenerator != nil { + return fleets_UpdateRun_SpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec(generators) + fleets_UpdateRun_SpecGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_Spec{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec(generators) + AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec(generators) + fleets_UpdateRun_SpecGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_Spec{}), generators) + + return fleets_UpdateRun_SpecGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec(gens map[string]gopter.Gen) { + gens["AzureName"] = gen.AlphaString() +} + +// AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec(gens map[string]gopter.Gen) { + gens["ManagedClusterUpdate"] = gen.PtrOf(ManagedClusterUpdateGenerator()) + gens["Strategy"] = gen.PtrOf(UpdateRunStrategyGenerator()) +} + +func Test_Fleets_UpdateRun_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from Fleets_UpdateRun_STATUS to Fleets_UpdateRun_STATUS via AssignProperties_To_Fleets_UpdateRun_STATUS & AssignProperties_From_Fleets_UpdateRun_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForFleets_UpdateRun_STATUS, Fleets_UpdateRun_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForFleets_UpdateRun_STATUS tests if a specific instance of Fleets_UpdateRun_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForFleets_UpdateRun_STATUS(subject Fleets_UpdateRun_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.Fleets_UpdateRun_STATUS + err := copied.AssignProperties_To_Fleets_UpdateRun_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual Fleets_UpdateRun_STATUS + err = actual.AssignProperties_From_Fleets_UpdateRun_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_Fleets_UpdateRun_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_UpdateRun_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_UpdateRun_STATUS, Fleets_UpdateRun_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_UpdateRun_STATUS runs a test to see if a specific instance of Fleets_UpdateRun_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_UpdateRun_STATUS(subject Fleets_UpdateRun_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_UpdateRun_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_UpdateRun_STATUS instances for property testing - lazily instantiated by +// Fleets_UpdateRun_STATUSGenerator() +var fleets_UpdateRun_STATUSGenerator gopter.Gen + +// Fleets_UpdateRun_STATUSGenerator returns a generator of Fleets_UpdateRun_STATUS instances for property testing. +// We first initialize fleets_UpdateRun_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_UpdateRun_STATUSGenerator() gopter.Gen { + if fleets_UpdateRun_STATUSGenerator != nil { + return fleets_UpdateRun_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS(generators) + fleets_UpdateRun_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS(generators) + AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS(generators) + fleets_UpdateRun_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_STATUS{}), generators) + + return fleets_UpdateRun_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS(gens map[string]gopter.Gen) { + gens["ETag"] = gen.PtrOf(gen.AlphaString()) + gens["Id"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["ProvisioningState"] = gen.PtrOf(gen.OneConstOf(UpdateRunProvisioningState_STATUS_Canceled, UpdateRunProvisioningState_STATUS_Failed, UpdateRunProvisioningState_STATUS_Succeeded)) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS(gens map[string]gopter.Gen) { + gens["ManagedClusterUpdate"] = gen.PtrOf(ManagedClusterUpdate_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateRunStatus_STATUSGenerator()) + gens["Strategy"] = gen.PtrOf(UpdateRunStrategy_STATUSGenerator()) + gens["SystemData"] = gen.PtrOf(SystemData_STATUSGenerator()) +} + +func Test_ManagedClusterUpdate_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ManagedClusterUpdate to ManagedClusterUpdate via AssignProperties_To_ManagedClusterUpdate & AssignProperties_From_ManagedClusterUpdate returns original", + prop.ForAll(RunPropertyAssignmentTestForManagedClusterUpdate, ManagedClusterUpdateGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForManagedClusterUpdate tests if a specific instance of ManagedClusterUpdate can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForManagedClusterUpdate(subject ManagedClusterUpdate) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ManagedClusterUpdate + err := copied.AssignProperties_To_ManagedClusterUpdate(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ManagedClusterUpdate + err = actual.AssignProperties_From_ManagedClusterUpdate(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ManagedClusterUpdate_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpdate via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpdate, ManagedClusterUpdateGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpdate runs a test to see if a specific instance of ManagedClusterUpdate round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpdate(subject ManagedClusterUpdate) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpdate + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpdate instances for property testing - lazily instantiated by +// ManagedClusterUpdateGenerator() +var managedClusterUpdateGenerator gopter.Gen + +// ManagedClusterUpdateGenerator returns a generator of ManagedClusterUpdate instances for property testing. +func ManagedClusterUpdateGenerator() gopter.Gen { + if managedClusterUpdateGenerator != nil { + return managedClusterUpdateGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForManagedClusterUpdate(generators) + managedClusterUpdateGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpdate{}), generators) + + return managedClusterUpdateGenerator +} + +// AddRelatedPropertyGeneratorsForManagedClusterUpdate is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForManagedClusterUpdate(gens map[string]gopter.Gen) { + gens["Upgrade"] = gen.PtrOf(ManagedClusterUpgradeSpecGenerator()) +} + +func Test_ManagedClusterUpdate_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ManagedClusterUpdate_STATUS to ManagedClusterUpdate_STATUS via AssignProperties_To_ManagedClusterUpdate_STATUS & AssignProperties_From_ManagedClusterUpdate_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForManagedClusterUpdate_STATUS, ManagedClusterUpdate_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForManagedClusterUpdate_STATUS tests if a specific instance of ManagedClusterUpdate_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForManagedClusterUpdate_STATUS(subject ManagedClusterUpdate_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ManagedClusterUpdate_STATUS + err := copied.AssignProperties_To_ManagedClusterUpdate_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ManagedClusterUpdate_STATUS + err = actual.AssignProperties_From_ManagedClusterUpdate_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ManagedClusterUpdate_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpdate_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpdate_STATUS, ManagedClusterUpdate_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpdate_STATUS runs a test to see if a specific instance of ManagedClusterUpdate_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpdate_STATUS(subject ManagedClusterUpdate_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpdate_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpdate_STATUS instances for property testing - lazily instantiated by +// ManagedClusterUpdate_STATUSGenerator() +var managedClusterUpdate_STATUSGenerator gopter.Gen + +// ManagedClusterUpdate_STATUSGenerator returns a generator of ManagedClusterUpdate_STATUS instances for property testing. +func ManagedClusterUpdate_STATUSGenerator() gopter.Gen { + if managedClusterUpdate_STATUSGenerator != nil { + return managedClusterUpdate_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS(generators) + managedClusterUpdate_STATUSGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpdate_STATUS{}), generators) + + return managedClusterUpdate_STATUSGenerator +} + +// AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS(gens map[string]gopter.Gen) { + gens["Upgrade"] = gen.PtrOf(ManagedClusterUpgradeSpec_STATUSGenerator()) +} + +func Test_UpdateRunStatus_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateRunStatus_STATUS to UpdateRunStatus_STATUS via AssignProperties_To_UpdateRunStatus_STATUS & AssignProperties_From_UpdateRunStatus_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateRunStatus_STATUS, UpdateRunStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateRunStatus_STATUS tests if a specific instance of UpdateRunStatus_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateRunStatus_STATUS(subject UpdateRunStatus_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateRunStatus_STATUS + err := copied.AssignProperties_To_UpdateRunStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateRunStatus_STATUS + err = actual.AssignProperties_From_UpdateRunStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateRunStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStatus_STATUS, UpdateRunStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStatus_STATUS runs a test to see if a specific instance of UpdateRunStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStatus_STATUS(subject UpdateRunStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStatus_STATUS instances for property testing - lazily instantiated by +// UpdateRunStatus_STATUSGenerator() +var updateRunStatus_STATUSGenerator gopter.Gen + +// UpdateRunStatus_STATUSGenerator returns a generator of UpdateRunStatus_STATUS instances for property testing. +func UpdateRunStatus_STATUSGenerator() gopter.Gen { + if updateRunStatus_STATUSGenerator != nil { + return updateRunStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS(generators) + updateRunStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateRunStatus_STATUS{}), generators) + + return updateRunStatus_STATUSGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStageStatus_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_UpdateRunStrategy_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateRunStrategy to UpdateRunStrategy via AssignProperties_To_UpdateRunStrategy & AssignProperties_From_UpdateRunStrategy returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateRunStrategy, UpdateRunStrategyGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateRunStrategy tests if a specific instance of UpdateRunStrategy can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateRunStrategy(subject UpdateRunStrategy) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateRunStrategy + err := copied.AssignProperties_To_UpdateRunStrategy(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateRunStrategy + err = actual.AssignProperties_From_UpdateRunStrategy(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateRunStrategy_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStrategy via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStrategy, UpdateRunStrategyGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStrategy runs a test to see if a specific instance of UpdateRunStrategy round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStrategy(subject UpdateRunStrategy) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStrategy + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStrategy instances for property testing - lazily instantiated by UpdateRunStrategyGenerator() +var updateRunStrategyGenerator gopter.Gen + +// UpdateRunStrategyGenerator returns a generator of UpdateRunStrategy instances for property testing. +func UpdateRunStrategyGenerator() gopter.Gen { + if updateRunStrategyGenerator != nil { + return updateRunStrategyGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStrategy(generators) + updateRunStrategyGenerator = gen.Struct(reflect.TypeOf(UpdateRunStrategy{}), generators) + + return updateRunStrategyGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStrategy is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStrategy(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStageGenerator()) +} + +func Test_UpdateRunStrategy_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateRunStrategy_STATUS to UpdateRunStrategy_STATUS via AssignProperties_To_UpdateRunStrategy_STATUS & AssignProperties_From_UpdateRunStrategy_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateRunStrategy_STATUS, UpdateRunStrategy_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateRunStrategy_STATUS tests if a specific instance of UpdateRunStrategy_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateRunStrategy_STATUS(subject UpdateRunStrategy_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateRunStrategy_STATUS + err := copied.AssignProperties_To_UpdateRunStrategy_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateRunStrategy_STATUS + err = actual.AssignProperties_From_UpdateRunStrategy_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateRunStrategy_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStrategy_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStrategy_STATUS, UpdateRunStrategy_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStrategy_STATUS runs a test to see if a specific instance of UpdateRunStrategy_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStrategy_STATUS(subject UpdateRunStrategy_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStrategy_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStrategy_STATUS instances for property testing - lazily instantiated by +// UpdateRunStrategy_STATUSGenerator() +var updateRunStrategy_STATUSGenerator gopter.Gen + +// UpdateRunStrategy_STATUSGenerator returns a generator of UpdateRunStrategy_STATUS instances for property testing. +func UpdateRunStrategy_STATUSGenerator() gopter.Gen { + if updateRunStrategy_STATUSGenerator != nil { + return updateRunStrategy_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS(generators) + updateRunStrategy_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateRunStrategy_STATUS{}), generators) + + return updateRunStrategy_STATUSGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStage_STATUSGenerator()) +} + +func Test_ManagedClusterUpgradeSpec_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ManagedClusterUpgradeSpec to ManagedClusterUpgradeSpec via AssignProperties_To_ManagedClusterUpgradeSpec & AssignProperties_From_ManagedClusterUpgradeSpec returns original", + prop.ForAll(RunPropertyAssignmentTestForManagedClusterUpgradeSpec, ManagedClusterUpgradeSpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForManagedClusterUpgradeSpec tests if a specific instance of ManagedClusterUpgradeSpec can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForManagedClusterUpgradeSpec(subject ManagedClusterUpgradeSpec) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ManagedClusterUpgradeSpec + err := copied.AssignProperties_To_ManagedClusterUpgradeSpec(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ManagedClusterUpgradeSpec + err = actual.AssignProperties_From_ManagedClusterUpgradeSpec(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ManagedClusterUpgradeSpec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpgradeSpec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpgradeSpec, ManagedClusterUpgradeSpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpgradeSpec runs a test to see if a specific instance of ManagedClusterUpgradeSpec round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpgradeSpec(subject ManagedClusterUpgradeSpec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpgradeSpec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpgradeSpec instances for property testing - lazily instantiated by +// ManagedClusterUpgradeSpecGenerator() +var managedClusterUpgradeSpecGenerator gopter.Gen + +// ManagedClusterUpgradeSpecGenerator returns a generator of ManagedClusterUpgradeSpec instances for property testing. +func ManagedClusterUpgradeSpecGenerator() gopter.Gen { + if managedClusterUpgradeSpecGenerator != nil { + return managedClusterUpgradeSpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec(generators) + managedClusterUpgradeSpecGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpgradeSpec{}), generators) + + return managedClusterUpgradeSpecGenerator +} + +// AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec(gens map[string]gopter.Gen) { + gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.OneConstOf(ManagedClusterUpgradeType_Full, ManagedClusterUpgradeType_NodeImageOnly)) +} + +func Test_ManagedClusterUpgradeSpec_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ManagedClusterUpgradeSpec_STATUS to ManagedClusterUpgradeSpec_STATUS via AssignProperties_To_ManagedClusterUpgradeSpec_STATUS & AssignProperties_From_ManagedClusterUpgradeSpec_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForManagedClusterUpgradeSpec_STATUS, ManagedClusterUpgradeSpec_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForManagedClusterUpgradeSpec_STATUS tests if a specific instance of ManagedClusterUpgradeSpec_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForManagedClusterUpgradeSpec_STATUS(subject ManagedClusterUpgradeSpec_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ManagedClusterUpgradeSpec_STATUS + err := copied.AssignProperties_To_ManagedClusterUpgradeSpec_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ManagedClusterUpgradeSpec_STATUS + err = actual.AssignProperties_From_ManagedClusterUpgradeSpec_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ManagedClusterUpgradeSpec_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpgradeSpec_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS, ManagedClusterUpgradeSpec_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS runs a test to see if a specific instance of ManagedClusterUpgradeSpec_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS(subject ManagedClusterUpgradeSpec_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpgradeSpec_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpgradeSpec_STATUS instances for property testing - lazily instantiated by +// ManagedClusterUpgradeSpec_STATUSGenerator() +var managedClusterUpgradeSpec_STATUSGenerator gopter.Gen + +// ManagedClusterUpgradeSpec_STATUSGenerator returns a generator of ManagedClusterUpgradeSpec_STATUS instances for property testing. +func ManagedClusterUpgradeSpec_STATUSGenerator() gopter.Gen { + if managedClusterUpgradeSpec_STATUSGenerator != nil { + return managedClusterUpgradeSpec_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS(generators) + managedClusterUpgradeSpec_STATUSGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpgradeSpec_STATUS{}), generators) + + return managedClusterUpgradeSpec_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS(gens map[string]gopter.Gen) { + gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.OneConstOf(ManagedClusterUpgradeType_STATUS_Full, ManagedClusterUpgradeType_STATUS_NodeImageOnly)) +} + +func Test_UpdateStage_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateStage to UpdateStage via AssignProperties_To_UpdateStage & AssignProperties_From_UpdateStage returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateStage, UpdateStageGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateStage tests if a specific instance of UpdateStage can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateStage(subject UpdateStage) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateStage + err := copied.AssignProperties_To_UpdateStage(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateStage + err = actual.AssignProperties_From_UpdateStage(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateStage_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStage via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStage, UpdateStageGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStage runs a test to see if a specific instance of UpdateStage round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStage(subject UpdateStage) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStage + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStage instances for property testing - lazily instantiated by UpdateStageGenerator() +var updateStageGenerator gopter.Gen + +// UpdateStageGenerator returns a generator of UpdateStage instances for property testing. +// We first initialize updateStageGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStageGenerator() gopter.Gen { + if updateStageGenerator != nil { + return updateStageGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage(generators) + updateStageGenerator = gen.Struct(reflect.TypeOf(UpdateStage{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage(generators) + AddRelatedPropertyGeneratorsForUpdateStage(generators) + updateStageGenerator = gen.Struct(reflect.TypeOf(UpdateStage{}), generators) + + return updateStageGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStage is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStage(gens map[string]gopter.Gen) { + gens["AfterStageWaitInSeconds"] = gen.PtrOf(gen.Int()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStage is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStage(gens map[string]gopter.Gen) { + gens["Groups"] = gen.SliceOf(UpdateGroupGenerator()) +} + +func Test_UpdateStage_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateStage_STATUS to UpdateStage_STATUS via AssignProperties_To_UpdateStage_STATUS & AssignProperties_From_UpdateStage_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateStage_STATUS, UpdateStage_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateStage_STATUS tests if a specific instance of UpdateStage_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateStage_STATUS(subject UpdateStage_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateStage_STATUS + err := copied.AssignProperties_To_UpdateStage_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateStage_STATUS + err = actual.AssignProperties_From_UpdateStage_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateStage_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStage_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStage_STATUS, UpdateStage_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStage_STATUS runs a test to see if a specific instance of UpdateStage_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStage_STATUS(subject UpdateStage_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStage_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStage_STATUS instances for property testing - lazily instantiated by UpdateStage_STATUSGenerator() +var updateStage_STATUSGenerator gopter.Gen + +// UpdateStage_STATUSGenerator returns a generator of UpdateStage_STATUS instances for property testing. +// We first initialize updateStage_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStage_STATUSGenerator() gopter.Gen { + if updateStage_STATUSGenerator != nil { + return updateStage_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_STATUS(generators) + updateStage_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStage_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateStage_STATUS(generators) + updateStage_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStage_STATUS{}), generators) + + return updateStage_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStage_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStage_STATUS(gens map[string]gopter.Gen) { + gens["AfterStageWaitInSeconds"] = gen.PtrOf(gen.Int()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStage_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStage_STATUS(gens map[string]gopter.Gen) { + gens["Groups"] = gen.SliceOf(UpdateGroup_STATUSGenerator()) +} + +func Test_UpdateStageStatus_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateStageStatus_STATUS to UpdateStageStatus_STATUS via AssignProperties_To_UpdateStageStatus_STATUS & AssignProperties_From_UpdateStageStatus_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateStageStatus_STATUS, UpdateStageStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateStageStatus_STATUS tests if a specific instance of UpdateStageStatus_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateStageStatus_STATUS(subject UpdateStageStatus_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateStageStatus_STATUS + err := copied.AssignProperties_To_UpdateStageStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateStageStatus_STATUS + err = actual.AssignProperties_From_UpdateStageStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateStageStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStageStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStageStatus_STATUS, UpdateStageStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStageStatus_STATUS runs a test to see if a specific instance of UpdateStageStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStageStatus_STATUS(subject UpdateStageStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStageStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStageStatus_STATUS instances for property testing - lazily instantiated by +// UpdateStageStatus_STATUSGenerator() +var updateStageStatus_STATUSGenerator gopter.Gen + +// UpdateStageStatus_STATUSGenerator returns a generator of UpdateStageStatus_STATUS instances for property testing. +// We first initialize updateStageStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStageStatus_STATUSGenerator() gopter.Gen { + if updateStageStatus_STATUSGenerator != nil { + return updateStageStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS(generators) + updateStageStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStageStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS(generators) + updateStageStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStageStatus_STATUS{}), generators) + + return updateStageStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS(gens map[string]gopter.Gen) { + gens["AfterStageWaitStatus"] = gen.PtrOf(WaitStatus_STATUSGenerator()) + gens["Groups"] = gen.SliceOf(UpdateGroupStatus_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_UpdateStatus_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateStatus_STATUS to UpdateStatus_STATUS via AssignProperties_To_UpdateStatus_STATUS & AssignProperties_From_UpdateStatus_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateStatus_STATUS, UpdateStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateStatus_STATUS tests if a specific instance of UpdateStatus_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateStatus_STATUS(subject UpdateStatus_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateStatus_STATUS + err := copied.AssignProperties_To_UpdateStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateStatus_STATUS + err = actual.AssignProperties_From_UpdateStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStatus_STATUS, UpdateStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStatus_STATUS runs a test to see if a specific instance of UpdateStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStatus_STATUS(subject UpdateStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStatus_STATUS instances for property testing - lazily instantiated by +// UpdateStatus_STATUSGenerator() +var updateStatus_STATUSGenerator gopter.Gen + +// UpdateStatus_STATUSGenerator returns a generator of UpdateStatus_STATUS instances for property testing. +// We first initialize updateStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStatus_STATUSGenerator() gopter.Gen { + if updateStatus_STATUSGenerator != nil { + return updateStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStatus_STATUS(generators) + updateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateStatus_STATUS(generators) + updateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStatus_STATUS{}), generators) + + return updateStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["CompletedTime"] = gen.PtrOf(gen.AlphaString()) + gens["StartTime"] = gen.PtrOf(gen.AlphaString()) + gens["State"] = gen.PtrOf(gen.OneConstOf( + UpdateState_STATUS_Completed, + UpdateState_STATUS_Failed, + UpdateState_STATUS_NotStarted, + UpdateState_STATUS_Running, + UpdateState_STATUS_Stopped, + UpdateState_STATUS_Stopping)) +} + +// AddRelatedPropertyGeneratorsForUpdateStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["Error"] = gen.PtrOf(ErrorDetail_STATUSGenerator()) +} + +func Test_ErrorDetail_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ErrorDetail_STATUS to ErrorDetail_STATUS via AssignProperties_To_ErrorDetail_STATUS & AssignProperties_From_ErrorDetail_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForErrorDetail_STATUS, ErrorDetail_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForErrorDetail_STATUS tests if a specific instance of ErrorDetail_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForErrorDetail_STATUS(subject ErrorDetail_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ErrorDetail_STATUS + err := copied.AssignProperties_To_ErrorDetail_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ErrorDetail_STATUS + err = actual.AssignProperties_From_ErrorDetail_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ErrorDetail_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorDetail_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorDetail_STATUS, ErrorDetail_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorDetail_STATUS runs a test to see if a specific instance of ErrorDetail_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorDetail_STATUS(subject ErrorDetail_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorDetail_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorDetail_STATUS instances for property testing - lazily instantiated by ErrorDetail_STATUSGenerator() +var errorDetail_STATUSGenerator gopter.Gen + +// ErrorDetail_STATUSGenerator returns a generator of ErrorDetail_STATUS instances for property testing. +// We first initialize errorDetail_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func ErrorDetail_STATUSGenerator() gopter.Gen { + if errorDetail_STATUSGenerator != nil { + return errorDetail_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS(generators) + errorDetail_STATUSGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS(generators) + AddRelatedPropertyGeneratorsForErrorDetail_STATUS(generators) + errorDetail_STATUSGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS{}), generators) + + return errorDetail_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForErrorDetail_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorDetail_STATUS(gens map[string]gopter.Gen) { + gens["Code"] = gen.PtrOf(gen.AlphaString()) + gens["Message"] = gen.PtrOf(gen.AlphaString()) + gens["Target"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForErrorDetail_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForErrorDetail_STATUS(gens map[string]gopter.Gen) { + gens["AdditionalInfo"] = gen.SliceOf(ErrorAdditionalInfo_STATUSGenerator()) + gens["Details"] = gen.SliceOf(ErrorDetail_STATUS_UnrolledGenerator()) +} + +func Test_UpdateGroup_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateGroup to UpdateGroup via AssignProperties_To_UpdateGroup & AssignProperties_From_UpdateGroup returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateGroup, UpdateGroupGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateGroup tests if a specific instance of UpdateGroup can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateGroup(subject UpdateGroup) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateGroup + err := copied.AssignProperties_To_UpdateGroup(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateGroup + err = actual.AssignProperties_From_UpdateGroup(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateGroup_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroup via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroup, UpdateGroupGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroup runs a test to see if a specific instance of UpdateGroup round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroup(subject UpdateGroup) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroup + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroup instances for property testing - lazily instantiated by UpdateGroupGenerator() +var updateGroupGenerator gopter.Gen + +// UpdateGroupGenerator returns a generator of UpdateGroup instances for property testing. +func UpdateGroupGenerator() gopter.Gen { + if updateGroupGenerator != nil { + return updateGroupGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroup(generators) + updateGroupGenerator = gen.Struct(reflect.TypeOf(UpdateGroup{}), generators) + + return updateGroupGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroup is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroup(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_UpdateGroup_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateGroup_STATUS to UpdateGroup_STATUS via AssignProperties_To_UpdateGroup_STATUS & AssignProperties_From_UpdateGroup_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateGroup_STATUS, UpdateGroup_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateGroup_STATUS tests if a specific instance of UpdateGroup_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateGroup_STATUS(subject UpdateGroup_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateGroup_STATUS + err := copied.AssignProperties_To_UpdateGroup_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateGroup_STATUS + err = actual.AssignProperties_From_UpdateGroup_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateGroup_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroup_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroup_STATUS, UpdateGroup_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroup_STATUS runs a test to see if a specific instance of UpdateGroup_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroup_STATUS(subject UpdateGroup_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroup_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroup_STATUS instances for property testing - lazily instantiated by UpdateGroup_STATUSGenerator() +var updateGroup_STATUSGenerator gopter.Gen + +// UpdateGroup_STATUSGenerator returns a generator of UpdateGroup_STATUS instances for property testing. +func UpdateGroup_STATUSGenerator() gopter.Gen { + if updateGroup_STATUSGenerator != nil { + return updateGroup_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroup_STATUS(generators) + updateGroup_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateGroup_STATUS{}), generators) + + return updateGroup_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroup_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroup_STATUS(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_UpdateGroupStatus_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from UpdateGroupStatus_STATUS to UpdateGroupStatus_STATUS via AssignProperties_To_UpdateGroupStatus_STATUS & AssignProperties_From_UpdateGroupStatus_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForUpdateGroupStatus_STATUS, UpdateGroupStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForUpdateGroupStatus_STATUS tests if a specific instance of UpdateGroupStatus_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForUpdateGroupStatus_STATUS(subject UpdateGroupStatus_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.UpdateGroupStatus_STATUS + err := copied.AssignProperties_To_UpdateGroupStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual UpdateGroupStatus_STATUS + err = actual.AssignProperties_From_UpdateGroupStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_UpdateGroupStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroupStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroupStatus_STATUS, UpdateGroupStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroupStatus_STATUS runs a test to see if a specific instance of UpdateGroupStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroupStatus_STATUS(subject UpdateGroupStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroupStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroupStatus_STATUS instances for property testing - lazily instantiated by +// UpdateGroupStatus_STATUSGenerator() +var updateGroupStatus_STATUSGenerator gopter.Gen + +// UpdateGroupStatus_STATUSGenerator returns a generator of UpdateGroupStatus_STATUS instances for property testing. +// We first initialize updateGroupStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateGroupStatus_STATUSGenerator() gopter.Gen { + if updateGroupStatus_STATUSGenerator != nil { + return updateGroupStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS(generators) + updateGroupStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateGroupStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS(generators) + updateGroupStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateGroupStatus_STATUS{}), generators) + + return updateGroupStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS(gens map[string]gopter.Gen) { + gens["Members"] = gen.SliceOf(MemberUpdateStatus_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_WaitStatus_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from WaitStatus_STATUS to WaitStatus_STATUS via AssignProperties_To_WaitStatus_STATUS & AssignProperties_From_WaitStatus_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForWaitStatus_STATUS, WaitStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForWaitStatus_STATUS tests if a specific instance of WaitStatus_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForWaitStatus_STATUS(subject WaitStatus_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.WaitStatus_STATUS + err := copied.AssignProperties_To_WaitStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual WaitStatus_STATUS + err = actual.AssignProperties_From_WaitStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_WaitStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of WaitStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForWaitStatus_STATUS, WaitStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForWaitStatus_STATUS runs a test to see if a specific instance of WaitStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForWaitStatus_STATUS(subject WaitStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual WaitStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of WaitStatus_STATUS instances for property testing - lazily instantiated by WaitStatus_STATUSGenerator() +var waitStatus_STATUSGenerator gopter.Gen + +// WaitStatus_STATUSGenerator returns a generator of WaitStatus_STATUS instances for property testing. +// We first initialize waitStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func WaitStatus_STATUSGenerator() gopter.Gen { + if waitStatus_STATUSGenerator != nil { + return waitStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForWaitStatus_STATUS(generators) + waitStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(WaitStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForWaitStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForWaitStatus_STATUS(generators) + waitStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(WaitStatus_STATUS{}), generators) + + return waitStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForWaitStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForWaitStatus_STATUS(gens map[string]gopter.Gen) { + gens["WaitDurationInSeconds"] = gen.PtrOf(gen.Int()) +} + +// AddRelatedPropertyGeneratorsForWaitStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForWaitStatus_STATUS(gens map[string]gopter.Gen) { + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_ErrorAdditionalInfo_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ErrorAdditionalInfo_STATUS to ErrorAdditionalInfo_STATUS via AssignProperties_To_ErrorAdditionalInfo_STATUS & AssignProperties_From_ErrorAdditionalInfo_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForErrorAdditionalInfo_STATUS, ErrorAdditionalInfo_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForErrorAdditionalInfo_STATUS tests if a specific instance of ErrorAdditionalInfo_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForErrorAdditionalInfo_STATUS(subject ErrorAdditionalInfo_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ErrorAdditionalInfo_STATUS + err := copied.AssignProperties_To_ErrorAdditionalInfo_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ErrorAdditionalInfo_STATUS + err = actual.AssignProperties_From_ErrorAdditionalInfo_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ErrorAdditionalInfo_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorAdditionalInfo_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorAdditionalInfo_STATUS, ErrorAdditionalInfo_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorAdditionalInfo_STATUS runs a test to see if a specific instance of ErrorAdditionalInfo_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorAdditionalInfo_STATUS(subject ErrorAdditionalInfo_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorAdditionalInfo_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorAdditionalInfo_STATUS instances for property testing - lazily instantiated by +// ErrorAdditionalInfo_STATUSGenerator() +var errorAdditionalInfo_STATUSGenerator gopter.Gen + +// ErrorAdditionalInfo_STATUSGenerator returns a generator of ErrorAdditionalInfo_STATUS instances for property testing. +func ErrorAdditionalInfo_STATUSGenerator() gopter.Gen { + if errorAdditionalInfo_STATUSGenerator != nil { + return errorAdditionalInfo_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS(generators) + errorAdditionalInfo_STATUSGenerator = gen.Struct(reflect.TypeOf(ErrorAdditionalInfo_STATUS{}), generators) + + return errorAdditionalInfo_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS(gens map[string]gopter.Gen) { + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_ErrorDetail_STATUS_Unrolled_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from ErrorDetail_STATUS_Unrolled to ErrorDetail_STATUS_Unrolled via AssignProperties_To_ErrorDetail_STATUS_Unrolled & AssignProperties_From_ErrorDetail_STATUS_Unrolled returns original", + prop.ForAll(RunPropertyAssignmentTestForErrorDetail_STATUS_Unrolled, ErrorDetail_STATUS_UnrolledGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForErrorDetail_STATUS_Unrolled tests if a specific instance of ErrorDetail_STATUS_Unrolled can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForErrorDetail_STATUS_Unrolled(subject ErrorDetail_STATUS_Unrolled) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.ErrorDetail_STATUS_Unrolled + err := copied.AssignProperties_To_ErrorDetail_STATUS_Unrolled(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual ErrorDetail_STATUS_Unrolled + err = actual.AssignProperties_From_ErrorDetail_STATUS_Unrolled(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_ErrorDetail_STATUS_Unrolled_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorDetail_STATUS_Unrolled via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorDetail_STATUS_Unrolled, ErrorDetail_STATUS_UnrolledGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorDetail_STATUS_Unrolled runs a test to see if a specific instance of ErrorDetail_STATUS_Unrolled round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorDetail_STATUS_Unrolled(subject ErrorDetail_STATUS_Unrolled) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorDetail_STATUS_Unrolled + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorDetail_STATUS_Unrolled instances for property testing - lazily instantiated by +// ErrorDetail_STATUS_UnrolledGenerator() +var errorDetail_STATUS_UnrolledGenerator gopter.Gen + +// ErrorDetail_STATUS_UnrolledGenerator returns a generator of ErrorDetail_STATUS_Unrolled instances for property testing. +// We first initialize errorDetail_STATUS_UnrolledGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func ErrorDetail_STATUS_UnrolledGenerator() gopter.Gen { + if errorDetail_STATUS_UnrolledGenerator != nil { + return errorDetail_STATUS_UnrolledGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled(generators) + errorDetail_STATUS_UnrolledGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_Unrolled{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled(generators) + AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled(generators) + errorDetail_STATUS_UnrolledGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_Unrolled{}), generators) + + return errorDetail_STATUS_UnrolledGenerator +} + +// AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled(gens map[string]gopter.Gen) { + gens["Code"] = gen.PtrOf(gen.AlphaString()) + gens["Message"] = gen.PtrOf(gen.AlphaString()) + gens["Target"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled(gens map[string]gopter.Gen) { + gens["AdditionalInfo"] = gen.SliceOf(ErrorAdditionalInfo_STATUSGenerator()) +} + +func Test_MemberUpdateStatus_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MaxSize = 10 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip from MemberUpdateStatus_STATUS to MemberUpdateStatus_STATUS via AssignProperties_To_MemberUpdateStatus_STATUS & AssignProperties_From_MemberUpdateStatus_STATUS returns original", + prop.ForAll(RunPropertyAssignmentTestForMemberUpdateStatus_STATUS, MemberUpdateStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(false, 240, os.Stdout)) +} + +// RunPropertyAssignmentTestForMemberUpdateStatus_STATUS tests if a specific instance of MemberUpdateStatus_STATUS can be assigned to v1api20230315previewstorage and back losslessly +func RunPropertyAssignmentTestForMemberUpdateStatus_STATUS(subject MemberUpdateStatus_STATUS) string { + // Copy subject to make sure assignment doesn't modify it + copied := subject.DeepCopy() + + // Use AssignPropertiesTo() for the first stage of conversion + var other v20230315ps.MemberUpdateStatus_STATUS + err := copied.AssignProperties_To_MemberUpdateStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Use AssignPropertiesFrom() to convert back to our original type + var actual MemberUpdateStatus_STATUS + err = actual.AssignProperties_From_MemberUpdateStatus_STATUS(&other) + if err != nil { + return err.Error() + } + + // Check for a match + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +func Test_MemberUpdateStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of MemberUpdateStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForMemberUpdateStatus_STATUS, MemberUpdateStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForMemberUpdateStatus_STATUS runs a test to see if a specific instance of MemberUpdateStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForMemberUpdateStatus_STATUS(subject MemberUpdateStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual MemberUpdateStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of MemberUpdateStatus_STATUS instances for property testing - lazily instantiated by +// MemberUpdateStatus_STATUSGenerator() +var memberUpdateStatus_STATUSGenerator gopter.Gen + +// MemberUpdateStatus_STATUSGenerator returns a generator of MemberUpdateStatus_STATUS instances for property testing. +// We first initialize memberUpdateStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func MemberUpdateStatus_STATUSGenerator() gopter.Gen { + if memberUpdateStatus_STATUSGenerator != nil { + return memberUpdateStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS(generators) + memberUpdateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(MemberUpdateStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS(generators) + memberUpdateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(MemberUpdateStatus_STATUS{}), generators) + + return memberUpdateStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["OperationId"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} diff --git a/v2/api/containerservice/v1api20230315preview/structure.txt b/v2/api/containerservice/v1api20230315preview/structure.txt index fd9381533fd..c2e450c5c70 100644 --- a/v2/api/containerservice/v1api20230315preview/structure.txt +++ b/v2/api/containerservice/v1api20230315preview/structure.txt @@ -4,7 +4,7 @@ github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315pre │ └── "2023-03-15-preview" ├── Fleet: Resource │ ├── Owner: github.com/Azure/azure-service-operator/v2/api/resources/v1apiv20191001.ResourceGroup -│ ├── Spec: Object (5 properties) +│ ├── Spec: Object (6 properties) │ │ ├── AzureName: Validated (3 rules) │ │ │ ├── Rule 0: MaxLength: 63 │ │ │ ├── Rule 1: MinLength: 1 @@ -15,6 +15,9 @@ github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315pre │ │ │ ├── Rule 1: MinLength: 1 │ │ │ └── Rule 2: Pattern: "^[a-zA-Z0-9]$|^[a-zA-Z0-9][a-zA-Z0-9-]{0,52}[a-zA-Z0-9]$" │ │ ├── Location: *string +│ │ ├── OperatorSpec: *Object (1 property) +│ │ │ └── Secrets: *Object (1 property) +│ │ │ └── UserCredentials: *genruntime.SecretDestination │ │ ├── Owner: *genruntime.KnownResourceReference │ │ └── Tags: map[string]string │ └── Status: Object (10 properties) @@ -85,10 +88,465 @@ github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315pre │ │ └── "User" │ ├── Tags: map[string]string │ └── Type: *string -└── Fleet_Spec_ARM: Object (4 properties) - ├── Location: *string +├── Fleet_Spec_ARM: Object (4 properties) +│ ├── Location: *string +│ ├── Name: string +│ ├── Properties: *Object (1 property) +│ │ └── HubProfile: *Object (1 property) +│ │ └── DnsPrefix: *string +│ └── Tags: map[string]string +├── FleetsMember: Resource +│ ├── Owner: Fleet +│ ├── Spec: Object (4 properties) +│ │ ├── AzureName: Validated (3 rules) +│ │ │ ├── Rule 0: MaxLength: 50 +│ │ │ ├── Rule 1: MinLength: 1 +│ │ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ │ ├── ClusterResourceReference: *genruntime.ResourceReference +│ │ ├── Group: Validated<*string> (3 rules) +│ │ │ ├── Rule 0: MaxLength: 50 +│ │ │ ├── Rule 1: MinLength: 1 +│ │ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ │ └── Owner: *genruntime.KnownResourceReference +│ └── Status: Object (9 properties) +│ ├── ClusterResourceId: *string +│ ├── Conditions: conditions.Condition[] +│ ├── ETag: *string +│ ├── Group: *string +│ ├── Id: *string +│ ├── Name: *string +│ ├── ProvisioningState: *Enum (6 values) +│ │ ├── "Canceled" +│ │ ├── "Failed" +│ │ ├── "Joining" +│ │ ├── "Leaving" +│ │ ├── "Succeeded" +│ │ └── "Updating" +│ ├── SystemData: *Object (6 properties) +│ │ ├── CreatedAt: *string +│ │ ├── CreatedBy: *string +│ │ ├── CreatedByType: *Enum (4 values) +│ │ │ ├── "Application" +│ │ │ ├── "Key" +│ │ │ ├── "ManagedIdentity" +│ │ │ └── "User" +│ │ ├── LastModifiedAt: *string +│ │ ├── LastModifiedBy: *string +│ │ └── LastModifiedByType: *Enum (4 values) +│ │ ├── "Application" +│ │ ├── "Key" +│ │ ├── "ManagedIdentity" +│ │ └── "User" +│ └── Type: *string +├── FleetsUpdateRun: Resource +│ ├── Owner: Fleet +│ ├── Spec: Object (4 properties) +│ │ ├── AzureName: Validated (3 rules) +│ │ │ ├── Rule 0: MaxLength: 50 +│ │ │ ├── Rule 1: MinLength: 1 +│ │ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ │ ├── ManagedClusterUpdate: *Object (1 property) +│ │ │ └── Upgrade: *Object (2 properties) +│ │ │ ├── KubernetesVersion: *string +│ │ │ └── Type: *Enum (2 values) +│ │ │ ├── "Full" +│ │ │ └── "NodeImageOnly" +│ │ ├── Owner: *genruntime.KnownResourceReference +│ │ └── Strategy: *Object (1 property) +│ │ └── Stages: Object (3 properties)[] +│ │ ├── AfterStageWaitInSeconds: *int +│ │ ├── Groups: Object (1 property)[] +│ │ │ └── Name: Validated<*string> (3 rules) +│ │ │ ├── Rule 0: MaxLength: 50 +│ │ │ ├── Rule 1: MinLength: 1 +│ │ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ │ └── Name: Validated<*string> (3 rules) +│ │ ├── Rule 0: MaxLength: 50 +│ │ ├── Rule 1: MinLength: 1 +│ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ └── Status: Object (10 properties) +│ ├── Conditions: conditions.Condition[] +│ ├── ETag: *string +│ ├── Id: *string +│ ├── ManagedClusterUpdate: *Object (1 property) +│ │ └── Upgrade: *Object (2 properties) +│ │ ├── KubernetesVersion: *string +│ │ └── Type: *Enum (2 values) +│ │ ├── "Full" +│ │ └── "NodeImageOnly" +│ ├── Name: *string +│ ├── ProvisioningState: *Enum (3 values) +│ │ ├── "Canceled" +│ │ ├── "Failed" +│ │ └── "Succeeded" +│ ├── Status: *Object (2 properties) +│ │ ├── Stages: Object (4 properties)[] +│ │ │ ├── AfterStageWaitStatus: *Object (2 properties) +│ │ │ │ ├── Status: *Object (4 properties) +│ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ └── State: *Enum (6 values) +│ │ │ │ │ ├── "Completed" +│ │ │ │ │ ├── "Failed" +│ │ │ │ │ ├── "NotStarted" +│ │ │ │ │ ├── "Running" +│ │ │ │ │ ├── "Stopped" +│ │ │ │ │ └── "Stopping" +│ │ │ │ └── WaitDurationInSeconds: *int +│ │ │ ├── Groups: Object (3 properties)[] +│ │ │ │ ├── Members: Object (4 properties)[] +│ │ │ │ │ ├── ClusterResourceId: *string +│ │ │ │ │ ├── Name: *string +│ │ │ │ │ ├── OperationId: *string +│ │ │ │ │ └── Status: *Object (4 properties) +│ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ └── State: *Enum (6 values) +│ │ │ │ │ ├── "Completed" +│ │ │ │ │ ├── "Failed" +│ │ │ │ │ ├── "NotStarted" +│ │ │ │ │ ├── "Running" +│ │ │ │ │ ├── "Stopped" +│ │ │ │ │ └── "Stopping" +│ │ │ │ ├── Name: *string +│ │ │ │ └── Status: *Object (4 properties) +│ │ │ │ ├── CompletedTime: *string +│ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ └── Type: *string +│ │ │ │ │ ├── Code: *string +│ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── Message: *string +│ │ │ │ │ └── Target: *string +│ │ │ │ ├── StartTime: *string +│ │ │ │ └── State: *Enum (6 values) +│ │ │ │ ├── "Completed" +│ │ │ │ ├── "Failed" +│ │ │ │ ├── "NotStarted" +│ │ │ │ ├── "Running" +│ │ │ │ ├── "Stopped" +│ │ │ │ └── "Stopping" +│ │ │ ├── Name: *string +│ │ │ └── Status: *Object (4 properties) +│ │ │ ├── CompletedTime: *string +│ │ │ ├── Error: *Object (5 properties) +│ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ └── Type: *string +│ │ │ │ ├── Code: *string +│ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ └── Type: *string +│ │ │ │ │ ├── Code: *string +│ │ │ │ │ ├── Message: *string +│ │ │ │ │ └── Target: *string +│ │ │ │ ├── Message: *string +│ │ │ │ └── Target: *string +│ │ │ ├── StartTime: *string +│ │ │ └── State: *Enum (6 values) +│ │ │ ├── "Completed" +│ │ │ ├── "Failed" +│ │ │ ├── "NotStarted" +│ │ │ ├── "Running" +│ │ │ ├── "Stopped" +│ │ │ └── "Stopping" +│ │ └── Status: *Object (4 properties) +│ │ ├── CompletedTime: *string +│ │ ├── Error: *Object (5 properties) +│ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ └── Type: *string +│ │ │ ├── Code: *string +│ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ └── Type: *string +│ │ │ │ ├── Code: *string +│ │ │ │ ├── Message: *string +│ │ │ │ └── Target: *string +│ │ │ ├── Message: *string +│ │ │ └── Target: *string +│ │ ├── StartTime: *string +│ │ └── State: *Enum (6 values) +│ │ ├── "Completed" +│ │ ├── "Failed" +│ │ ├── "NotStarted" +│ │ ├── "Running" +│ │ ├── "Stopped" +│ │ └── "Stopping" +│ ├── Strategy: *Object (1 property) +│ │ └── Stages: Object (3 properties)[] +│ │ ├── AfterStageWaitInSeconds: *int +│ │ ├── Groups: Object (1 property)[] +│ │ │ └── Name: *string +│ │ └── Name: *string +│ ├── SystemData: *Object (6 properties) +│ │ ├── CreatedAt: *string +│ │ ├── CreatedBy: *string +│ │ ├── CreatedByType: *Enum (4 values) +│ │ │ ├── "Application" +│ │ │ ├── "Key" +│ │ │ ├── "ManagedIdentity" +│ │ │ └── "User" +│ │ ├── LastModifiedAt: *string +│ │ ├── LastModifiedBy: *string +│ │ └── LastModifiedByType: *Enum (4 values) +│ │ ├── "Application" +│ │ ├── "Key" +│ │ ├── "ManagedIdentity" +│ │ └── "User" +│ └── Type: *string +├── Fleets_Member_STATUS_ARM: Object (6 properties) +│ ├── ETag: *string +│ ├── Id: *string +│ ├── Name: *string +│ ├── Properties: *Object (3 properties) +│ │ ├── ClusterResourceId: *string +│ │ ├── Group: *string +│ │ └── ProvisioningState: *Enum (6 values) +│ │ ├── "Canceled" +│ │ ├── "Failed" +│ │ ├── "Joining" +│ │ ├── "Leaving" +│ │ ├── "Succeeded" +│ │ └── "Updating" +│ ├── SystemData: *Object (6 properties) +│ │ ├── CreatedAt: *string +│ │ ├── CreatedBy: *string +│ │ ├── CreatedByType: *Enum (4 values) +│ │ │ ├── "Application" +│ │ │ ├── "Key" +│ │ │ ├── "ManagedIdentity" +│ │ │ └── "User" +│ │ ├── LastModifiedAt: *string +│ │ ├── LastModifiedBy: *string +│ │ └── LastModifiedByType: *Enum (4 values) +│ │ ├── "Application" +│ │ ├── "Key" +│ │ ├── "ManagedIdentity" +│ │ └── "User" +│ └── Type: *string +├── Fleets_Member_Spec_ARM: Object (2 properties) +│ ├── Name: string +│ └── Properties: *Object (2 properties) +│ ├── ClusterResourceId: *string +│ └── Group: *string +├── Fleets_UpdateRun_STATUS_ARM: Object (6 properties) +│ ├── ETag: *string +│ ├── Id: *string +│ ├── Name: *string +│ ├── Properties: *Object (4 properties) +│ │ ├── ManagedClusterUpdate: *Object (1 property) +│ │ │ └── Upgrade: *Object (2 properties) +│ │ │ ├── KubernetesVersion: *string +│ │ │ └── Type: *Enum (2 values) +│ │ │ ├── "Full" +│ │ │ └── "NodeImageOnly" +│ │ ├── ProvisioningState: *Enum (3 values) +│ │ │ ├── "Canceled" +│ │ │ ├── "Failed" +│ │ │ └── "Succeeded" +│ │ ├── Status: *Object (2 properties) +│ │ │ ├── Stages: Object (4 properties)[] +│ │ │ │ ├── AfterStageWaitStatus: *Object (2 properties) +│ │ │ │ │ ├── Status: *Object (4 properties) +│ │ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ │ └── State: *Enum (6 values) +│ │ │ │ │ │ ├── "Completed" +│ │ │ │ │ │ ├── "Failed" +│ │ │ │ │ │ ├── "NotStarted" +│ │ │ │ │ │ ├── "Running" +│ │ │ │ │ │ ├── "Stopped" +│ │ │ │ │ │ └── "Stopping" +│ │ │ │ │ └── WaitDurationInSeconds: *int +│ │ │ │ ├── Groups: Object (3 properties)[] +│ │ │ │ │ ├── Members: Object (4 properties)[] +│ │ │ │ │ │ ├── ClusterResourceId: *string +│ │ │ │ │ │ ├── Name: *string +│ │ │ │ │ │ ├── OperationId: *string +│ │ │ │ │ │ └── Status: *Object (4 properties) +│ │ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ │ └── State: *Enum (6 values) +│ │ │ │ │ │ ├── "Completed" +│ │ │ │ │ │ ├── "Failed" +│ │ │ │ │ │ ├── "NotStarted" +│ │ │ │ │ │ ├── "Running" +│ │ │ │ │ │ ├── "Stopped" +│ │ │ │ │ │ └── "Stopping" +│ │ │ │ │ ├── Name: *string +│ │ │ │ │ └── Status: *Object (4 properties) +│ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ └── State: *Enum (6 values) +│ │ │ │ │ ├── "Completed" +│ │ │ │ │ ├── "Failed" +│ │ │ │ │ ├── "NotStarted" +│ │ │ │ │ ├── "Running" +│ │ │ │ │ ├── "Stopped" +│ │ │ │ │ └── "Stopping" +│ │ │ │ ├── Name: *string +│ │ │ │ └── Status: *Object (4 properties) +│ │ │ │ ├── CompletedTime: *string +│ │ │ │ ├── Error: *Object (5 properties) +│ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ └── Type: *string +│ │ │ │ │ ├── Code: *string +│ │ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── Message: *string +│ │ │ │ │ └── Target: *string +│ │ │ │ ├── StartTime: *string +│ │ │ │ └── State: *Enum (6 values) +│ │ │ │ ├── "Completed" +│ │ │ │ ├── "Failed" +│ │ │ │ ├── "NotStarted" +│ │ │ │ ├── "Running" +│ │ │ │ ├── "Stopped" +│ │ │ │ └── "Stopping" +│ │ │ └── Status: *Object (4 properties) +│ │ │ ├── CompletedTime: *string +│ │ │ ├── Error: *Object (5 properties) +│ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ └── Type: *string +│ │ │ │ ├── Code: *string +│ │ │ │ ├── Details: Object (4 properties)[] +│ │ │ │ │ ├── AdditionalInfo: Object (2 properties)[] +│ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ └── Type: *string +│ │ │ │ │ ├── Code: *string +│ │ │ │ │ ├── Message: *string +│ │ │ │ │ └── Target: *string +│ │ │ │ ├── Message: *string +│ │ │ │ └── Target: *string +│ │ │ ├── StartTime: *string +│ │ │ └── State: *Enum (6 values) +│ │ │ ├── "Completed" +│ │ │ ├── "Failed" +│ │ │ ├── "NotStarted" +│ │ │ ├── "Running" +│ │ │ ├── "Stopped" +│ │ │ └── "Stopping" +│ │ └── Strategy: *Object (1 property) +│ │ └── Stages: Object (3 properties)[] +│ │ ├── AfterStageWaitInSeconds: *int +│ │ ├── Groups: Object (1 property)[] +│ │ │ └── Name: *string +│ │ └── Name: *string +│ ├── SystemData: *Object (6 properties) +│ │ ├── CreatedAt: *string +│ │ ├── CreatedBy: *string +│ │ ├── CreatedByType: *Enum (4 values) +│ │ │ ├── "Application" +│ │ │ ├── "Key" +│ │ │ ├── "ManagedIdentity" +│ │ │ └── "User" +│ │ ├── LastModifiedAt: *string +│ │ ├── LastModifiedBy: *string +│ │ └── LastModifiedByType: *Enum (4 values) +│ │ ├── "Application" +│ │ ├── "Key" +│ │ ├── "ManagedIdentity" +│ │ └── "User" +│ └── Type: *string +└── Fleets_UpdateRun_Spec_ARM: Object (2 properties) ├── Name: string - ├── Properties: *Object (1 property) - │ └── HubProfile: *Object (1 property) - │ └── DnsPrefix: *string - └── Tags: map[string]string + └── Properties: *Object (2 properties) + ├── ManagedClusterUpdate: *Object (1 property) + │ └── Upgrade: *Object (2 properties) + │ ├── KubernetesVersion: *string + │ └── Type: *Enum (2 values) + │ ├── "Full" + │ └── "NodeImageOnly" + └── Strategy: *Object (1 property) + └── Stages: Object (3 properties)[] + ├── AfterStageWaitInSeconds: *int + ├── Groups: Object (1 property)[] + │ └── Name: *string + └── Name: *string diff --git a/v2/api/containerservice/v1api20230315preview/zz_generated.deepcopy.go b/v2/api/containerservice/v1api20230315preview/zz_generated.deepcopy.go index ae8b0a5e351..45580030ce2 100644 --- a/v2/api/containerservice/v1api20230315preview/zz_generated.deepcopy.go +++ b/v2/api/containerservice/v1api20230315preview/zz_generated.deepcopy.go @@ -12,9 +12,226 @@ package v1api20230315preview import ( "github.com/Azure/azure-service-operator/v2/pkg/genruntime" "github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions" + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" "k8s.io/apimachinery/pkg/runtime" ) +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorAdditionalInfo_STATUS) DeepCopyInto(out *ErrorAdditionalInfo_STATUS) { + *out = *in + if in.Info != nil { + in, out := &in.Info, &out.Info + *out = make(map[string]v1.JSON, len(*in)) + for key, val := range *in { + (*out)[key] = *val.DeepCopy() + } + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorAdditionalInfo_STATUS. +func (in *ErrorAdditionalInfo_STATUS) DeepCopy() *ErrorAdditionalInfo_STATUS { + if in == nil { + return nil + } + out := new(ErrorAdditionalInfo_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorAdditionalInfo_STATUS_ARM) DeepCopyInto(out *ErrorAdditionalInfo_STATUS_ARM) { + *out = *in + if in.Info != nil { + in, out := &in.Info, &out.Info + *out = make(map[string]v1.JSON, len(*in)) + for key, val := range *in { + (*out)[key] = *val.DeepCopy() + } + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorAdditionalInfo_STATUS_ARM. +func (in *ErrorAdditionalInfo_STATUS_ARM) DeepCopy() *ErrorAdditionalInfo_STATUS_ARM { + if in == nil { + return nil + } + out := new(ErrorAdditionalInfo_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorDetail_STATUS) DeepCopyInto(out *ErrorDetail_STATUS) { + *out = *in + if in.AdditionalInfo != nil { + in, out := &in.AdditionalInfo, &out.AdditionalInfo + *out = make([]ErrorAdditionalInfo_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Code != nil { + in, out := &in.Code, &out.Code + *out = new(string) + **out = **in + } + if in.Details != nil { + in, out := &in.Details, &out.Details + *out = make([]ErrorDetail_STATUS_Unrolled, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Message != nil { + in, out := &in.Message, &out.Message + *out = new(string) + **out = **in + } + if in.Target != nil { + in, out := &in.Target, &out.Target + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorDetail_STATUS. +func (in *ErrorDetail_STATUS) DeepCopy() *ErrorDetail_STATUS { + if in == nil { + return nil + } + out := new(ErrorDetail_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorDetail_STATUS_ARM) DeepCopyInto(out *ErrorDetail_STATUS_ARM) { + *out = *in + if in.AdditionalInfo != nil { + in, out := &in.AdditionalInfo, &out.AdditionalInfo + *out = make([]ErrorAdditionalInfo_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Code != nil { + in, out := &in.Code, &out.Code + *out = new(string) + **out = **in + } + if in.Details != nil { + in, out := &in.Details, &out.Details + *out = make([]ErrorDetail_STATUS_Unrolled_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Message != nil { + in, out := &in.Message, &out.Message + *out = new(string) + **out = **in + } + if in.Target != nil { + in, out := &in.Target, &out.Target + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorDetail_STATUS_ARM. +func (in *ErrorDetail_STATUS_ARM) DeepCopy() *ErrorDetail_STATUS_ARM { + if in == nil { + return nil + } + out := new(ErrorDetail_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorDetail_STATUS_Unrolled) DeepCopyInto(out *ErrorDetail_STATUS_Unrolled) { + *out = *in + if in.AdditionalInfo != nil { + in, out := &in.AdditionalInfo, &out.AdditionalInfo + *out = make([]ErrorAdditionalInfo_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Code != nil { + in, out := &in.Code, &out.Code + *out = new(string) + **out = **in + } + if in.Message != nil { + in, out := &in.Message, &out.Message + *out = new(string) + **out = **in + } + if in.Target != nil { + in, out := &in.Target, &out.Target + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorDetail_STATUS_Unrolled. +func (in *ErrorDetail_STATUS_Unrolled) DeepCopy() *ErrorDetail_STATUS_Unrolled { + if in == nil { + return nil + } + out := new(ErrorDetail_STATUS_Unrolled) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorDetail_STATUS_Unrolled_ARM) DeepCopyInto(out *ErrorDetail_STATUS_Unrolled_ARM) { + *out = *in + if in.AdditionalInfo != nil { + in, out := &in.AdditionalInfo, &out.AdditionalInfo + *out = make([]ErrorAdditionalInfo_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Code != nil { + in, out := &in.Code, &out.Code + *out = new(string) + **out = **in + } + if in.Message != nil { + in, out := &in.Message, &out.Message + *out = new(string) + **out = **in + } + if in.Target != nil { + in, out := &in.Target, &out.Target + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorDetail_STATUS_Unrolled_ARM. +func (in *ErrorDetail_STATUS_Unrolled_ARM) DeepCopy() *ErrorDetail_STATUS_Unrolled_ARM { + if in == nil { + return nil + } + out := new(ErrorDetail_STATUS_Unrolled_ARM) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Fleet) DeepCopyInto(out *Fleet) { *out = *in @@ -174,6 +391,101 @@ func (in *FleetList) DeepCopyObject() runtime.Object { return nil } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetMemberProperties_ARM) DeepCopyInto(out *FleetMemberProperties_ARM) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId + *out = new(string) + **out = **in + } + if in.Group != nil { + in, out := &in.Group, &out.Group + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetMemberProperties_ARM. +func (in *FleetMemberProperties_ARM) DeepCopy() *FleetMemberProperties_ARM { + if in == nil { + return nil + } + out := new(FleetMemberProperties_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetMemberProperties_STATUS_ARM) DeepCopyInto(out *FleetMemberProperties_STATUS_ARM) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId + *out = new(string) + **out = **in + } + if in.Group != nil { + in, out := &in.Group, &out.Group + *out = new(string) + **out = **in + } + if in.ProvisioningState != nil { + in, out := &in.ProvisioningState, &out.ProvisioningState + *out = new(FleetMemberProvisioningState_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetMemberProperties_STATUS_ARM. +func (in *FleetMemberProperties_STATUS_ARM) DeepCopy() *FleetMemberProperties_STATUS_ARM { + if in == nil { + return nil + } + out := new(FleetMemberProperties_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetOperatorSecrets) DeepCopyInto(out *FleetOperatorSecrets) { + *out = *in + if in.UserCredentials != nil { + in, out := &in.UserCredentials, &out.UserCredentials + *out = new(genruntime.SecretDestination) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetOperatorSecrets. +func (in *FleetOperatorSecrets) DeepCopy() *FleetOperatorSecrets { + if in == nil { + return nil + } + out := new(FleetOperatorSecrets) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetOperatorSpec) DeepCopyInto(out *FleetOperatorSpec) { + *out = *in + if in.Secrets != nil { + in, out := &in.Secrets, &out.Secrets + *out = new(FleetOperatorSecrets) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetOperatorSpec. +func (in *FleetOperatorSpec) DeepCopy() *FleetOperatorSpec { + if in == nil { + return nil + } + out := new(FleetOperatorSpec) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *FleetProperties_ARM) DeepCopyInto(out *FleetProperties_ARM) { *out = *in @@ -358,6 +670,11 @@ func (in *Fleet_Spec) DeepCopyInto(out *Fleet_Spec) { *out = new(string) **out = **in } + if in.OperatorSpec != nil { + in, out := &in.OperatorSpec, &out.OperatorSpec + *out = new(FleetOperatorSpec) + (*in).DeepCopyInto(*out) + } if in.Owner != nil { in, out := &in.Owner, &out.Owner *out = new(genruntime.KnownResourceReference) @@ -415,91 +732,1446 @@ func (in *Fleet_Spec_ARM) DeepCopy() *Fleet_Spec_ARM { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *SystemData_STATUS) DeepCopyInto(out *SystemData_STATUS) { +func (in *FleetsMember) DeepCopyInto(out *FleetsMember) { *out = *in - if in.CreatedAt != nil { - in, out := &in.CreatedAt, &out.CreatedAt - *out = new(string) - **out = **in - } - if in.CreatedBy != nil { - in, out := &in.CreatedBy, &out.CreatedBy - *out = new(string) - **out = **in - } - if in.CreatedByType != nil { - in, out := &in.CreatedByType, &out.CreatedByType - *out = new(SystemData_CreatedByType_STATUS) - **out = **in - } - if in.LastModifiedAt != nil { - in, out := &in.LastModifiedAt, &out.LastModifiedAt - *out = new(string) - **out = **in - } - if in.LastModifiedBy != nil { - in, out := &in.LastModifiedBy, &out.LastModifiedBy - *out = new(string) - **out = **in - } - if in.LastModifiedByType != nil { - in, out := &in.LastModifiedByType, &out.LastModifiedByType - *out = new(SystemData_LastModifiedByType_STATUS) - **out = **in - } + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.Spec.DeepCopyInto(&out.Spec) + in.Status.DeepCopyInto(&out.Status) } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS. -func (in *SystemData_STATUS) DeepCopy() *SystemData_STATUS { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsMember. +func (in *FleetsMember) DeepCopy() *FleetsMember { if in == nil { return nil } - out := new(SystemData_STATUS) + out := new(FleetsMember) in.DeepCopyInto(out) return out } +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsMember) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *SystemData_STATUS_ARM) DeepCopyInto(out *SystemData_STATUS_ARM) { +func (in *FleetsMemberList) DeepCopyInto(out *FleetsMemberList) { *out = *in - if in.CreatedAt != nil { - in, out := &in.CreatedAt, &out.CreatedAt + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]FleetsMember, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsMemberList. +func (in *FleetsMemberList) DeepCopy() *FleetsMemberList { + if in == nil { + return nil + } + out := new(FleetsMemberList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsMemberList) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetsUpdateRun) DeepCopyInto(out *FleetsUpdateRun) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.Spec.DeepCopyInto(&out.Spec) + in.Status.DeepCopyInto(&out.Status) +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsUpdateRun. +func (in *FleetsUpdateRun) DeepCopy() *FleetsUpdateRun { + if in == nil { + return nil + } + out := new(FleetsUpdateRun) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsUpdateRun) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetsUpdateRunList) DeepCopyInto(out *FleetsUpdateRunList) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]FleetsUpdateRun, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsUpdateRunList. +func (in *FleetsUpdateRunList) DeepCopy() *FleetsUpdateRunList { + if in == nil { + return nil + } + out := new(FleetsUpdateRunList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsUpdateRunList) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_Member_STATUS) DeepCopyInto(out *Fleets_Member_STATUS) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId + *out = new(string) + **out = **in + } + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]conditions.Condition, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.ETag != nil { + in, out := &in.ETag, &out.ETag + *out = new(string) + **out = **in + } + if in.Group != nil { + in, out := &in.Group, &out.Group + *out = new(string) + **out = **in + } + if in.Id != nil { + in, out := &in.Id, &out.Id + *out = new(string) + **out = **in + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.ProvisioningState != nil { + in, out := &in.ProvisioningState, &out.ProvisioningState + *out = new(FleetMemberProvisioningState_STATUS) + **out = **in + } + if in.SystemData != nil { + in, out := &in.SystemData, &out.SystemData + *out = new(SystemData_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_Member_STATUS. +func (in *Fleets_Member_STATUS) DeepCopy() *Fleets_Member_STATUS { + if in == nil { + return nil + } + out := new(Fleets_Member_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_Member_STATUS_ARM) DeepCopyInto(out *Fleets_Member_STATUS_ARM) { + *out = *in + if in.ETag != nil { + in, out := &in.ETag, &out.ETag + *out = new(string) + **out = **in + } + if in.Id != nil { + in, out := &in.Id, &out.Id + *out = new(string) + **out = **in + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.Properties != nil { + in, out := &in.Properties, &out.Properties + *out = new(FleetMemberProperties_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.SystemData != nil { + in, out := &in.SystemData, &out.SystemData + *out = new(SystemData_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_Member_STATUS_ARM. +func (in *Fleets_Member_STATUS_ARM) DeepCopy() *Fleets_Member_STATUS_ARM { + if in == nil { + return nil + } + out := new(Fleets_Member_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_Member_Spec) DeepCopyInto(out *Fleets_Member_Spec) { + *out = *in + if in.ClusterResourceReference != nil { + in, out := &in.ClusterResourceReference, &out.ClusterResourceReference + *out = new(genruntime.ResourceReference) + **out = **in + } + if in.Group != nil { + in, out := &in.Group, &out.Group + *out = new(string) + **out = **in + } + if in.Owner != nil { + in, out := &in.Owner, &out.Owner + *out = new(genruntime.KnownResourceReference) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_Member_Spec. +func (in *Fleets_Member_Spec) DeepCopy() *Fleets_Member_Spec { + if in == nil { + return nil + } + out := new(Fleets_Member_Spec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_Member_Spec_ARM) DeepCopyInto(out *Fleets_Member_Spec_ARM) { + *out = *in + if in.Properties != nil { + in, out := &in.Properties, &out.Properties + *out = new(FleetMemberProperties_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_Member_Spec_ARM. +func (in *Fleets_Member_Spec_ARM) DeepCopy() *Fleets_Member_Spec_ARM { + if in == nil { + return nil + } + out := new(Fleets_Member_Spec_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_UpdateRun_STATUS) DeepCopyInto(out *Fleets_UpdateRun_STATUS) { + *out = *in + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]conditions.Condition, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.ETag != nil { + in, out := &in.ETag, &out.ETag + *out = new(string) + **out = **in + } + if in.Id != nil { + in, out := &in.Id, &out.Id + *out = new(string) + **out = **in + } + if in.ManagedClusterUpdate != nil { + in, out := &in.ManagedClusterUpdate, &out.ManagedClusterUpdate + *out = new(ManagedClusterUpdate_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.ProvisioningState != nil { + in, out := &in.ProvisioningState, &out.ProvisioningState + *out = new(UpdateRunProvisioningState_STATUS) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateRunStatus_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Strategy != nil { + in, out := &in.Strategy, &out.Strategy + *out = new(UpdateRunStrategy_STATUS) + (*in).DeepCopyInto(*out) + } + if in.SystemData != nil { + in, out := &in.SystemData, &out.SystemData + *out = new(SystemData_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_UpdateRun_STATUS. +func (in *Fleets_UpdateRun_STATUS) DeepCopy() *Fleets_UpdateRun_STATUS { + if in == nil { + return nil + } + out := new(Fleets_UpdateRun_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_UpdateRun_STATUS_ARM) DeepCopyInto(out *Fleets_UpdateRun_STATUS_ARM) { + *out = *in + if in.ETag != nil { + in, out := &in.ETag, &out.ETag + *out = new(string) + **out = **in + } + if in.Id != nil { + in, out := &in.Id, &out.Id + *out = new(string) + **out = **in + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.Properties != nil { + in, out := &in.Properties, &out.Properties + *out = new(UpdateRunProperties_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.SystemData != nil { + in, out := &in.SystemData, &out.SystemData + *out = new(SystemData_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_UpdateRun_STATUS_ARM. +func (in *Fleets_UpdateRun_STATUS_ARM) DeepCopy() *Fleets_UpdateRun_STATUS_ARM { + if in == nil { + return nil + } + out := new(Fleets_UpdateRun_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_UpdateRun_Spec) DeepCopyInto(out *Fleets_UpdateRun_Spec) { + *out = *in + if in.ManagedClusterUpdate != nil { + in, out := &in.ManagedClusterUpdate, &out.ManagedClusterUpdate + *out = new(ManagedClusterUpdate) + (*in).DeepCopyInto(*out) + } + if in.Owner != nil { + in, out := &in.Owner, &out.Owner + *out = new(genruntime.KnownResourceReference) + **out = **in + } + if in.Strategy != nil { + in, out := &in.Strategy, &out.Strategy + *out = new(UpdateRunStrategy) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_UpdateRun_Spec. +func (in *Fleets_UpdateRun_Spec) DeepCopy() *Fleets_UpdateRun_Spec { + if in == nil { + return nil + } + out := new(Fleets_UpdateRun_Spec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_UpdateRun_Spec_ARM) DeepCopyInto(out *Fleets_UpdateRun_Spec_ARM) { + *out = *in + if in.Properties != nil { + in, out := &in.Properties, &out.Properties + *out = new(UpdateRunProperties_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_UpdateRun_Spec_ARM. +func (in *Fleets_UpdateRun_Spec_ARM) DeepCopy() *Fleets_UpdateRun_Spec_ARM { + if in == nil { + return nil + } + out := new(Fleets_UpdateRun_Spec_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpdate) DeepCopyInto(out *ManagedClusterUpdate) { + *out = *in + if in.Upgrade != nil { + in, out := &in.Upgrade, &out.Upgrade + *out = new(ManagedClusterUpgradeSpec) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpdate. +func (in *ManagedClusterUpdate) DeepCopy() *ManagedClusterUpdate { + if in == nil { + return nil + } + out := new(ManagedClusterUpdate) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpdate_ARM) DeepCopyInto(out *ManagedClusterUpdate_ARM) { + *out = *in + if in.Upgrade != nil { + in, out := &in.Upgrade, &out.Upgrade + *out = new(ManagedClusterUpgradeSpec_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpdate_ARM. +func (in *ManagedClusterUpdate_ARM) DeepCopy() *ManagedClusterUpdate_ARM { + if in == nil { + return nil + } + out := new(ManagedClusterUpdate_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpdate_STATUS) DeepCopyInto(out *ManagedClusterUpdate_STATUS) { + *out = *in + if in.Upgrade != nil { + in, out := &in.Upgrade, &out.Upgrade + *out = new(ManagedClusterUpgradeSpec_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpdate_STATUS. +func (in *ManagedClusterUpdate_STATUS) DeepCopy() *ManagedClusterUpdate_STATUS { + if in == nil { + return nil + } + out := new(ManagedClusterUpdate_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpdate_STATUS_ARM) DeepCopyInto(out *ManagedClusterUpdate_STATUS_ARM) { + *out = *in + if in.Upgrade != nil { + in, out := &in.Upgrade, &out.Upgrade + *out = new(ManagedClusterUpgradeSpec_STATUS_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpdate_STATUS_ARM. +func (in *ManagedClusterUpdate_STATUS_ARM) DeepCopy() *ManagedClusterUpdate_STATUS_ARM { + if in == nil { + return nil + } + out := new(ManagedClusterUpdate_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpgradeSpec) DeepCopyInto(out *ManagedClusterUpgradeSpec) { + *out = *in + if in.KubernetesVersion != nil { + in, out := &in.KubernetesVersion, &out.KubernetesVersion + *out = new(string) + **out = **in + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(ManagedClusterUpgradeType) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpgradeSpec. +func (in *ManagedClusterUpgradeSpec) DeepCopy() *ManagedClusterUpgradeSpec { + if in == nil { + return nil + } + out := new(ManagedClusterUpgradeSpec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpgradeSpec_ARM) DeepCopyInto(out *ManagedClusterUpgradeSpec_ARM) { + *out = *in + if in.KubernetesVersion != nil { + in, out := &in.KubernetesVersion, &out.KubernetesVersion + *out = new(string) + **out = **in + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(ManagedClusterUpgradeType) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpgradeSpec_ARM. +func (in *ManagedClusterUpgradeSpec_ARM) DeepCopy() *ManagedClusterUpgradeSpec_ARM { + if in == nil { + return nil + } + out := new(ManagedClusterUpgradeSpec_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpgradeSpec_STATUS) DeepCopyInto(out *ManagedClusterUpgradeSpec_STATUS) { + *out = *in + if in.KubernetesVersion != nil { + in, out := &in.KubernetesVersion, &out.KubernetesVersion + *out = new(string) + **out = **in + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(ManagedClusterUpgradeType_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpgradeSpec_STATUS. +func (in *ManagedClusterUpgradeSpec_STATUS) DeepCopy() *ManagedClusterUpgradeSpec_STATUS { + if in == nil { + return nil + } + out := new(ManagedClusterUpgradeSpec_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpgradeSpec_STATUS_ARM) DeepCopyInto(out *ManagedClusterUpgradeSpec_STATUS_ARM) { + *out = *in + if in.KubernetesVersion != nil { + in, out := &in.KubernetesVersion, &out.KubernetesVersion + *out = new(string) + **out = **in + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(ManagedClusterUpgradeType_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpgradeSpec_STATUS_ARM. +func (in *ManagedClusterUpgradeSpec_STATUS_ARM) DeepCopy() *ManagedClusterUpgradeSpec_STATUS_ARM { + if in == nil { + return nil + } + out := new(ManagedClusterUpgradeSpec_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *MemberUpdateStatus_STATUS) DeepCopyInto(out *MemberUpdateStatus_STATUS) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId + *out = new(string) + **out = **in + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.OperationId != nil { + in, out := &in.OperationId, &out.OperationId + *out = new(string) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemberUpdateStatus_STATUS. +func (in *MemberUpdateStatus_STATUS) DeepCopy() *MemberUpdateStatus_STATUS { + if in == nil { + return nil + } + out := new(MemberUpdateStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *MemberUpdateStatus_STATUS_ARM) DeepCopyInto(out *MemberUpdateStatus_STATUS_ARM) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId + *out = new(string) + **out = **in + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.OperationId != nil { + in, out := &in.OperationId, &out.OperationId + *out = new(string) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemberUpdateStatus_STATUS_ARM. +func (in *MemberUpdateStatus_STATUS_ARM) DeepCopy() *MemberUpdateStatus_STATUS_ARM { + if in == nil { + return nil + } + out := new(MemberUpdateStatus_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *SystemData_STATUS) DeepCopyInto(out *SystemData_STATUS) { + *out = *in + if in.CreatedAt != nil { + in, out := &in.CreatedAt, &out.CreatedAt + *out = new(string) + **out = **in + } + if in.CreatedBy != nil { + in, out := &in.CreatedBy, &out.CreatedBy + *out = new(string) + **out = **in + } + if in.CreatedByType != nil { + in, out := &in.CreatedByType, &out.CreatedByType + *out = new(SystemData_CreatedByType_STATUS) + **out = **in + } + if in.LastModifiedAt != nil { + in, out := &in.LastModifiedAt, &out.LastModifiedAt + *out = new(string) + **out = **in + } + if in.LastModifiedBy != nil { + in, out := &in.LastModifiedBy, &out.LastModifiedBy + *out = new(string) + **out = **in + } + if in.LastModifiedByType != nil { + in, out := &in.LastModifiedByType, &out.LastModifiedByType + *out = new(SystemData_LastModifiedByType_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS. +func (in *SystemData_STATUS) DeepCopy() *SystemData_STATUS { + if in == nil { + return nil + } + out := new(SystemData_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *SystemData_STATUS_ARM) DeepCopyInto(out *SystemData_STATUS_ARM) { + *out = *in + if in.CreatedAt != nil { + in, out := &in.CreatedAt, &out.CreatedAt + *out = new(string) + **out = **in + } + if in.CreatedBy != nil { + in, out := &in.CreatedBy, &out.CreatedBy + *out = new(string) + **out = **in + } + if in.CreatedByType != nil { + in, out := &in.CreatedByType, &out.CreatedByType + *out = new(SystemData_CreatedByType_STATUS) + **out = **in + } + if in.LastModifiedAt != nil { + in, out := &in.LastModifiedAt, &out.LastModifiedAt + *out = new(string) + **out = **in + } + if in.LastModifiedBy != nil { + in, out := &in.LastModifiedBy, &out.LastModifiedBy + *out = new(string) + **out = **in + } + if in.LastModifiedByType != nil { + in, out := &in.LastModifiedByType, &out.LastModifiedByType + *out = new(SystemData_LastModifiedByType_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS_ARM. +func (in *SystemData_STATUS_ARM) DeepCopy() *SystemData_STATUS_ARM { + if in == nil { + return nil + } + out := new(SystemData_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroup) DeepCopyInto(out *UpdateGroup) { + *out = *in + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroup. +func (in *UpdateGroup) DeepCopy() *UpdateGroup { + if in == nil { + return nil + } + out := new(UpdateGroup) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroupStatus_STATUS) DeepCopyInto(out *UpdateGroupStatus_STATUS) { + *out = *in + if in.Members != nil { + in, out := &in.Members, &out.Members + *out = make([]MemberUpdateStatus_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroupStatus_STATUS. +func (in *UpdateGroupStatus_STATUS) DeepCopy() *UpdateGroupStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateGroupStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroupStatus_STATUS_ARM) DeepCopyInto(out *UpdateGroupStatus_STATUS_ARM) { + *out = *in + if in.Members != nil { + in, out := &in.Members, &out.Members + *out = make([]MemberUpdateStatus_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroupStatus_STATUS_ARM. +func (in *UpdateGroupStatus_STATUS_ARM) DeepCopy() *UpdateGroupStatus_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateGroupStatus_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroup_ARM) DeepCopyInto(out *UpdateGroup_ARM) { + *out = *in + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroup_ARM. +func (in *UpdateGroup_ARM) DeepCopy() *UpdateGroup_ARM { + if in == nil { + return nil + } + out := new(UpdateGroup_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroup_STATUS) DeepCopyInto(out *UpdateGroup_STATUS) { + *out = *in + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroup_STATUS. +func (in *UpdateGroup_STATUS) DeepCopy() *UpdateGroup_STATUS { + if in == nil { + return nil + } + out := new(UpdateGroup_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroup_STATUS_ARM) DeepCopyInto(out *UpdateGroup_STATUS_ARM) { + *out = *in + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroup_STATUS_ARM. +func (in *UpdateGroup_STATUS_ARM) DeepCopy() *UpdateGroup_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateGroup_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunProperties_ARM) DeepCopyInto(out *UpdateRunProperties_ARM) { + *out = *in + if in.ManagedClusterUpdate != nil { + in, out := &in.ManagedClusterUpdate, &out.ManagedClusterUpdate + *out = new(ManagedClusterUpdate_ARM) + (*in).DeepCopyInto(*out) + } + if in.Strategy != nil { + in, out := &in.Strategy, &out.Strategy + *out = new(UpdateRunStrategy_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunProperties_ARM. +func (in *UpdateRunProperties_ARM) DeepCopy() *UpdateRunProperties_ARM { + if in == nil { + return nil + } + out := new(UpdateRunProperties_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunProperties_STATUS_ARM) DeepCopyInto(out *UpdateRunProperties_STATUS_ARM) { + *out = *in + if in.ManagedClusterUpdate != nil { + in, out := &in.ManagedClusterUpdate, &out.ManagedClusterUpdate + *out = new(ManagedClusterUpdate_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.ProvisioningState != nil { + in, out := &in.ProvisioningState, &out.ProvisioningState + *out = new(UpdateRunProvisioningState_STATUS) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateRunStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.Strategy != nil { + in, out := &in.Strategy, &out.Strategy + *out = new(UpdateRunStrategy_STATUS_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunProperties_STATUS_ARM. +func (in *UpdateRunProperties_STATUS_ARM) DeepCopy() *UpdateRunProperties_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateRunProperties_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStatus_STATUS) DeepCopyInto(out *UpdateRunStatus_STATUS) { + *out = *in + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStageStatus_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStatus_STATUS. +func (in *UpdateRunStatus_STATUS) DeepCopy() *UpdateRunStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateRunStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStatus_STATUS_ARM) DeepCopyInto(out *UpdateRunStatus_STATUS_ARM) { + *out = *in + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStageStatus_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStatus_STATUS_ARM. +func (in *UpdateRunStatus_STATUS_ARM) DeepCopy() *UpdateRunStatus_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateRunStatus_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStrategy) DeepCopyInto(out *UpdateRunStrategy) { + *out = *in + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStage, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStrategy. +func (in *UpdateRunStrategy) DeepCopy() *UpdateRunStrategy { + if in == nil { + return nil + } + out := new(UpdateRunStrategy) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStrategy_ARM) DeepCopyInto(out *UpdateRunStrategy_ARM) { + *out = *in + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStage_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStrategy_ARM. +func (in *UpdateRunStrategy_ARM) DeepCopy() *UpdateRunStrategy_ARM { + if in == nil { + return nil + } + out := new(UpdateRunStrategy_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStrategy_STATUS) DeepCopyInto(out *UpdateRunStrategy_STATUS) { + *out = *in + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStage_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStrategy_STATUS. +func (in *UpdateRunStrategy_STATUS) DeepCopy() *UpdateRunStrategy_STATUS { + if in == nil { + return nil + } + out := new(UpdateRunStrategy_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStrategy_STATUS_ARM) DeepCopyInto(out *UpdateRunStrategy_STATUS_ARM) { + *out = *in + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStage_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStrategy_STATUS_ARM. +func (in *UpdateRunStrategy_STATUS_ARM) DeepCopy() *UpdateRunStrategy_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateRunStrategy_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStage) DeepCopyInto(out *UpdateStage) { + *out = *in + if in.AfterStageWaitInSeconds != nil { + in, out := &in.AfterStageWaitInSeconds, &out.AfterStageWaitInSeconds + *out = new(int) + **out = **in + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroup, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name *out = new(string) **out = **in } - if in.CreatedBy != nil { - in, out := &in.CreatedBy, &out.CreatedBy +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStage. +func (in *UpdateStage) DeepCopy() *UpdateStage { + if in == nil { + return nil + } + out := new(UpdateStage) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStageStatus_STATUS) DeepCopyInto(out *UpdateStageStatus_STATUS) { + *out = *in + if in.AfterStageWaitStatus != nil { + in, out := &in.AfterStageWaitStatus, &out.AfterStageWaitStatus + *out = new(WaitStatus_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroupStatus_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name *out = new(string) **out = **in } - if in.CreatedByType != nil { - in, out := &in.CreatedByType, &out.CreatedByType - *out = new(SystemData_CreatedByType_STATUS) + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStageStatus_STATUS. +func (in *UpdateStageStatus_STATUS) DeepCopy() *UpdateStageStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateStageStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStageStatus_STATUS_ARM) DeepCopyInto(out *UpdateStageStatus_STATUS_ARM) { + *out = *in + if in.AfterStageWaitStatus != nil { + in, out := &in.AfterStageWaitStatus, &out.AfterStageWaitStatus + *out = new(WaitStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroupStatus_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) **out = **in } - if in.LastModifiedAt != nil { - in, out := &in.LastModifiedAt, &out.LastModifiedAt + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStageStatus_STATUS_ARM. +func (in *UpdateStageStatus_STATUS_ARM) DeepCopy() *UpdateStageStatus_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateStageStatus_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStage_ARM) DeepCopyInto(out *UpdateStage_ARM) { + *out = *in + if in.AfterStageWaitInSeconds != nil { + in, out := &in.AfterStageWaitInSeconds, &out.AfterStageWaitInSeconds + *out = new(int) + **out = **in + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroup_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name *out = new(string) **out = **in } - if in.LastModifiedBy != nil { - in, out := &in.LastModifiedBy, &out.LastModifiedBy +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStage_ARM. +func (in *UpdateStage_ARM) DeepCopy() *UpdateStage_ARM { + if in == nil { + return nil + } + out := new(UpdateStage_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStage_STATUS) DeepCopyInto(out *UpdateStage_STATUS) { + *out = *in + if in.AfterStageWaitInSeconds != nil { + in, out := &in.AfterStageWaitInSeconds, &out.AfterStageWaitInSeconds + *out = new(int) + **out = **in + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroup_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name *out = new(string) **out = **in } - if in.LastModifiedByType != nil { - in, out := &in.LastModifiedByType, &out.LastModifiedByType - *out = new(SystemData_LastModifiedByType_STATUS) +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStage_STATUS. +func (in *UpdateStage_STATUS) DeepCopy() *UpdateStage_STATUS { + if in == nil { + return nil + } + out := new(UpdateStage_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStage_STATUS_ARM) DeepCopyInto(out *UpdateStage_STATUS_ARM) { + *out = *in + if in.AfterStageWaitInSeconds != nil { + in, out := &in.AfterStageWaitInSeconds, &out.AfterStageWaitInSeconds + *out = new(int) + **out = **in + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroup_STATUS_ARM, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) **out = **in } } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS_ARM. -func (in *SystemData_STATUS_ARM) DeepCopy() *SystemData_STATUS_ARM { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStage_STATUS_ARM. +func (in *UpdateStage_STATUS_ARM) DeepCopy() *UpdateStage_STATUS_ARM { if in == nil { return nil } - out := new(SystemData_STATUS_ARM) + out := new(UpdateStage_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStatus_STATUS) DeepCopyInto(out *UpdateStatus_STATUS) { + *out = *in + if in.CompletedTime != nil { + in, out := &in.CompletedTime, &out.CompletedTime + *out = new(string) + **out = **in + } + if in.Error != nil { + in, out := &in.Error, &out.Error + *out = new(ErrorDetail_STATUS) + (*in).DeepCopyInto(*out) + } + if in.StartTime != nil { + in, out := &in.StartTime, &out.StartTime + *out = new(string) + **out = **in + } + if in.State != nil { + in, out := &in.State, &out.State + *out = new(UpdateState_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStatus_STATUS. +func (in *UpdateStatus_STATUS) DeepCopy() *UpdateStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStatus_STATUS_ARM) DeepCopyInto(out *UpdateStatus_STATUS_ARM) { + *out = *in + if in.CompletedTime != nil { + in, out := &in.CompletedTime, &out.CompletedTime + *out = new(string) + **out = **in + } + if in.Error != nil { + in, out := &in.Error, &out.Error + *out = new(ErrorDetail_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.StartTime != nil { + in, out := &in.StartTime, &out.StartTime + *out = new(string) + **out = **in + } + if in.State != nil { + in, out := &in.State, &out.State + *out = new(UpdateState_STATUS) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStatus_STATUS_ARM. +func (in *UpdateStatus_STATUS_ARM) DeepCopy() *UpdateStatus_STATUS_ARM { + if in == nil { + return nil + } + out := new(UpdateStatus_STATUS_ARM) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *WaitStatus_STATUS) DeepCopyInto(out *WaitStatus_STATUS) { + *out = *in + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } + if in.WaitDurationInSeconds != nil { + in, out := &in.WaitDurationInSeconds, &out.WaitDurationInSeconds + *out = new(int) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WaitStatus_STATUS. +func (in *WaitStatus_STATUS) DeepCopy() *WaitStatus_STATUS { + if in == nil { + return nil + } + out := new(WaitStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *WaitStatus_STATUS_ARM) DeepCopyInto(out *WaitStatus_STATUS_ARM) { + *out = *in + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS_ARM) + (*in).DeepCopyInto(*out) + } + if in.WaitDurationInSeconds != nil { + in, out := &in.WaitDurationInSeconds, &out.WaitDurationInSeconds + *out = new(int) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WaitStatus_STATUS_ARM. +func (in *WaitStatus_STATUS_ARM) DeepCopy() *WaitStatus_STATUS_ARM { + if in == nil { + return nil + } + out := new(WaitStatus_STATUS_ARM) in.DeepCopyInto(out) return out } diff --git a/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen.go b/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen.go index ec5ed6b6888..e36c813d346 100644 --- a/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen.go +++ b/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen.go @@ -143,10 +143,11 @@ type Fleet_Spec struct { // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it // doesn't have to be. - AzureName string `json:"azureName,omitempty"` - HubProfile *FleetHubProfile `json:"hubProfile,omitempty"` - Location *string `json:"location,omitempty"` - OriginalVersion string `json:"originalVersion,omitempty"` + AzureName string `json:"azureName,omitempty"` + HubProfile *FleetHubProfile `json:"hubProfile,omitempty"` + Location *string `json:"location,omitempty"` + OperatorSpec *FleetOperatorSpec `json:"operatorSpec,omitempty"` + OriginalVersion string `json:"originalVersion,omitempty"` // +kubebuilder:validation:Required // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also @@ -229,6 +230,13 @@ type FleetHubProfile_STATUS struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` } +// Storage version of v1api20230315preview.FleetOperatorSpec +// Details for configuring operator behavior. Fields in this struct are interpreted by the operator directly rather than being passed to Azure +type FleetOperatorSpec struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Secrets *FleetOperatorSecrets `json:"secrets,omitempty"` +} + // Storage version of v1api20230315preview.SystemData_STATUS // Metadata pertaining to creation and last modification of the resource. type SystemData_STATUS struct { @@ -332,6 +340,12 @@ type augmentConversionForSystemData_STATUS interface { AssignPropertiesTo(dst *v20230202ps.SystemData_STATUS) error } +// Storage version of v1api20230315preview.FleetOperatorSecrets +type FleetOperatorSecrets struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + UserCredentials *genruntime.SecretDestination `json:"userCredentials,omitempty"` +} + func init() { SchemeBuilder.Register(&Fleet{}, &FleetList{}) } diff --git a/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen_test.go b/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen_test.go index 8e74b44b43c..a092d0a560b 100644 --- a/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen_test.go +++ b/v2/api/containerservice/v1api20230315previewstorage/fleet_types_gen_test.go @@ -154,6 +154,7 @@ func AddIndependentPropertyGeneratorsForFleet_Spec(gens map[string]gopter.Gen) { // AddRelatedPropertyGeneratorsForFleet_Spec is a factory method for creating gopter generators func AddRelatedPropertyGeneratorsForFleet_Spec(gens map[string]gopter.Gen) { gens["HubProfile"] = gen.PtrOf(FleetHubProfileGenerator()) + gens["OperatorSpec"] = gen.PtrOf(FleetOperatorSpecGenerator()) } func Test_Fleet_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { @@ -360,6 +361,66 @@ func AddIndependentPropertyGeneratorsForFleetHubProfile_STATUS(gens map[string]g gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) } +func Test_FleetOperatorSpec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetOperatorSpec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetOperatorSpec, FleetOperatorSpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetOperatorSpec runs a test to see if a specific instance of FleetOperatorSpec round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetOperatorSpec(subject FleetOperatorSpec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetOperatorSpec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetOperatorSpec instances for property testing - lazily instantiated by FleetOperatorSpecGenerator() +var fleetOperatorSpecGenerator gopter.Gen + +// FleetOperatorSpecGenerator returns a generator of FleetOperatorSpec instances for property testing. +func FleetOperatorSpecGenerator() gopter.Gen { + if fleetOperatorSpecGenerator != nil { + return fleetOperatorSpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForFleetOperatorSpec(generators) + fleetOperatorSpecGenerator = gen.Struct(reflect.TypeOf(FleetOperatorSpec{}), generators) + + return fleetOperatorSpecGenerator +} + +// AddRelatedPropertyGeneratorsForFleetOperatorSpec is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleetOperatorSpec(gens map[string]gopter.Gen) { + gens["Secrets"] = gen.PtrOf(FleetOperatorSecretsGenerator()) +} + func Test_SystemData_STATUS_WhenPropertiesConverted_RoundTripsWithoutLoss(t *testing.T) { t.Parallel() parameters := gopter.DefaultTestParameters() @@ -466,3 +527,58 @@ func AddIndependentPropertyGeneratorsForSystemData_STATUS(gens map[string]gopter gens["LastModifiedBy"] = gen.PtrOf(gen.AlphaString()) gens["LastModifiedByType"] = gen.PtrOf(gen.AlphaString()) } + +func Test_FleetOperatorSecrets_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetOperatorSecrets via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetOperatorSecrets, FleetOperatorSecretsGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetOperatorSecrets runs a test to see if a specific instance of FleetOperatorSecrets round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetOperatorSecrets(subject FleetOperatorSecrets) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetOperatorSecrets + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetOperatorSecrets instances for property testing - lazily instantiated by +// FleetOperatorSecretsGenerator() +var fleetOperatorSecretsGenerator gopter.Gen + +// FleetOperatorSecretsGenerator returns a generator of FleetOperatorSecrets instances for property testing. +func FleetOperatorSecretsGenerator() gopter.Gen { + if fleetOperatorSecretsGenerator != nil { + return fleetOperatorSecretsGenerator + } + + generators := make(map[string]gopter.Gen) + fleetOperatorSecretsGenerator = gen.Struct(reflect.TypeOf(FleetOperatorSecrets{}), generators) + + return fleetOperatorSecretsGenerator +} diff --git a/v2/api/containerservice/v1api20230315previewstorage/fleets_member_types_gen.go b/v2/api/containerservice/v1api20230315previewstorage/fleets_member_types_gen.go new file mode 100644 index 00000000000..53fb1b0af8a --- /dev/null +++ b/v2/api/containerservice/v1api20230315previewstorage/fleets_member_types_gen.go @@ -0,0 +1,213 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315previewstorage + +import ( + "github.com/Azure/azure-service-operator/v2/pkg/genruntime" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions" + "github.com/pkg/errors" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/runtime/schema" +) + +// +kubebuilder:rbac:groups=containerservice.azure.com,resources=fleetsmembers,verbs=get;list;watch;create;update;patch;delete +// +kubebuilder:rbac:groups=containerservice.azure.com,resources={fleetsmembers/status,fleetsmembers/finalizers},verbs=get;update;patch + +// +kubebuilder:object:root=true +// +kubebuilder:subresource:status +// +kubebuilder:storageversion +// +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +// +kubebuilder:printcolumn:name="Severity",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].severity" +// +kubebuilder:printcolumn:name="Reason",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].reason" +// +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].message" +// Storage version of v1api20230315preview.FleetsMember +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/members/{fleetMemberName} +type FleetsMember struct { + metav1.TypeMeta `json:",inline"` + metav1.ObjectMeta `json:"metadata,omitempty"` + Spec Fleets_Member_Spec `json:"spec,omitempty"` + Status Fleets_Member_STATUS `json:"status,omitempty"` +} + +var _ conditions.Conditioner = &FleetsMember{} + +// GetConditions returns the conditions of the resource +func (member *FleetsMember) GetConditions() conditions.Conditions { + return member.Status.Conditions +} + +// SetConditions sets the conditions on the resource status +func (member *FleetsMember) SetConditions(conditions conditions.Conditions) { + member.Status.Conditions = conditions +} + +var _ genruntime.KubernetesResource = &FleetsMember{} + +// AzureName returns the Azure name of the resource +func (member *FleetsMember) AzureName() string { + return member.Spec.AzureName +} + +// GetAPIVersion returns the ARM API version of the resource. This is always "2023-03-15-preview" +func (member FleetsMember) GetAPIVersion() string { + return string(APIVersion_Value) +} + +// GetResourceScope returns the scope of the resource +func (member *FleetsMember) GetResourceScope() genruntime.ResourceScope { + return genruntime.ResourceScopeResourceGroup +} + +// GetSpec returns the specification of this resource +func (member *FleetsMember) GetSpec() genruntime.ConvertibleSpec { + return &member.Spec +} + +// GetStatus returns the status of this resource +func (member *FleetsMember) GetStatus() genruntime.ConvertibleStatus { + return &member.Status +} + +// GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerService/fleets/members" +func (member *FleetsMember) GetType() string { + return "Microsoft.ContainerService/fleets/members" +} + +// NewEmptyStatus returns a new empty (blank) status +func (member *FleetsMember) NewEmptyStatus() genruntime.ConvertibleStatus { + return &Fleets_Member_STATUS{} +} + +// Owner returns the ResourceReference of the owner +func (member *FleetsMember) Owner() *genruntime.ResourceReference { + group, kind := genruntime.LookupOwnerGroupKind(member.Spec) + return member.Spec.Owner.AsResourceReference(group, kind) +} + +// SetStatus sets the status of this resource +func (member *FleetsMember) SetStatus(status genruntime.ConvertibleStatus) error { + // If we have exactly the right type of status, assign it + if st, ok := status.(*Fleets_Member_STATUS); ok { + member.Status = *st + return nil + } + + // Convert status to required version + var st Fleets_Member_STATUS + err := status.ConvertStatusTo(&st) + if err != nil { + return errors.Wrap(err, "failed to convert status") + } + + member.Status = st + return nil +} + +// Hub marks that this FleetsMember is the hub type for conversion +func (member *FleetsMember) Hub() {} + +// OriginalGVK returns a GroupValueKind for the original API version used to create the resource +func (member *FleetsMember) OriginalGVK() *schema.GroupVersionKind { + return &schema.GroupVersionKind{ + Group: GroupVersion.Group, + Version: member.Spec.OriginalVersion, + Kind: "FleetsMember", + } +} + +// +kubebuilder:object:root=true +// Storage version of v1api20230315preview.FleetsMember +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/members/{fleetMemberName} +type FleetsMemberList struct { + metav1.TypeMeta `json:",inline"` + metav1.ListMeta `json:"metadata,omitempty"` + Items []FleetsMember `json:"items"` +} + +// Storage version of v1api20230315preview.Fleets_Member_Spec +type Fleets_Member_Spec struct { + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it + // doesn't have to be. + AzureName string `json:"azureName,omitempty"` + + // +kubebuilder:validation:Required + // ClusterResourceReference: The ARM resource id of the cluster that joins the Fleet. Must be a valid Azure resource id. + // e.g.: + // '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{clusterName}'. + ClusterResourceReference *genruntime.ResourceReference `armReference:"ClusterResourceId" json:"clusterResourceReference,omitempty"` + Group *string `json:"group,omitempty"` + OriginalVersion string `json:"originalVersion,omitempty"` + + // +kubebuilder:validation:Required + // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also + // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a + // reference to a containerservice.azure.com/Fleet resource + Owner *genruntime.KnownResourceReference `group:"containerservice.azure.com" json:"owner,omitempty" kind:"Fleet"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` +} + +var _ genruntime.ConvertibleSpec = &Fleets_Member_Spec{} + +// ConvertSpecFrom populates our Fleets_Member_Spec from the provided source +func (member *Fleets_Member_Spec) ConvertSpecFrom(source genruntime.ConvertibleSpec) error { + if source == member { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleSpec") + } + + return source.ConvertSpecTo(member) +} + +// ConvertSpecTo populates the provided destination from our Fleets_Member_Spec +func (member *Fleets_Member_Spec) ConvertSpecTo(destination genruntime.ConvertibleSpec) error { + if destination == member { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleSpec") + } + + return destination.ConvertSpecFrom(member) +} + +// Storage version of v1api20230315preview.Fleets_Member_STATUS +type Fleets_Member_STATUS struct { + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + Conditions []conditions.Condition `json:"conditions,omitempty"` + ETag *string `json:"eTag,omitempty"` + Group *string `json:"group,omitempty"` + Id *string `json:"id,omitempty"` + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + ProvisioningState *string `json:"provisioningState,omitempty"` + SystemData *SystemData_STATUS `json:"systemData,omitempty"` + Type *string `json:"type,omitempty"` +} + +var _ genruntime.ConvertibleStatus = &Fleets_Member_STATUS{} + +// ConvertStatusFrom populates our Fleets_Member_STATUS from the provided source +func (member *Fleets_Member_STATUS) ConvertStatusFrom(source genruntime.ConvertibleStatus) error { + if source == member { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleStatus") + } + + return source.ConvertStatusTo(member) +} + +// ConvertStatusTo populates the provided destination from our Fleets_Member_STATUS +func (member *Fleets_Member_STATUS) ConvertStatusTo(destination genruntime.ConvertibleStatus) error { + if destination == member { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleStatus") + } + + return destination.ConvertStatusFrom(member) +} + +func init() { + SchemeBuilder.Register(&FleetsMember{}, &FleetsMemberList{}) +} diff --git a/v2/api/containerservice/v1api20230315previewstorage/fleets_member_types_gen_test.go b/v2/api/containerservice/v1api20230315previewstorage/fleets_member_types_gen_test.go new file mode 100644 index 00000000000..826baa045a6 --- /dev/null +++ b/v2/api/containerservice/v1api20230315previewstorage/fleets_member_types_gen_test.go @@ -0,0 +1,222 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315previewstorage + +import ( + "encoding/json" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_FleetsMember_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 20 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetsMember via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetsMember, FleetsMemberGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetsMember runs a test to see if a specific instance of FleetsMember round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetsMember(subject FleetsMember) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetsMember + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetsMember instances for property testing - lazily instantiated by FleetsMemberGenerator() +var fleetsMemberGenerator gopter.Gen + +// FleetsMemberGenerator returns a generator of FleetsMember instances for property testing. +func FleetsMemberGenerator() gopter.Gen { + if fleetsMemberGenerator != nil { + return fleetsMemberGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForFleetsMember(generators) + fleetsMemberGenerator = gen.Struct(reflect.TypeOf(FleetsMember{}), generators) + + return fleetsMemberGenerator +} + +// AddRelatedPropertyGeneratorsForFleetsMember is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleetsMember(gens map[string]gopter.Gen) { + gens["Spec"] = Fleets_Member_SpecGenerator() + gens["Status"] = Fleets_Member_STATUSGenerator() +} + +func Test_Fleets_Member_Spec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_Member_Spec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_Member_Spec, Fleets_Member_SpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_Member_Spec runs a test to see if a specific instance of Fleets_Member_Spec round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_Member_Spec(subject Fleets_Member_Spec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_Member_Spec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_Member_Spec instances for property testing - lazily instantiated by Fleets_Member_SpecGenerator() +var fleets_Member_SpecGenerator gopter.Gen + +// Fleets_Member_SpecGenerator returns a generator of Fleets_Member_Spec instances for property testing. +func Fleets_Member_SpecGenerator() gopter.Gen { + if fleets_Member_SpecGenerator != nil { + return fleets_Member_SpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_Spec(generators) + fleets_Member_SpecGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_Spec{}), generators) + + return fleets_Member_SpecGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_Member_Spec is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_Member_Spec(gens map[string]gopter.Gen) { + gens["AzureName"] = gen.AlphaString() + gens["Group"] = gen.PtrOf(gen.AlphaString()) + gens["OriginalVersion"] = gen.AlphaString() +} + +func Test_Fleets_Member_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_Member_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_Member_STATUS, Fleets_Member_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_Member_STATUS runs a test to see if a specific instance of Fleets_Member_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_Member_STATUS(subject Fleets_Member_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_Member_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_Member_STATUS instances for property testing - lazily instantiated by +// Fleets_Member_STATUSGenerator() +var fleets_Member_STATUSGenerator gopter.Gen + +// Fleets_Member_STATUSGenerator returns a generator of Fleets_Member_STATUS instances for property testing. +// We first initialize fleets_Member_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_Member_STATUSGenerator() gopter.Gen { + if fleets_Member_STATUSGenerator != nil { + return fleets_Member_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_STATUS(generators) + fleets_Member_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_Member_STATUS(generators) + AddRelatedPropertyGeneratorsForFleets_Member_STATUS(generators) + fleets_Member_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_Member_STATUS{}), generators) + + return fleets_Member_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_Member_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_Member_STATUS(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["ETag"] = gen.PtrOf(gen.AlphaString()) + gens["Group"] = gen.PtrOf(gen.AlphaString()) + gens["Id"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["ProvisioningState"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForFleets_Member_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_Member_STATUS(gens map[string]gopter.Gen) { + gens["SystemData"] = gen.PtrOf(SystemData_STATUSGenerator()) +} diff --git a/v2/api/containerservice/v1api20230315previewstorage/fleets_update_run_types_gen.go b/v2/api/containerservice/v1api20230315previewstorage/fleets_update_run_types_gen.go new file mode 100644 index 00000000000..3b51d162fcd --- /dev/null +++ b/v2/api/containerservice/v1api20230315previewstorage/fleets_update_run_types_gen.go @@ -0,0 +1,381 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315previewstorage + +import ( + "github.com/Azure/azure-service-operator/v2/pkg/genruntime" + "github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions" + "github.com/pkg/errors" + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/runtime/schema" +) + +// +kubebuilder:rbac:groups=containerservice.azure.com,resources=fleetsupdateruns,verbs=get;list;watch;create;update;patch;delete +// +kubebuilder:rbac:groups=containerservice.azure.com,resources={fleetsupdateruns/status,fleetsupdateruns/finalizers},verbs=get;update;patch + +// +kubebuilder:object:root=true +// +kubebuilder:subresource:status +// +kubebuilder:storageversion +// +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +// +kubebuilder:printcolumn:name="Severity",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].severity" +// +kubebuilder:printcolumn:name="Reason",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].reason" +// +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].message" +// Storage version of v1api20230315preview.FleetsUpdateRun +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/updateRuns/{updateRunName} +type FleetsUpdateRun struct { + metav1.TypeMeta `json:",inline"` + metav1.ObjectMeta `json:"metadata,omitempty"` + Spec Fleets_UpdateRun_Spec `json:"spec,omitempty"` + Status Fleets_UpdateRun_STATUS `json:"status,omitempty"` +} + +var _ conditions.Conditioner = &FleetsUpdateRun{} + +// GetConditions returns the conditions of the resource +func (updateRun *FleetsUpdateRun) GetConditions() conditions.Conditions { + return updateRun.Status.Conditions +} + +// SetConditions sets the conditions on the resource status +func (updateRun *FleetsUpdateRun) SetConditions(conditions conditions.Conditions) { + updateRun.Status.Conditions = conditions +} + +var _ genruntime.KubernetesResource = &FleetsUpdateRun{} + +// AzureName returns the Azure name of the resource +func (updateRun *FleetsUpdateRun) AzureName() string { + return updateRun.Spec.AzureName +} + +// GetAPIVersion returns the ARM API version of the resource. This is always "2023-03-15-preview" +func (updateRun FleetsUpdateRun) GetAPIVersion() string { + return string(APIVersion_Value) +} + +// GetResourceScope returns the scope of the resource +func (updateRun *FleetsUpdateRun) GetResourceScope() genruntime.ResourceScope { + return genruntime.ResourceScopeResourceGroup +} + +// GetSpec returns the specification of this resource +func (updateRun *FleetsUpdateRun) GetSpec() genruntime.ConvertibleSpec { + return &updateRun.Spec +} + +// GetStatus returns the status of this resource +func (updateRun *FleetsUpdateRun) GetStatus() genruntime.ConvertibleStatus { + return &updateRun.Status +} + +// GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerService/fleets/updateRuns" +func (updateRun *FleetsUpdateRun) GetType() string { + return "Microsoft.ContainerService/fleets/updateRuns" +} + +// NewEmptyStatus returns a new empty (blank) status +func (updateRun *FleetsUpdateRun) NewEmptyStatus() genruntime.ConvertibleStatus { + return &Fleets_UpdateRun_STATUS{} +} + +// Owner returns the ResourceReference of the owner +func (updateRun *FleetsUpdateRun) Owner() *genruntime.ResourceReference { + group, kind := genruntime.LookupOwnerGroupKind(updateRun.Spec) + return updateRun.Spec.Owner.AsResourceReference(group, kind) +} + +// SetStatus sets the status of this resource +func (updateRun *FleetsUpdateRun) SetStatus(status genruntime.ConvertibleStatus) error { + // If we have exactly the right type of status, assign it + if st, ok := status.(*Fleets_UpdateRun_STATUS); ok { + updateRun.Status = *st + return nil + } + + // Convert status to required version + var st Fleets_UpdateRun_STATUS + err := status.ConvertStatusTo(&st) + if err != nil { + return errors.Wrap(err, "failed to convert status") + } + + updateRun.Status = st + return nil +} + +// Hub marks that this FleetsUpdateRun is the hub type for conversion +func (updateRun *FleetsUpdateRun) Hub() {} + +// OriginalGVK returns a GroupValueKind for the original API version used to create the resource +func (updateRun *FleetsUpdateRun) OriginalGVK() *schema.GroupVersionKind { + return &schema.GroupVersionKind{ + Group: GroupVersion.Group, + Version: updateRun.Spec.OriginalVersion, + Kind: "FleetsUpdateRun", + } +} + +// +kubebuilder:object:root=true +// Storage version of v1api20230315preview.FleetsUpdateRun +// Generator information: +// - Generated from: /containerservice/resource-manager/Microsoft.ContainerService/fleet/preview/2023-03-15-preview/fleets.json +// - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/fleets/{fleetName}/updateRuns/{updateRunName} +type FleetsUpdateRunList struct { + metav1.TypeMeta `json:",inline"` + metav1.ListMeta `json:"metadata,omitempty"` + Items []FleetsUpdateRun `json:"items"` +} + +// Storage version of v1api20230315preview.Fleets_UpdateRun_Spec +type Fleets_UpdateRun_Spec struct { + // +kubebuilder:validation:MaxLength=50 + // +kubebuilder:validation:MinLength=1 + // +kubebuilder:validation:Pattern="^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it + // doesn't have to be. + AzureName string `json:"azureName,omitempty"` + ManagedClusterUpdate *ManagedClusterUpdate `json:"managedClusterUpdate,omitempty"` + OriginalVersion string `json:"originalVersion,omitempty"` + + // +kubebuilder:validation:Required + // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also + // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a + // reference to a containerservice.azure.com/Fleet resource + Owner *genruntime.KnownResourceReference `group:"containerservice.azure.com" json:"owner,omitempty" kind:"Fleet"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Strategy *UpdateRunStrategy `json:"strategy,omitempty"` +} + +var _ genruntime.ConvertibleSpec = &Fleets_UpdateRun_Spec{} + +// ConvertSpecFrom populates our Fleets_UpdateRun_Spec from the provided source +func (updateRun *Fleets_UpdateRun_Spec) ConvertSpecFrom(source genruntime.ConvertibleSpec) error { + if source == updateRun { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleSpec") + } + + return source.ConvertSpecTo(updateRun) +} + +// ConvertSpecTo populates the provided destination from our Fleets_UpdateRun_Spec +func (updateRun *Fleets_UpdateRun_Spec) ConvertSpecTo(destination genruntime.ConvertibleSpec) error { + if destination == updateRun { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleSpec") + } + + return destination.ConvertSpecFrom(updateRun) +} + +// Storage version of v1api20230315preview.Fleets_UpdateRun_STATUS +type Fleets_UpdateRun_STATUS struct { + Conditions []conditions.Condition `json:"conditions,omitempty"` + ETag *string `json:"eTag,omitempty"` + Id *string `json:"id,omitempty"` + ManagedClusterUpdate *ManagedClusterUpdate_STATUS `json:"managedClusterUpdate,omitempty"` + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + ProvisioningState *string `json:"provisioningState,omitempty"` + Status *UpdateRunStatus_STATUS `json:"status,omitempty"` + Strategy *UpdateRunStrategy_STATUS `json:"strategy,omitempty"` + SystemData *SystemData_STATUS `json:"systemData,omitempty"` + Type *string `json:"type,omitempty"` +} + +var _ genruntime.ConvertibleStatus = &Fleets_UpdateRun_STATUS{} + +// ConvertStatusFrom populates our Fleets_UpdateRun_STATUS from the provided source +func (updateRun *Fleets_UpdateRun_STATUS) ConvertStatusFrom(source genruntime.ConvertibleStatus) error { + if source == updateRun { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleStatus") + } + + return source.ConvertStatusTo(updateRun) +} + +// ConvertStatusTo populates the provided destination from our Fleets_UpdateRun_STATUS +func (updateRun *Fleets_UpdateRun_STATUS) ConvertStatusTo(destination genruntime.ConvertibleStatus) error { + if destination == updateRun { + return errors.New("attempted conversion between unrelated implementations of github.com/Azure/azure-service-operator/v2/pkg/genruntime/ConvertibleStatus") + } + + return destination.ConvertStatusFrom(updateRun) +} + +// Storage version of v1api20230315preview.ManagedClusterUpdate +// The update to be applied to the ManagedClusters. +type ManagedClusterUpdate struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Upgrade *ManagedClusterUpgradeSpec `json:"upgrade,omitempty"` +} + +// Storage version of v1api20230315preview.ManagedClusterUpdate_STATUS +// The update to be applied to the ManagedClusters. +type ManagedClusterUpdate_STATUS struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Upgrade *ManagedClusterUpgradeSpec_STATUS `json:"upgrade,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateRunStatus_STATUS +// The status of a UpdateRun. +type UpdateRunStatus_STATUS struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Stages []UpdateStageStatus_STATUS `json:"stages,omitempty"` + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateRunStrategy +// The UpdateRunStrategy configures the sequence of Stages and Groups in which the clusters will be updated. +type UpdateRunStrategy struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Stages []UpdateStage `json:"stages,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateRunStrategy_STATUS +// The UpdateRunStrategy configures the sequence of Stages and Groups in which the clusters will be updated. +type UpdateRunStrategy_STATUS struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Stages []UpdateStage_STATUS `json:"stages,omitempty"` +} + +// Storage version of v1api20230315preview.ManagedClusterUpgradeSpec +// The upgrade to apply to a ManagedCluster. +type ManagedClusterUpgradeSpec struct { + KubernetesVersion *string `json:"kubernetesVersion,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Type *string `json:"type,omitempty"` +} + +// Storage version of v1api20230315preview.ManagedClusterUpgradeSpec_STATUS +// The upgrade to apply to a ManagedCluster. +type ManagedClusterUpgradeSpec_STATUS struct { + KubernetesVersion *string `json:"kubernetesVersion,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Type *string `json:"type,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateStage +// Contains the groups to be updated by an UpdateRun. +// Update order: +// - Sequential between stages: Stages run sequentially. +// The previous stage must complete before the next one starts. +// - Parallel within a stage: Groups within a stage run in +// parallel. +// - Sequential within a group: Clusters within a group are updated sequentially. +type UpdateStage struct { + AfterStageWaitInSeconds *int `json:"afterStageWaitInSeconds,omitempty"` + Groups []UpdateGroup `json:"groups,omitempty"` + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateStage_STATUS +// Contains the groups to be updated by an UpdateRun. +// Update order: +// - Sequential between stages: Stages run sequentially. +// The previous stage must complete before the next one starts. +// - Parallel within a stage: Groups within a stage run in +// parallel. +// - Sequential within a group: Clusters within a group are updated sequentially. +type UpdateStage_STATUS struct { + AfterStageWaitInSeconds *int `json:"afterStageWaitInSeconds,omitempty"` + Groups []UpdateGroup_STATUS `json:"groups,omitempty"` + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateStageStatus_STATUS +// The status of a UpdateStage. +type UpdateStageStatus_STATUS struct { + AfterStageWaitStatus *WaitStatus_STATUS `json:"afterStageWaitStatus,omitempty"` + Groups []UpdateGroupStatus_STATUS `json:"groups,omitempty"` + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateStatus_STATUS +// The status for an operation or group of operations. +type UpdateStatus_STATUS struct { + CompletedTime *string `json:"completedTime,omitempty"` + Error *ErrorDetail_STATUS `json:"error,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + StartTime *string `json:"startTime,omitempty"` + State *string `json:"state,omitempty"` +} + +// Storage version of v1api20230315preview.ErrorDetail_STATUS +// The error detail. +type ErrorDetail_STATUS struct { + AdditionalInfo []ErrorAdditionalInfo_STATUS `json:"additionalInfo,omitempty"` + Code *string `json:"code,omitempty"` + Details []ErrorDetail_STATUS_Unrolled `json:"details,omitempty"` + Message *string `json:"message,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Target *string `json:"target,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateGroup +// A group to be updated. +type UpdateGroup struct { + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateGroup_STATUS +// A group to be updated. +type UpdateGroup_STATUS struct { + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` +} + +// Storage version of v1api20230315preview.UpdateGroupStatus_STATUS +// The status of a UpdateGroup. +type UpdateGroupStatus_STATUS struct { + Members []MemberUpdateStatus_STATUS `json:"members,omitempty"` + Name *string `json:"name,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +// Storage version of v1api20230315preview.WaitStatus_STATUS +// The status of the wait duration. +type WaitStatus_STATUS struct { + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Status *UpdateStatus_STATUS `json:"status,omitempty"` + WaitDurationInSeconds *int `json:"waitDurationInSeconds,omitempty"` +} + +// Storage version of v1api20230315preview.ErrorAdditionalInfo_STATUS +// The resource management error additional info. +type ErrorAdditionalInfo_STATUS struct { + Info map[string]v1.JSON `json:"info,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Type *string `json:"type,omitempty"` +} + +// Storage version of v1api20230315preview.ErrorDetail_STATUS_Unrolled +type ErrorDetail_STATUS_Unrolled struct { + AdditionalInfo []ErrorAdditionalInfo_STATUS `json:"additionalInfo,omitempty"` + Code *string `json:"code,omitempty"` + Message *string `json:"message,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Target *string `json:"target,omitempty"` +} + +// Storage version of v1api20230315preview.MemberUpdateStatus_STATUS +// The status of a member update operation. +type MemberUpdateStatus_STATUS struct { + ClusterResourceId *string `json:"clusterResourceId,omitempty"` + Name *string `json:"name,omitempty"` + OperationId *string `json:"operationId,omitempty"` + PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` + Status *UpdateStatus_STATUS `json:"status,omitempty"` +} + +func init() { + SchemeBuilder.Register(&FleetsUpdateRun{}, &FleetsUpdateRunList{}) +} diff --git a/v2/api/containerservice/v1api20230315previewstorage/fleets_update_run_types_gen_test.go b/v2/api/containerservice/v1api20230315previewstorage/fleets_update_run_types_gen_test.go new file mode 100644 index 00000000000..7cf3a493a20 --- /dev/null +++ b/v2/api/containerservice/v1api20230315previewstorage/fleets_update_run_types_gen_test.go @@ -0,0 +1,1533 @@ +// Code generated by azure-service-operator-codegen. DO NOT EDIT. +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. +package v1api20230315previewstorage + +import ( + "encoding/json" + "github.com/google/go-cmp/cmp" + "github.com/google/go-cmp/cmp/cmpopts" + "github.com/kr/pretty" + "github.com/kylelemons/godebug/diff" + "github.com/leanovate/gopter" + "github.com/leanovate/gopter/gen" + "github.com/leanovate/gopter/prop" + "os" + "reflect" + "testing" +) + +func Test_FleetsUpdateRun_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 20 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of FleetsUpdateRun via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleetsUpdateRun, FleetsUpdateRunGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleetsUpdateRun runs a test to see if a specific instance of FleetsUpdateRun round trips to JSON and back losslessly +func RunJSONSerializationTestForFleetsUpdateRun(subject FleetsUpdateRun) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual FleetsUpdateRun + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of FleetsUpdateRun instances for property testing - lazily instantiated by FleetsUpdateRunGenerator() +var fleetsUpdateRunGenerator gopter.Gen + +// FleetsUpdateRunGenerator returns a generator of FleetsUpdateRun instances for property testing. +func FleetsUpdateRunGenerator() gopter.Gen { + if fleetsUpdateRunGenerator != nil { + return fleetsUpdateRunGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForFleetsUpdateRun(generators) + fleetsUpdateRunGenerator = gen.Struct(reflect.TypeOf(FleetsUpdateRun{}), generators) + + return fleetsUpdateRunGenerator +} + +// AddRelatedPropertyGeneratorsForFleetsUpdateRun is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleetsUpdateRun(gens map[string]gopter.Gen) { + gens["Spec"] = Fleets_UpdateRun_SpecGenerator() + gens["Status"] = Fleets_UpdateRun_STATUSGenerator() +} + +func Test_Fleets_UpdateRun_Spec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_UpdateRun_Spec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_UpdateRun_Spec, Fleets_UpdateRun_SpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_UpdateRun_Spec runs a test to see if a specific instance of Fleets_UpdateRun_Spec round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_UpdateRun_Spec(subject Fleets_UpdateRun_Spec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_UpdateRun_Spec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_UpdateRun_Spec instances for property testing - lazily instantiated by +// Fleets_UpdateRun_SpecGenerator() +var fleets_UpdateRun_SpecGenerator gopter.Gen + +// Fleets_UpdateRun_SpecGenerator returns a generator of Fleets_UpdateRun_Spec instances for property testing. +// We first initialize fleets_UpdateRun_SpecGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_UpdateRun_SpecGenerator() gopter.Gen { + if fleets_UpdateRun_SpecGenerator != nil { + return fleets_UpdateRun_SpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec(generators) + fleets_UpdateRun_SpecGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_Spec{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec(generators) + AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec(generators) + fleets_UpdateRun_SpecGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_Spec{}), generators) + + return fleets_UpdateRun_SpecGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_UpdateRun_Spec(gens map[string]gopter.Gen) { + gens["AzureName"] = gen.AlphaString() + gens["OriginalVersion"] = gen.AlphaString() +} + +// AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_UpdateRun_Spec(gens map[string]gopter.Gen) { + gens["ManagedClusterUpdate"] = gen.PtrOf(ManagedClusterUpdateGenerator()) + gens["Strategy"] = gen.PtrOf(UpdateRunStrategyGenerator()) +} + +func Test_Fleets_UpdateRun_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of Fleets_UpdateRun_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForFleets_UpdateRun_STATUS, Fleets_UpdateRun_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForFleets_UpdateRun_STATUS runs a test to see if a specific instance of Fleets_UpdateRun_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForFleets_UpdateRun_STATUS(subject Fleets_UpdateRun_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual Fleets_UpdateRun_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of Fleets_UpdateRun_STATUS instances for property testing - lazily instantiated by +// Fleets_UpdateRun_STATUSGenerator() +var fleets_UpdateRun_STATUSGenerator gopter.Gen + +// Fleets_UpdateRun_STATUSGenerator returns a generator of Fleets_UpdateRun_STATUS instances for property testing. +// We first initialize fleets_UpdateRun_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func Fleets_UpdateRun_STATUSGenerator() gopter.Gen { + if fleets_UpdateRun_STATUSGenerator != nil { + return fleets_UpdateRun_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS(generators) + fleets_UpdateRun_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS(generators) + AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS(generators) + fleets_UpdateRun_STATUSGenerator = gen.Struct(reflect.TypeOf(Fleets_UpdateRun_STATUS{}), generators) + + return fleets_UpdateRun_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForFleets_UpdateRun_STATUS(gens map[string]gopter.Gen) { + gens["ETag"] = gen.PtrOf(gen.AlphaString()) + gens["Id"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["ProvisioningState"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForFleets_UpdateRun_STATUS(gens map[string]gopter.Gen) { + gens["ManagedClusterUpdate"] = gen.PtrOf(ManagedClusterUpdate_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateRunStatus_STATUSGenerator()) + gens["Strategy"] = gen.PtrOf(UpdateRunStrategy_STATUSGenerator()) + gens["SystemData"] = gen.PtrOf(SystemData_STATUSGenerator()) +} + +func Test_ManagedClusterUpdate_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpdate via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpdate, ManagedClusterUpdateGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpdate runs a test to see if a specific instance of ManagedClusterUpdate round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpdate(subject ManagedClusterUpdate) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpdate + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpdate instances for property testing - lazily instantiated by +// ManagedClusterUpdateGenerator() +var managedClusterUpdateGenerator gopter.Gen + +// ManagedClusterUpdateGenerator returns a generator of ManagedClusterUpdate instances for property testing. +func ManagedClusterUpdateGenerator() gopter.Gen { + if managedClusterUpdateGenerator != nil { + return managedClusterUpdateGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForManagedClusterUpdate(generators) + managedClusterUpdateGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpdate{}), generators) + + return managedClusterUpdateGenerator +} + +// AddRelatedPropertyGeneratorsForManagedClusterUpdate is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForManagedClusterUpdate(gens map[string]gopter.Gen) { + gens["Upgrade"] = gen.PtrOf(ManagedClusterUpgradeSpecGenerator()) +} + +func Test_ManagedClusterUpdate_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpdate_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpdate_STATUS, ManagedClusterUpdate_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpdate_STATUS runs a test to see if a specific instance of ManagedClusterUpdate_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpdate_STATUS(subject ManagedClusterUpdate_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpdate_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpdate_STATUS instances for property testing - lazily instantiated by +// ManagedClusterUpdate_STATUSGenerator() +var managedClusterUpdate_STATUSGenerator gopter.Gen + +// ManagedClusterUpdate_STATUSGenerator returns a generator of ManagedClusterUpdate_STATUS instances for property testing. +func ManagedClusterUpdate_STATUSGenerator() gopter.Gen { + if managedClusterUpdate_STATUSGenerator != nil { + return managedClusterUpdate_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS(generators) + managedClusterUpdate_STATUSGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpdate_STATUS{}), generators) + + return managedClusterUpdate_STATUSGenerator +} + +// AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForManagedClusterUpdate_STATUS(gens map[string]gopter.Gen) { + gens["Upgrade"] = gen.PtrOf(ManagedClusterUpgradeSpec_STATUSGenerator()) +} + +func Test_UpdateRunStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStatus_STATUS, UpdateRunStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStatus_STATUS runs a test to see if a specific instance of UpdateRunStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStatus_STATUS(subject UpdateRunStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStatus_STATUS instances for property testing - lazily instantiated by +// UpdateRunStatus_STATUSGenerator() +var updateRunStatus_STATUSGenerator gopter.Gen + +// UpdateRunStatus_STATUSGenerator returns a generator of UpdateRunStatus_STATUS instances for property testing. +func UpdateRunStatus_STATUSGenerator() gopter.Gen { + if updateRunStatus_STATUSGenerator != nil { + return updateRunStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS(generators) + updateRunStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateRunStatus_STATUS{}), generators) + + return updateRunStatus_STATUSGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStatus_STATUS(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStageStatus_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_UpdateRunStrategy_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStrategy via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStrategy, UpdateRunStrategyGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStrategy runs a test to see if a specific instance of UpdateRunStrategy round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStrategy(subject UpdateRunStrategy) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStrategy + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStrategy instances for property testing - lazily instantiated by UpdateRunStrategyGenerator() +var updateRunStrategyGenerator gopter.Gen + +// UpdateRunStrategyGenerator returns a generator of UpdateRunStrategy instances for property testing. +func UpdateRunStrategyGenerator() gopter.Gen { + if updateRunStrategyGenerator != nil { + return updateRunStrategyGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStrategy(generators) + updateRunStrategyGenerator = gen.Struct(reflect.TypeOf(UpdateRunStrategy{}), generators) + + return updateRunStrategyGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStrategy is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStrategy(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStageGenerator()) +} + +func Test_UpdateRunStrategy_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateRunStrategy_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateRunStrategy_STATUS, UpdateRunStrategy_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateRunStrategy_STATUS runs a test to see if a specific instance of UpdateRunStrategy_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateRunStrategy_STATUS(subject UpdateRunStrategy_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateRunStrategy_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateRunStrategy_STATUS instances for property testing - lazily instantiated by +// UpdateRunStrategy_STATUSGenerator() +var updateRunStrategy_STATUSGenerator gopter.Gen + +// UpdateRunStrategy_STATUSGenerator returns a generator of UpdateRunStrategy_STATUS instances for property testing. +func UpdateRunStrategy_STATUSGenerator() gopter.Gen { + if updateRunStrategy_STATUSGenerator != nil { + return updateRunStrategy_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS(generators) + updateRunStrategy_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateRunStrategy_STATUS{}), generators) + + return updateRunStrategy_STATUSGenerator +} + +// AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateRunStrategy_STATUS(gens map[string]gopter.Gen) { + gens["Stages"] = gen.SliceOf(UpdateStage_STATUSGenerator()) +} + +func Test_ManagedClusterUpgradeSpec_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpgradeSpec via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpgradeSpec, ManagedClusterUpgradeSpecGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpgradeSpec runs a test to see if a specific instance of ManagedClusterUpgradeSpec round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpgradeSpec(subject ManagedClusterUpgradeSpec) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpgradeSpec + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpgradeSpec instances for property testing - lazily instantiated by +// ManagedClusterUpgradeSpecGenerator() +var managedClusterUpgradeSpecGenerator gopter.Gen + +// ManagedClusterUpgradeSpecGenerator returns a generator of ManagedClusterUpgradeSpec instances for property testing. +func ManagedClusterUpgradeSpecGenerator() gopter.Gen { + if managedClusterUpgradeSpecGenerator != nil { + return managedClusterUpgradeSpecGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec(generators) + managedClusterUpgradeSpecGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpgradeSpec{}), generators) + + return managedClusterUpgradeSpecGenerator +} + +// AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec(gens map[string]gopter.Gen) { + gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_ManagedClusterUpgradeSpec_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ManagedClusterUpgradeSpec_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS, ManagedClusterUpgradeSpec_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS runs a test to see if a specific instance of ManagedClusterUpgradeSpec_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForManagedClusterUpgradeSpec_STATUS(subject ManagedClusterUpgradeSpec_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ManagedClusterUpgradeSpec_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ManagedClusterUpgradeSpec_STATUS instances for property testing - lazily instantiated by +// ManagedClusterUpgradeSpec_STATUSGenerator() +var managedClusterUpgradeSpec_STATUSGenerator gopter.Gen + +// ManagedClusterUpgradeSpec_STATUSGenerator returns a generator of ManagedClusterUpgradeSpec_STATUS instances for property testing. +func ManagedClusterUpgradeSpec_STATUSGenerator() gopter.Gen { + if managedClusterUpgradeSpec_STATUSGenerator != nil { + return managedClusterUpgradeSpec_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS(generators) + managedClusterUpgradeSpec_STATUSGenerator = gen.Struct(reflect.TypeOf(ManagedClusterUpgradeSpec_STATUS{}), generators) + + return managedClusterUpgradeSpec_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForManagedClusterUpgradeSpec_STATUS(gens map[string]gopter.Gen) { + gens["KubernetesVersion"] = gen.PtrOf(gen.AlphaString()) + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_UpdateStage_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStage via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStage, UpdateStageGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStage runs a test to see if a specific instance of UpdateStage round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStage(subject UpdateStage) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStage + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStage instances for property testing - lazily instantiated by UpdateStageGenerator() +var updateStageGenerator gopter.Gen + +// UpdateStageGenerator returns a generator of UpdateStage instances for property testing. +// We first initialize updateStageGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStageGenerator() gopter.Gen { + if updateStageGenerator != nil { + return updateStageGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage(generators) + updateStageGenerator = gen.Struct(reflect.TypeOf(UpdateStage{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage(generators) + AddRelatedPropertyGeneratorsForUpdateStage(generators) + updateStageGenerator = gen.Struct(reflect.TypeOf(UpdateStage{}), generators) + + return updateStageGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStage is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStage(gens map[string]gopter.Gen) { + gens["AfterStageWaitInSeconds"] = gen.PtrOf(gen.Int()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStage is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStage(gens map[string]gopter.Gen) { + gens["Groups"] = gen.SliceOf(UpdateGroupGenerator()) +} + +func Test_UpdateStage_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStage_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStage_STATUS, UpdateStage_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStage_STATUS runs a test to see if a specific instance of UpdateStage_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStage_STATUS(subject UpdateStage_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStage_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStage_STATUS instances for property testing - lazily instantiated by UpdateStage_STATUSGenerator() +var updateStage_STATUSGenerator gopter.Gen + +// UpdateStage_STATUSGenerator returns a generator of UpdateStage_STATUS instances for property testing. +// We first initialize updateStage_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStage_STATUSGenerator() gopter.Gen { + if updateStage_STATUSGenerator != nil { + return updateStage_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_STATUS(generators) + updateStage_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStage_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStage_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateStage_STATUS(generators) + updateStage_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStage_STATUS{}), generators) + + return updateStage_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStage_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStage_STATUS(gens map[string]gopter.Gen) { + gens["AfterStageWaitInSeconds"] = gen.PtrOf(gen.Int()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStage_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStage_STATUS(gens map[string]gopter.Gen) { + gens["Groups"] = gen.SliceOf(UpdateGroup_STATUSGenerator()) +} + +func Test_UpdateStageStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStageStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStageStatus_STATUS, UpdateStageStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStageStatus_STATUS runs a test to see if a specific instance of UpdateStageStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStageStatus_STATUS(subject UpdateStageStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStageStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStageStatus_STATUS instances for property testing - lazily instantiated by +// UpdateStageStatus_STATUSGenerator() +var updateStageStatus_STATUSGenerator gopter.Gen + +// UpdateStageStatus_STATUSGenerator returns a generator of UpdateStageStatus_STATUS instances for property testing. +// We first initialize updateStageStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStageStatus_STATUSGenerator() gopter.Gen { + if updateStageStatus_STATUSGenerator != nil { + return updateStageStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS(generators) + updateStageStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStageStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS(generators) + updateStageStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStageStatus_STATUS{}), generators) + + return updateStageStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStageStatus_STATUS(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStageStatus_STATUS(gens map[string]gopter.Gen) { + gens["AfterStageWaitStatus"] = gen.PtrOf(WaitStatus_STATUSGenerator()) + gens["Groups"] = gen.SliceOf(UpdateGroupStatus_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_UpdateStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateStatus_STATUS, UpdateStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateStatus_STATUS runs a test to see if a specific instance of UpdateStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateStatus_STATUS(subject UpdateStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateStatus_STATUS instances for property testing - lazily instantiated by +// UpdateStatus_STATUSGenerator() +var updateStatus_STATUSGenerator gopter.Gen + +// UpdateStatus_STATUSGenerator returns a generator of UpdateStatus_STATUS instances for property testing. +// We first initialize updateStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateStatus_STATUSGenerator() gopter.Gen { + if updateStatus_STATUSGenerator != nil { + return updateStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStatus_STATUS(generators) + updateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateStatus_STATUS(generators) + updateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateStatus_STATUS{}), generators) + + return updateStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["CompletedTime"] = gen.PtrOf(gen.AlphaString()) + gens["StartTime"] = gen.PtrOf(gen.AlphaString()) + gens["State"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["Error"] = gen.PtrOf(ErrorDetail_STATUSGenerator()) +} + +func Test_ErrorDetail_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorDetail_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorDetail_STATUS, ErrorDetail_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorDetail_STATUS runs a test to see if a specific instance of ErrorDetail_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorDetail_STATUS(subject ErrorDetail_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorDetail_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorDetail_STATUS instances for property testing - lazily instantiated by ErrorDetail_STATUSGenerator() +var errorDetail_STATUSGenerator gopter.Gen + +// ErrorDetail_STATUSGenerator returns a generator of ErrorDetail_STATUS instances for property testing. +// We first initialize errorDetail_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func ErrorDetail_STATUSGenerator() gopter.Gen { + if errorDetail_STATUSGenerator != nil { + return errorDetail_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS(generators) + errorDetail_STATUSGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS(generators) + AddRelatedPropertyGeneratorsForErrorDetail_STATUS(generators) + errorDetail_STATUSGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS{}), generators) + + return errorDetail_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForErrorDetail_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorDetail_STATUS(gens map[string]gopter.Gen) { + gens["Code"] = gen.PtrOf(gen.AlphaString()) + gens["Message"] = gen.PtrOf(gen.AlphaString()) + gens["Target"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForErrorDetail_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForErrorDetail_STATUS(gens map[string]gopter.Gen) { + gens["AdditionalInfo"] = gen.SliceOf(ErrorAdditionalInfo_STATUSGenerator()) + gens["Details"] = gen.SliceOf(ErrorDetail_STATUS_UnrolledGenerator()) +} + +func Test_UpdateGroup_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 100 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroup via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroup, UpdateGroupGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroup runs a test to see if a specific instance of UpdateGroup round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroup(subject UpdateGroup) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroup + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroup instances for property testing - lazily instantiated by UpdateGroupGenerator() +var updateGroupGenerator gopter.Gen + +// UpdateGroupGenerator returns a generator of UpdateGroup instances for property testing. +func UpdateGroupGenerator() gopter.Gen { + if updateGroupGenerator != nil { + return updateGroupGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroup(generators) + updateGroupGenerator = gen.Struct(reflect.TypeOf(UpdateGroup{}), generators) + + return updateGroupGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroup is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroup(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_UpdateGroup_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroup_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroup_STATUS, UpdateGroup_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroup_STATUS runs a test to see if a specific instance of UpdateGroup_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroup_STATUS(subject UpdateGroup_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroup_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroup_STATUS instances for property testing - lazily instantiated by UpdateGroup_STATUSGenerator() +var updateGroup_STATUSGenerator gopter.Gen + +// UpdateGroup_STATUSGenerator returns a generator of UpdateGroup_STATUS instances for property testing. +func UpdateGroup_STATUSGenerator() gopter.Gen { + if updateGroup_STATUSGenerator != nil { + return updateGroup_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroup_STATUS(generators) + updateGroup_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateGroup_STATUS{}), generators) + + return updateGroup_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroup_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroup_STATUS(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_UpdateGroupStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of UpdateGroupStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForUpdateGroupStatus_STATUS, UpdateGroupStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForUpdateGroupStatus_STATUS runs a test to see if a specific instance of UpdateGroupStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForUpdateGroupStatus_STATUS(subject UpdateGroupStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual UpdateGroupStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of UpdateGroupStatus_STATUS instances for property testing - lazily instantiated by +// UpdateGroupStatus_STATUSGenerator() +var updateGroupStatus_STATUSGenerator gopter.Gen + +// UpdateGroupStatus_STATUSGenerator returns a generator of UpdateGroupStatus_STATUS instances for property testing. +// We first initialize updateGroupStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func UpdateGroupStatus_STATUSGenerator() gopter.Gen { + if updateGroupStatus_STATUSGenerator != nil { + return updateGroupStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS(generators) + updateGroupStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateGroupStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS(generators) + updateGroupStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(UpdateGroupStatus_STATUS{}), generators) + + return updateGroupStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForUpdateGroupStatus_STATUS(gens map[string]gopter.Gen) { + gens["Name"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForUpdateGroupStatus_STATUS(gens map[string]gopter.Gen) { + gens["Members"] = gen.SliceOf(MemberUpdateStatus_STATUSGenerator()) + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_WaitStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of WaitStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForWaitStatus_STATUS, WaitStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForWaitStatus_STATUS runs a test to see if a specific instance of WaitStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForWaitStatus_STATUS(subject WaitStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual WaitStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of WaitStatus_STATUS instances for property testing - lazily instantiated by WaitStatus_STATUSGenerator() +var waitStatus_STATUSGenerator gopter.Gen + +// WaitStatus_STATUSGenerator returns a generator of WaitStatus_STATUS instances for property testing. +// We first initialize waitStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func WaitStatus_STATUSGenerator() gopter.Gen { + if waitStatus_STATUSGenerator != nil { + return waitStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForWaitStatus_STATUS(generators) + waitStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(WaitStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForWaitStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForWaitStatus_STATUS(generators) + waitStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(WaitStatus_STATUS{}), generators) + + return waitStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForWaitStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForWaitStatus_STATUS(gens map[string]gopter.Gen) { + gens["WaitDurationInSeconds"] = gen.PtrOf(gen.Int()) +} + +// AddRelatedPropertyGeneratorsForWaitStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForWaitStatus_STATUS(gens map[string]gopter.Gen) { + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} + +func Test_ErrorAdditionalInfo_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorAdditionalInfo_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorAdditionalInfo_STATUS, ErrorAdditionalInfo_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorAdditionalInfo_STATUS runs a test to see if a specific instance of ErrorAdditionalInfo_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorAdditionalInfo_STATUS(subject ErrorAdditionalInfo_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorAdditionalInfo_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorAdditionalInfo_STATUS instances for property testing - lazily instantiated by +// ErrorAdditionalInfo_STATUSGenerator() +var errorAdditionalInfo_STATUSGenerator gopter.Gen + +// ErrorAdditionalInfo_STATUSGenerator returns a generator of ErrorAdditionalInfo_STATUS instances for property testing. +func ErrorAdditionalInfo_STATUSGenerator() gopter.Gen { + if errorAdditionalInfo_STATUSGenerator != nil { + return errorAdditionalInfo_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS(generators) + errorAdditionalInfo_STATUSGenerator = gen.Struct(reflect.TypeOf(ErrorAdditionalInfo_STATUS{}), generators) + + return errorAdditionalInfo_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorAdditionalInfo_STATUS(gens map[string]gopter.Gen) { + gens["Type"] = gen.PtrOf(gen.AlphaString()) +} + +func Test_ErrorDetail_STATUS_Unrolled_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of ErrorDetail_STATUS_Unrolled via JSON returns original", + prop.ForAll(RunJSONSerializationTestForErrorDetail_STATUS_Unrolled, ErrorDetail_STATUS_UnrolledGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForErrorDetail_STATUS_Unrolled runs a test to see if a specific instance of ErrorDetail_STATUS_Unrolled round trips to JSON and back losslessly +func RunJSONSerializationTestForErrorDetail_STATUS_Unrolled(subject ErrorDetail_STATUS_Unrolled) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual ErrorDetail_STATUS_Unrolled + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of ErrorDetail_STATUS_Unrolled instances for property testing - lazily instantiated by +// ErrorDetail_STATUS_UnrolledGenerator() +var errorDetail_STATUS_UnrolledGenerator gopter.Gen + +// ErrorDetail_STATUS_UnrolledGenerator returns a generator of ErrorDetail_STATUS_Unrolled instances for property testing. +// We first initialize errorDetail_STATUS_UnrolledGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func ErrorDetail_STATUS_UnrolledGenerator() gopter.Gen { + if errorDetail_STATUS_UnrolledGenerator != nil { + return errorDetail_STATUS_UnrolledGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled(generators) + errorDetail_STATUS_UnrolledGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_Unrolled{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled(generators) + AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled(generators) + errorDetail_STATUS_UnrolledGenerator = gen.Struct(reflect.TypeOf(ErrorDetail_STATUS_Unrolled{}), generators) + + return errorDetail_STATUS_UnrolledGenerator +} + +// AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForErrorDetail_STATUS_Unrolled(gens map[string]gopter.Gen) { + gens["Code"] = gen.PtrOf(gen.AlphaString()) + gens["Message"] = gen.PtrOf(gen.AlphaString()) + gens["Target"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForErrorDetail_STATUS_Unrolled(gens map[string]gopter.Gen) { + gens["AdditionalInfo"] = gen.SliceOf(ErrorAdditionalInfo_STATUSGenerator()) +} + +func Test_MemberUpdateStatus_STATUS_WhenSerializedToJson_DeserializesAsEqual(t *testing.T) { + t.Parallel() + parameters := gopter.DefaultTestParameters() + parameters.MinSuccessfulTests = 80 + parameters.MaxSize = 3 + properties := gopter.NewProperties(parameters) + properties.Property( + "Round trip of MemberUpdateStatus_STATUS via JSON returns original", + prop.ForAll(RunJSONSerializationTestForMemberUpdateStatus_STATUS, MemberUpdateStatus_STATUSGenerator())) + properties.TestingRun(t, gopter.NewFormatedReporter(true, 240, os.Stdout)) +} + +// RunJSONSerializationTestForMemberUpdateStatus_STATUS runs a test to see if a specific instance of MemberUpdateStatus_STATUS round trips to JSON and back losslessly +func RunJSONSerializationTestForMemberUpdateStatus_STATUS(subject MemberUpdateStatus_STATUS) string { + // Serialize to JSON + bin, err := json.Marshal(subject) + if err != nil { + return err.Error() + } + + // Deserialize back into memory + var actual MemberUpdateStatus_STATUS + err = json.Unmarshal(bin, &actual) + if err != nil { + return err.Error() + } + + // Check for outcome + match := cmp.Equal(subject, actual, cmpopts.EquateEmpty()) + if !match { + actualFmt := pretty.Sprint(actual) + subjectFmt := pretty.Sprint(subject) + result := diff.Diff(subjectFmt, actualFmt) + return result + } + + return "" +} + +// Generator of MemberUpdateStatus_STATUS instances for property testing - lazily instantiated by +// MemberUpdateStatus_STATUSGenerator() +var memberUpdateStatus_STATUSGenerator gopter.Gen + +// MemberUpdateStatus_STATUSGenerator returns a generator of MemberUpdateStatus_STATUS instances for property testing. +// We first initialize memberUpdateStatus_STATUSGenerator with a simplified generator based on the +// fields with primitive types then replacing it with a more complex one that also handles complex fields +// to ensure any cycles in the object graph properly terminate. +func MemberUpdateStatus_STATUSGenerator() gopter.Gen { + if memberUpdateStatus_STATUSGenerator != nil { + return memberUpdateStatus_STATUSGenerator + } + + generators := make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS(generators) + memberUpdateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(MemberUpdateStatus_STATUS{}), generators) + + // The above call to gen.Struct() captures the map, so create a new one + generators = make(map[string]gopter.Gen) + AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS(generators) + AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS(generators) + memberUpdateStatus_STATUSGenerator = gen.Struct(reflect.TypeOf(MemberUpdateStatus_STATUS{}), generators) + + return memberUpdateStatus_STATUSGenerator +} + +// AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS is a factory method for creating gopter generators +func AddIndependentPropertyGeneratorsForMemberUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["ClusterResourceId"] = gen.PtrOf(gen.AlphaString()) + gens["Name"] = gen.PtrOf(gen.AlphaString()) + gens["OperationId"] = gen.PtrOf(gen.AlphaString()) +} + +// AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS is a factory method for creating gopter generators +func AddRelatedPropertyGeneratorsForMemberUpdateStatus_STATUS(gens map[string]gopter.Gen) { + gens["Status"] = gen.PtrOf(UpdateStatus_STATUSGenerator()) +} diff --git a/v2/api/containerservice/v1api20230315previewstorage/structure.txt b/v2/api/containerservice/v1api20230315previewstorage/structure.txt index 05c3c5327ee..b760a8061e6 100644 --- a/v2/api/containerservice/v1api20230315previewstorage/structure.txt +++ b/v2/api/containerservice/v1api20230315previewstorage/structure.txt @@ -4,7 +4,7 @@ github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315pre │ └── "2023-03-15-preview" ├── Fleet: Resource │ ├── Owner: github.com/Azure/azure-service-operator/v2/api/resources/v1apiv20191001.ResourceGroup -│ ├── Spec: Object (7 properties) +│ ├── Spec: Object (8 properties) │ │ ├── AzureName: Validated (3 rules) │ │ │ ├── Rule 0: MaxLength: 63 │ │ │ ├── Rule 1: MinLength: 1 @@ -13,6 +13,11 @@ github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315pre │ │ │ ├── DnsPrefix: *string │ │ │ └── PropertyBag: genruntime.PropertyBag │ │ ├── Location: *string +│ │ ├── OperatorSpec: *Object (2 properties) +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ └── Secrets: *Object (2 properties) +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ └── UserCredentials: *genruntime.SecretDestination │ │ ├── OriginalVersion: string │ │ ├── Owner: *genruntime.KnownResourceReference │ │ ├── PropertyBag: genruntime.PropertyBag @@ -40,4 +45,221 @@ github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315pre │ │ └── PropertyBag: genruntime.PropertyBag │ ├── Tags: map[string]string │ └── Type: *string +├── FleetsMember: Resource +│ ├── Owner: github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315preview.Fleet +│ ├── Spec: Object (6 properties) +│ │ ├── AzureName: Validated (3 rules) +│ │ │ ├── Rule 0: MaxLength: 50 +│ │ │ ├── Rule 1: MinLength: 1 +│ │ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ │ ├── ClusterResourceReference: *genruntime.ResourceReference +│ │ ├── Group: *string +│ │ ├── OriginalVersion: string +│ │ ├── Owner: *genruntime.KnownResourceReference +│ │ └── PropertyBag: genruntime.PropertyBag +│ └── Status: Object (10 properties) +│ ├── ClusterResourceId: *string +│ ├── Conditions: conditions.Condition[] +│ ├── ETag: *string +│ ├── Group: *string +│ ├── Id: *string +│ ├── Name: *string +│ ├── PropertyBag: genruntime.PropertyBag +│ ├── ProvisioningState: *string +│ ├── SystemData: *Object (7 properties) +│ │ ├── CreatedAt: *string +│ │ ├── CreatedBy: *string +│ │ ├── CreatedByType: *string +│ │ ├── LastModifiedAt: *string +│ │ ├── LastModifiedBy: *string +│ │ ├── LastModifiedByType: *string +│ │ └── PropertyBag: genruntime.PropertyBag +│ └── Type: *string +├── FleetsUpdateRun: Resource +│ ├── Owner: github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315preview.Fleet +│ ├── Spec: Object (6 properties) +│ │ ├── AzureName: Validated (3 rules) +│ │ │ ├── Rule 0: MaxLength: 50 +│ │ │ ├── Rule 1: MinLength: 1 +│ │ │ └── Rule 2: Pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" +│ │ ├── ManagedClusterUpdate: *Object (2 properties) +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ └── Upgrade: *Object (3 properties) +│ │ │ ├── KubernetesVersion: *string +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ └── Type: *string +│ │ ├── OriginalVersion: string +│ │ ├── Owner: *genruntime.KnownResourceReference +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ └── Strategy: *Object (2 properties) +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ └── Stages: Object (4 properties)[] +│ │ ├── AfterStageWaitInSeconds: *int +│ │ ├── Groups: Object (2 properties)[] +│ │ │ ├── Name: *string +│ │ │ └── PropertyBag: genruntime.PropertyBag +│ │ ├── Name: *string +│ │ └── PropertyBag: genruntime.PropertyBag +│ └── Status: Object (11 properties) +│ ├── Conditions: conditions.Condition[] +│ ├── ETag: *string +│ ├── Id: *string +│ ├── ManagedClusterUpdate: *Object (2 properties) +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ └── Upgrade: *Object (3 properties) +│ │ ├── KubernetesVersion: *string +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ └── Type: *string +│ ├── Name: *string +│ ├── PropertyBag: genruntime.PropertyBag +│ ├── ProvisioningState: *string +│ ├── Status: *Object (3 properties) +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ ├── Stages: Object (5 properties)[] +│ │ │ ├── AfterStageWaitStatus: *Object (3 properties) +│ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ ├── Status: *Object (5 properties) +│ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ ├── Error: *Object (6 properties) +│ │ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Details: Object (5 properties)[] +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ └── State: *string +│ │ │ │ └── WaitDurationInSeconds: *int +│ │ │ ├── Groups: Object (4 properties)[] +│ │ │ │ ├── Members: Object (5 properties)[] +│ │ │ │ │ ├── ClusterResourceId: *string +│ │ │ │ │ ├── Name: *string +│ │ │ │ │ ├── OperationId: *string +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ └── Status: *Object (5 properties) +│ │ │ │ │ ├── CompletedTime: *string +│ │ │ │ │ ├── Error: *Object (6 properties) +│ │ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Details: Object (5 properties)[] +│ │ │ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ └── Target: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ ├── StartTime: *string +│ │ │ │ │ └── State: *string +│ │ │ │ ├── Name: *string +│ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ └── Status: *Object (5 properties) +│ │ │ │ ├── CompletedTime: *string +│ │ │ │ ├── Error: *Object (6 properties) +│ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ └── Type: *string +│ │ │ │ │ ├── Code: *string +│ │ │ │ │ ├── Details: Object (5 properties)[] +│ │ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ │ └── Type: *string +│ │ │ │ │ │ ├── Code: *string +│ │ │ │ │ │ ├── Message: *string +│ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ └── Target: *string +│ │ │ │ │ ├── Message: *string +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ └── Target: *string +│ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ ├── StartTime: *string +│ │ │ │ └── State: *string +│ │ │ ├── Name: *string +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ └── Status: *Object (5 properties) +│ │ │ ├── CompletedTime: *string +│ │ │ ├── Error: *Object (6 properties) +│ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ └── Type: *string +│ │ │ │ ├── Code: *string +│ │ │ │ ├── Details: Object (5 properties)[] +│ │ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ │ └── Type: *string +│ │ │ │ │ ├── Code: *string +│ │ │ │ │ ├── Message: *string +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ └── Target: *string +│ │ │ │ ├── Message: *string +│ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ └── Target: *string +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ ├── StartTime: *string +│ │ │ └── State: *string +│ │ └── Status: *Object (5 properties) +│ │ ├── CompletedTime: *string +│ │ ├── Error: *Object (6 properties) +│ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ └── Type: *string +│ │ │ ├── Code: *string +│ │ │ ├── Details: Object (5 properties)[] +│ │ │ │ ├── AdditionalInfo: Object (3 properties)[] +│ │ │ │ │ ├── Info: map[string]v1.JSON +│ │ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ │ └── Type: *string +│ │ │ │ ├── Code: *string +│ │ │ │ ├── Message: *string +│ │ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ │ └── Target: *string +│ │ │ ├── Message: *string +│ │ │ ├── PropertyBag: genruntime.PropertyBag +│ │ │ └── Target: *string +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ ├── StartTime: *string +│ │ └── State: *string +│ ├── Strategy: *Object (2 properties) +│ │ ├── PropertyBag: genruntime.PropertyBag +│ │ └── Stages: Object (4 properties)[] +│ │ ├── AfterStageWaitInSeconds: *int +│ │ ├── Groups: Object (2 properties)[] +│ │ │ ├── Name: *string +│ │ │ └── PropertyBag: genruntime.PropertyBag +│ │ ├── Name: *string +│ │ └── PropertyBag: genruntime.PropertyBag +│ ├── SystemData: *Object (7 properties) +│ │ ├── CreatedAt: *string +│ │ ├── CreatedBy: *string +│ │ ├── CreatedByType: *string +│ │ ├── LastModifiedAt: *string +│ │ ├── LastModifiedBy: *string +│ │ ├── LastModifiedByType: *string +│ │ └── PropertyBag: genruntime.PropertyBag +│ └── Type: *string └── augmentConversionForSystemData_STATUS: Interface diff --git a/v2/api/containerservice/v1api20230315previewstorage/zz_generated.deepcopy.go b/v2/api/containerservice/v1api20230315previewstorage/zz_generated.deepcopy.go index af177fc4a05..c07bb379e18 100644 --- a/v2/api/containerservice/v1api20230315previewstorage/zz_generated.deepcopy.go +++ b/v2/api/containerservice/v1api20230315previewstorage/zz_generated.deepcopy.go @@ -12,9 +12,139 @@ package v1api20230315previewstorage import ( "github.com/Azure/azure-service-operator/v2/pkg/genruntime" "github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions" + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1" runtime "k8s.io/apimachinery/pkg/runtime" ) +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorAdditionalInfo_STATUS) DeepCopyInto(out *ErrorAdditionalInfo_STATUS) { + *out = *in + if in.Info != nil { + in, out := &in.Info, &out.Info + *out = make(map[string]v1.JSON, len(*in)) + for key, val := range *in { + (*out)[key] = *val.DeepCopy() + } + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorAdditionalInfo_STATUS. +func (in *ErrorAdditionalInfo_STATUS) DeepCopy() *ErrorAdditionalInfo_STATUS { + if in == nil { + return nil + } + out := new(ErrorAdditionalInfo_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorDetail_STATUS) DeepCopyInto(out *ErrorDetail_STATUS) { + *out = *in + if in.AdditionalInfo != nil { + in, out := &in.AdditionalInfo, &out.AdditionalInfo + *out = make([]ErrorAdditionalInfo_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Code != nil { + in, out := &in.Code, &out.Code + *out = new(string) + **out = **in + } + if in.Details != nil { + in, out := &in.Details, &out.Details + *out = make([]ErrorDetail_STATUS_Unrolled, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Message != nil { + in, out := &in.Message, &out.Message + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Target != nil { + in, out := &in.Target, &out.Target + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorDetail_STATUS. +func (in *ErrorDetail_STATUS) DeepCopy() *ErrorDetail_STATUS { + if in == nil { + return nil + } + out := new(ErrorDetail_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ErrorDetail_STATUS_Unrolled) DeepCopyInto(out *ErrorDetail_STATUS_Unrolled) { + *out = *in + if in.AdditionalInfo != nil { + in, out := &in.AdditionalInfo, &out.AdditionalInfo + *out = make([]ErrorAdditionalInfo_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Code != nil { + in, out := &in.Code, &out.Code + *out = new(string) + **out = **in + } + if in.Message != nil { + in, out := &in.Message, &out.Message + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Target != nil { + in, out := &in.Target, &out.Target + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorDetail_STATUS_Unrolled. +func (in *ErrorDetail_STATUS_Unrolled) DeepCopy() *ErrorDetail_STATUS_Unrolled { + if in == nil { + return nil + } + out := new(ErrorDetail_STATUS_Unrolled) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Fleet) DeepCopyInto(out *Fleet) { *out = *in @@ -138,6 +268,60 @@ func (in *FleetList) DeepCopyObject() runtime.Object { return nil } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetOperatorSecrets) DeepCopyInto(out *FleetOperatorSecrets) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.UserCredentials != nil { + in, out := &in.UserCredentials, &out.UserCredentials + *out = new(genruntime.SecretDestination) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetOperatorSecrets. +func (in *FleetOperatorSecrets) DeepCopy() *FleetOperatorSecrets { + if in == nil { + return nil + } + out := new(FleetOperatorSecrets) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetOperatorSpec) DeepCopyInto(out *FleetOperatorSpec) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Secrets != nil { + in, out := &in.Secrets, &out.Secrets + *out = new(FleetOperatorSecrets) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetOperatorSpec. +func (in *FleetOperatorSpec) DeepCopy() *FleetOperatorSpec { + if in == nil { + return nil + } + out := new(FleetOperatorSpec) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *Fleet_STATUS) DeepCopyInto(out *Fleet_STATUS) { *out = *in @@ -227,6 +411,11 @@ func (in *Fleet_Spec) DeepCopyInto(out *Fleet_Spec) { *out = new(string) **out = **in } + if in.OperatorSpec != nil { + in, out := &in.OperatorSpec, &out.OperatorSpec + *out = new(FleetOperatorSpec) + (*in).DeepCopyInto(*out) + } if in.Owner != nil { in, out := &in.Owner, &out.Owner *out = new(genruntime.KnownResourceReference) @@ -259,35 +448,591 @@ func (in *Fleet_Spec) DeepCopy() *Fleet_Spec { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *SystemData_STATUS) DeepCopyInto(out *SystemData_STATUS) { +func (in *FleetsMember) DeepCopyInto(out *FleetsMember) { *out = *in - if in.CreatedAt != nil { - in, out := &in.CreatedAt, &out.CreatedAt + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.Spec.DeepCopyInto(&out.Spec) + in.Status.DeepCopyInto(&out.Status) +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsMember. +func (in *FleetsMember) DeepCopy() *FleetsMember { + if in == nil { + return nil + } + out := new(FleetsMember) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsMember) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetsMemberList) DeepCopyInto(out *FleetsMemberList) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]FleetsMember, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsMemberList. +func (in *FleetsMemberList) DeepCopy() *FleetsMemberList { + if in == nil { + return nil + } + out := new(FleetsMemberList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsMemberList) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetsUpdateRun) DeepCopyInto(out *FleetsUpdateRun) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.Spec.DeepCopyInto(&out.Spec) + in.Status.DeepCopyInto(&out.Status) +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsUpdateRun. +func (in *FleetsUpdateRun) DeepCopy() *FleetsUpdateRun { + if in == nil { + return nil + } + out := new(FleetsUpdateRun) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsUpdateRun) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *FleetsUpdateRunList) DeepCopyInto(out *FleetsUpdateRunList) { + *out = *in + out.TypeMeta = in.TypeMeta + in.ListMeta.DeepCopyInto(&out.ListMeta) + if in.Items != nil { + in, out := &in.Items, &out.Items + *out = make([]FleetsUpdateRun, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FleetsUpdateRunList. +func (in *FleetsUpdateRunList) DeepCopy() *FleetsUpdateRunList { + if in == nil { + return nil + } + out := new(FleetsUpdateRunList) + in.DeepCopyInto(out) + return out +} + +// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. +func (in *FleetsUpdateRunList) DeepCopyObject() runtime.Object { + if c := in.DeepCopy(); c != nil { + return c + } + return nil +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_Member_STATUS) DeepCopyInto(out *Fleets_Member_STATUS) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId *out = new(string) **out = **in } - if in.CreatedBy != nil { - in, out := &in.CreatedBy, &out.CreatedBy + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]conditions.Condition, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.ETag != nil { + in, out := &in.ETag, &out.ETag *out = new(string) **out = **in } - if in.CreatedByType != nil { - in, out := &in.CreatedByType, &out.CreatedByType + if in.Group != nil { + in, out := &in.Group, &out.Group *out = new(string) **out = **in } - if in.LastModifiedAt != nil { - in, out := &in.LastModifiedAt, &out.LastModifiedAt + if in.Id != nil { + in, out := &in.Id, &out.Id *out = new(string) **out = **in } - if in.LastModifiedBy != nil { - in, out := &in.LastModifiedBy, &out.LastModifiedBy + if in.Name != nil { + in, out := &in.Name, &out.Name *out = new(string) **out = **in } - if in.LastModifiedByType != nil { - in, out := &in.LastModifiedByType, &out.LastModifiedByType + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.ProvisioningState != nil { + in, out := &in.ProvisioningState, &out.ProvisioningState + *out = new(string) + **out = **in + } + if in.SystemData != nil { + in, out := &in.SystemData, &out.SystemData + *out = new(SystemData_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_Member_STATUS. +func (in *Fleets_Member_STATUS) DeepCopy() *Fleets_Member_STATUS { + if in == nil { + return nil + } + out := new(Fleets_Member_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_Member_Spec) DeepCopyInto(out *Fleets_Member_Spec) { + *out = *in + if in.ClusterResourceReference != nil { + in, out := &in.ClusterResourceReference, &out.ClusterResourceReference + *out = new(genruntime.ResourceReference) + **out = **in + } + if in.Group != nil { + in, out := &in.Group, &out.Group + *out = new(string) + **out = **in + } + if in.Owner != nil { + in, out := &in.Owner, &out.Owner + *out = new(genruntime.KnownResourceReference) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_Member_Spec. +func (in *Fleets_Member_Spec) DeepCopy() *Fleets_Member_Spec { + if in == nil { + return nil + } + out := new(Fleets_Member_Spec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_UpdateRun_STATUS) DeepCopyInto(out *Fleets_UpdateRun_STATUS) { + *out = *in + if in.Conditions != nil { + in, out := &in.Conditions, &out.Conditions + *out = make([]conditions.Condition, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.ETag != nil { + in, out := &in.ETag, &out.ETag + *out = new(string) + **out = **in + } + if in.Id != nil { + in, out := &in.Id, &out.Id + *out = new(string) + **out = **in + } + if in.ManagedClusterUpdate != nil { + in, out := &in.ManagedClusterUpdate, &out.ManagedClusterUpdate + *out = new(ManagedClusterUpdate_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.ProvisioningState != nil { + in, out := &in.ProvisioningState, &out.ProvisioningState + *out = new(string) + **out = **in + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateRunStatus_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Strategy != nil { + in, out := &in.Strategy, &out.Strategy + *out = new(UpdateRunStrategy_STATUS) + (*in).DeepCopyInto(*out) + } + if in.SystemData != nil { + in, out := &in.SystemData, &out.SystemData + *out = new(SystemData_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_UpdateRun_STATUS. +func (in *Fleets_UpdateRun_STATUS) DeepCopy() *Fleets_UpdateRun_STATUS { + if in == nil { + return nil + } + out := new(Fleets_UpdateRun_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *Fleets_UpdateRun_Spec) DeepCopyInto(out *Fleets_UpdateRun_Spec) { + *out = *in + if in.ManagedClusterUpdate != nil { + in, out := &in.ManagedClusterUpdate, &out.ManagedClusterUpdate + *out = new(ManagedClusterUpdate) + (*in).DeepCopyInto(*out) + } + if in.Owner != nil { + in, out := &in.Owner, &out.Owner + *out = new(genruntime.KnownResourceReference) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Strategy != nil { + in, out := &in.Strategy, &out.Strategy + *out = new(UpdateRunStrategy) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Fleets_UpdateRun_Spec. +func (in *Fleets_UpdateRun_Spec) DeepCopy() *Fleets_UpdateRun_Spec { + if in == nil { + return nil + } + out := new(Fleets_UpdateRun_Spec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpdate) DeepCopyInto(out *ManagedClusterUpdate) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Upgrade != nil { + in, out := &in.Upgrade, &out.Upgrade + *out = new(ManagedClusterUpgradeSpec) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpdate. +func (in *ManagedClusterUpdate) DeepCopy() *ManagedClusterUpdate { + if in == nil { + return nil + } + out := new(ManagedClusterUpdate) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpdate_STATUS) DeepCopyInto(out *ManagedClusterUpdate_STATUS) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Upgrade != nil { + in, out := &in.Upgrade, &out.Upgrade + *out = new(ManagedClusterUpgradeSpec_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpdate_STATUS. +func (in *ManagedClusterUpdate_STATUS) DeepCopy() *ManagedClusterUpdate_STATUS { + if in == nil { + return nil + } + out := new(ManagedClusterUpdate_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpgradeSpec) DeepCopyInto(out *ManagedClusterUpgradeSpec) { + *out = *in + if in.KubernetesVersion != nil { + in, out := &in.KubernetesVersion, &out.KubernetesVersion + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpgradeSpec. +func (in *ManagedClusterUpgradeSpec) DeepCopy() *ManagedClusterUpgradeSpec { + if in == nil { + return nil + } + out := new(ManagedClusterUpgradeSpec) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *ManagedClusterUpgradeSpec_STATUS) DeepCopyInto(out *ManagedClusterUpgradeSpec_STATUS) { + *out = *in + if in.KubernetesVersion != nil { + in, out := &in.KubernetesVersion, &out.KubernetesVersion + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Type != nil { + in, out := &in.Type, &out.Type + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ManagedClusterUpgradeSpec_STATUS. +func (in *ManagedClusterUpgradeSpec_STATUS) DeepCopy() *ManagedClusterUpgradeSpec_STATUS { + if in == nil { + return nil + } + out := new(ManagedClusterUpgradeSpec_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *MemberUpdateStatus_STATUS) DeepCopyInto(out *MemberUpdateStatus_STATUS) { + *out = *in + if in.ClusterResourceId != nil { + in, out := &in.ClusterResourceId, &out.ClusterResourceId + *out = new(string) + **out = **in + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.OperationId != nil { + in, out := &in.OperationId, &out.OperationId + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemberUpdateStatus_STATUS. +func (in *MemberUpdateStatus_STATUS) DeepCopy() *MemberUpdateStatus_STATUS { + if in == nil { + return nil + } + out := new(MemberUpdateStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *SystemData_STATUS) DeepCopyInto(out *SystemData_STATUS) { + *out = *in + if in.CreatedAt != nil { + in, out := &in.CreatedAt, &out.CreatedAt + *out = new(string) + **out = **in + } + if in.CreatedBy != nil { + in, out := &in.CreatedBy, &out.CreatedBy + *out = new(string) + **out = **in + } + if in.CreatedByType != nil { + in, out := &in.CreatedByType, &out.CreatedByType + *out = new(string) + **out = **in + } + if in.LastModifiedAt != nil { + in, out := &in.LastModifiedAt, &out.LastModifiedAt + *out = new(string) + **out = **in + } + if in.LastModifiedBy != nil { + in, out := &in.LastModifiedBy, &out.LastModifiedBy + *out = new(string) + **out = **in + } + if in.LastModifiedByType != nil { + in, out := &in.LastModifiedByType, &out.LastModifiedByType + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS. +func (in *SystemData_STATUS) DeepCopy() *SystemData_STATUS { + if in == nil { + return nil + } + out := new(SystemData_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroup) DeepCopyInto(out *UpdateGroup) { + *out = *in + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroup. +func (in *UpdateGroup) DeepCopy() *UpdateGroup { + if in == nil { + return nil + } + out := new(UpdateGroup) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroupStatus_STATUS) DeepCopyInto(out *UpdateGroupStatus_STATUS) { + *out = *in + if in.Members != nil { + in, out := &in.Members, &out.Members + *out = make([]MemberUpdateStatus_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name *out = new(string) **out = **in } @@ -298,14 +1043,334 @@ func (in *SystemData_STATUS) DeepCopyInto(out *SystemData_STATUS) { (*out)[key] = val } } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS. -func (in *SystemData_STATUS) DeepCopy() *SystemData_STATUS { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroupStatus_STATUS. +func (in *UpdateGroupStatus_STATUS) DeepCopy() *UpdateGroupStatus_STATUS { if in == nil { return nil } - out := new(SystemData_STATUS) + out := new(UpdateGroupStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateGroup_STATUS) DeepCopyInto(out *UpdateGroup_STATUS) { + *out = *in + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateGroup_STATUS. +func (in *UpdateGroup_STATUS) DeepCopy() *UpdateGroup_STATUS { + if in == nil { + return nil + } + out := new(UpdateGroup_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStatus_STATUS) DeepCopyInto(out *UpdateRunStatus_STATUS) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStageStatus_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStatus_STATUS. +func (in *UpdateRunStatus_STATUS) DeepCopy() *UpdateRunStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateRunStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStrategy) DeepCopyInto(out *UpdateRunStrategy) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStage, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStrategy. +func (in *UpdateRunStrategy) DeepCopy() *UpdateRunStrategy { + if in == nil { + return nil + } + out := new(UpdateRunStrategy) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateRunStrategy_STATUS) DeepCopyInto(out *UpdateRunStrategy_STATUS) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Stages != nil { + in, out := &in.Stages, &out.Stages + *out = make([]UpdateStage_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateRunStrategy_STATUS. +func (in *UpdateRunStrategy_STATUS) DeepCopy() *UpdateRunStrategy_STATUS { + if in == nil { + return nil + } + out := new(UpdateRunStrategy_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStage) DeepCopyInto(out *UpdateStage) { + *out = *in + if in.AfterStageWaitInSeconds != nil { + in, out := &in.AfterStageWaitInSeconds, &out.AfterStageWaitInSeconds + *out = new(int) + **out = **in + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroup, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStage. +func (in *UpdateStage) DeepCopy() *UpdateStage { + if in == nil { + return nil + } + out := new(UpdateStage) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStageStatus_STATUS) DeepCopyInto(out *UpdateStageStatus_STATUS) { + *out = *in + if in.AfterStageWaitStatus != nil { + in, out := &in.AfterStageWaitStatus, &out.AfterStageWaitStatus + *out = new(WaitStatus_STATUS) + (*in).DeepCopyInto(*out) + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroupStatus_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStageStatus_STATUS. +func (in *UpdateStageStatus_STATUS) DeepCopy() *UpdateStageStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateStageStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStage_STATUS) DeepCopyInto(out *UpdateStage_STATUS) { + *out = *in + if in.AfterStageWaitInSeconds != nil { + in, out := &in.AfterStageWaitInSeconds, &out.AfterStageWaitInSeconds + *out = new(int) + **out = **in + } + if in.Groups != nil { + in, out := &in.Groups, &out.Groups + *out = make([]UpdateGroup_STATUS, len(*in)) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } + } + if in.Name != nil { + in, out := &in.Name, &out.Name + *out = new(string) + **out = **in + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStage_STATUS. +func (in *UpdateStage_STATUS) DeepCopy() *UpdateStage_STATUS { + if in == nil { + return nil + } + out := new(UpdateStage_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *UpdateStatus_STATUS) DeepCopyInto(out *UpdateStatus_STATUS) { + *out = *in + if in.CompletedTime != nil { + in, out := &in.CompletedTime, &out.CompletedTime + *out = new(string) + **out = **in + } + if in.Error != nil { + in, out := &in.Error, &out.Error + *out = new(ErrorDetail_STATUS) + (*in).DeepCopyInto(*out) + } + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.StartTime != nil { + in, out := &in.StartTime, &out.StartTime + *out = new(string) + **out = **in + } + if in.State != nil { + in, out := &in.State, &out.State + *out = new(string) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UpdateStatus_STATUS. +func (in *UpdateStatus_STATUS) DeepCopy() *UpdateStatus_STATUS { + if in == nil { + return nil + } + out := new(UpdateStatus_STATUS) + in.DeepCopyInto(out) + return out +} + +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *WaitStatus_STATUS) DeepCopyInto(out *WaitStatus_STATUS) { + *out = *in + if in.PropertyBag != nil { + in, out := &in.PropertyBag, &out.PropertyBag + *out = make(genruntime.PropertyBag, len(*in)) + for key, val := range *in { + (*out)[key] = val + } + } + if in.Status != nil { + in, out := &in.Status, &out.Status + *out = new(UpdateStatus_STATUS) + (*in).DeepCopyInto(*out) + } + if in.WaitDurationInSeconds != nil { + in, out := &in.WaitDurationInSeconds, &out.WaitDurationInSeconds + *out = new(int) + **out = **in + } +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WaitStatus_STATUS. +func (in *WaitStatus_STATUS) DeepCopy() *WaitStatus_STATUS { + if in == nil { + return nil + } + out := new(WaitStatus_STATUS) in.DeepCopyInto(out) return out } diff --git a/v2/api/containerservice/versions_matrix.md b/v2/api/containerservice/versions_matrix.md index ebb00963a54..02b459e1d25 100644 --- a/v2/api/containerservice/versions_matrix.md +++ b/v2/api/containerservice/versions_matrix.md @@ -54,6 +54,9 @@ | ControlPlaneUpgradeOverride_STATUS | | | v1api20230202preview | | | | CreationData | | v1api20230201 | v1api20230202preview | | | | CreationData_STATUS | | v1api20230201 | v1api20230202preview | | | +| ErrorAdditionalInfo_STATUS | | | | v1api20230315preview | | +| ErrorDetail_STATUS | | | | v1api20230315preview | | +| ErrorDetail_STATUS_Unrolled | | | | v1api20230315preview | | | ExtendedLocation | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | ExtendedLocationType | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | ExtendedLocationType_STATUS | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | @@ -61,11 +64,20 @@ | Fleet | | | | v1api20230315preview | | | FleetHubProfile | | | | v1api20230315preview | | | FleetHubProfile_STATUS | | | | v1api20230315preview | | +| FleetMemberProperties | | | | v1api20230315preview | | +| FleetMemberProperties_STATUS | | | | v1api20230315preview | | +| FleetMemberProvisioningState_STATUS | | | | v1api20230315preview | | | FleetProperties | | | | v1api20230315preview | | | FleetProperties_STATUS | | | | v1api20230315preview | | | FleetProvisioningState_STATUS | | | | v1api20230315preview | | | Fleet_STATUS | | | | v1api20230315preview | | | Fleet_Spec | | | | v1api20230315preview | | +| FleetsMember | | | | v1api20230315preview | | +| FleetsUpdateRun | | | | v1api20230315preview | | +| Fleets_Member_STATUS | | | | v1api20230315preview | | +| Fleets_Member_Spec | | | | v1api20230315preview | | +| Fleets_UpdateRun_STATUS | | | | v1api20230315preview | | +| Fleets_UpdateRun_Spec | | | | v1api20230315preview | | | GPUInstanceProfile | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | GPUInstanceProfile_STATUS | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | GuardrailsProfile | | | v1api20230202preview | | | @@ -194,6 +206,12 @@ | ManagedClusterStorageProfileSnapshotController | | v1api20230201 | v1api20230202preview | | | | ManagedClusterStorageProfileSnapshotController_STATUS | | v1api20230201 | v1api20230202preview | | | | ManagedClusterStorageProfile_STATUS | | v1api20230201 | v1api20230202preview | | | +| ManagedClusterUpdate | | | | v1api20230315preview | | +| ManagedClusterUpdate_STATUS | | | | v1api20230315preview | | +| ManagedClusterUpgradeSpec | | | | v1api20230315preview | | +| ManagedClusterUpgradeSpec_STATUS | | | | v1api20230315preview | | +| ManagedClusterUpgradeType | | | | v1api20230315preview | | +| ManagedClusterUpgradeType_STATUS | | | | v1api20230315preview | | | ManagedClusterWindowsProfile | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | ManagedClusterWindowsProfile_LicenseType | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | ManagedClusterWindowsProfile_LicenseType_STATUS | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | @@ -215,6 +233,7 @@ | ManagedClusters_AgentPool_Spec | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | ManagedClusters_TrustedAccessRoleBinding_STATUS | | | v1api20230202preview | | | | ManagedClusters_TrustedAccessRoleBinding_Spec | | | v1api20230202preview | | | +| MemberUpdateStatus_STATUS | | | | v1api20230315preview | | | NetworkDataplane | | | v1api20230202preview | | | | NetworkDataplane_STATUS | | | v1api20230202preview | | | | NetworkMode | | | v1api20230202preview | | | @@ -262,11 +281,26 @@ | TrustedAccessRoleBindingProperties | | | v1api20230202preview | | | | TrustedAccessRoleBindingProperties_ProvisioningState_STATUS | | | v1api20230202preview | | | | TrustedAccessRoleBindingProperties_STATUS | | | v1api20230202preview | | | +| UpdateGroup | | | | v1api20230315preview | | +| UpdateGroupStatus_STATUS | | | | v1api20230315preview | | +| UpdateGroup_STATUS | | | | v1api20230315preview | | +| UpdateRunProperties | | | | v1api20230315preview | | +| UpdateRunProperties_STATUS | | | | v1api20230315preview | | +| UpdateRunProvisioningState_STATUS | | | | v1api20230315preview | | +| UpdateRunStatus_STATUS | | | | v1api20230315preview | | +| UpdateRunStrategy | | | | v1api20230315preview | | +| UpdateRunStrategy_STATUS | | | | v1api20230315preview | | +| UpdateStage | | | | v1api20230315preview | | +| UpdateStageStatus_STATUS | | | | v1api20230315preview | | +| UpdateStage_STATUS | | | | v1api20230315preview | | +| UpdateState_STATUS | | | | v1api20230315preview | | +| UpdateStatus_STATUS | | | | v1api20230315preview | | | UpgradeOverrideSettings | | | v1api20230202preview | | | | UpgradeOverrideSettings_STATUS | | | v1api20230202preview | | | | UserAssignedIdentity | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | UserAssignedIdentityDetails | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | | UserAssignedIdentity_STATUS | v1api20210501 | v1api20230201 | v1api20230202preview | | v1beta20210501 | +| WaitStatus_STATUS | | | | v1api20230315preview | | | WindowsGmsaProfile | | v1api20230201 | v1api20230202preview | | | | WindowsGmsaProfile_STATUS | | v1api20230201 | v1api20230202preview | | | | WorkloadRuntime | | v1api20230201 | v1api20230202preview | | | diff --git a/v2/azure-arm.yaml b/v2/azure-arm.yaml index 9d0db19bfb6..876ed16936f 100644 --- a/v2/azure-arm.yaml +++ b/v2/azure-arm.yaml @@ -1030,6 +1030,14 @@ objectModelConfiguration: Fleet: $export: true $supportedFrom: v2.2.0 + $azureGeneratedSecrets: + - UserCredentials + Fleets_Member: + $exportAs: FleetsMember + $supportedFrom: v2.2.0 + Fleets_UpdateRun: + $exportAs: FleetsUpdateRun + $supportedFrom: v2.2.0 datafactory: 2018-06-01: PurviewConfiguration: diff --git a/v2/internal/controllers/controller_resources_gen.go b/v2/internal/controllers/controller_resources_gen.go index b77ed3b7d0d..bfdaddb8761 100644 --- a/v2/internal/controllers/controller_resources_gen.go +++ b/v2/internal/controllers/controller_resources_gen.go @@ -349,6 +349,8 @@ func getKnownStorageTypes() []*registration.StorageType { result = append(result, ®istration.StorageType{Obj: new(containerservice_v20230201s.ManagedClustersAgentPool)}) result = append(result, ®istration.StorageType{Obj: new(containerservice_v20230202ps.TrustedAccessRoleBinding)}) result = append(result, ®istration.StorageType{Obj: new(containerservice_v20230315ps.Fleet)}) + result = append(result, ®istration.StorageType{Obj: new(containerservice_v20230315ps.FleetsMember)}) + result = append(result, ®istration.StorageType{Obj: new(containerservice_v20230315ps.FleetsUpdateRun)}) result = append(result, ®istration.StorageType{Obj: new(datafactory_v20180601s.Factory)}) result = append(result, ®istration.StorageType{Obj: new(dataprotection_v20230101s.BackupVault)}) result = append(result, ®istration.StorageType{Obj: new(dataprotection_v20230101s.BackupVaultsBackupPolicy)}) @@ -992,8 +994,16 @@ func getKnownTypes() []client.Object { new(containerservice_v20230202ps.ManagedCluster), new(containerservice_v20230202ps.ManagedClustersAgentPool), new(containerservice_v20230202ps.TrustedAccessRoleBinding)) - result = append(result, new(containerservice_v20230315p.Fleet)) - result = append(result, new(containerservice_v20230315ps.Fleet)) + result = append( + result, + new(containerservice_v20230315p.Fleet), + new(containerservice_v20230315p.FleetsMember), + new(containerservice_v20230315p.FleetsUpdateRun)) + result = append( + result, + new(containerservice_v20230315ps.Fleet), + new(containerservice_v20230315ps.FleetsMember), + new(containerservice_v20230315ps.FleetsUpdateRun)) result = append(result, new(datafactory_v20180601.Factory)) result = append(result, new(datafactory_v20180601s.Factory)) result = append(result, new(dataprotection_v20230101.BackupVault), new(dataprotection_v20230101.BackupVaultsBackupPolicy)) @@ -1771,6 +1781,8 @@ func getResourceExtensions() []genruntime.ResourceExtension { result = append(result, &containerinstance_customizations.ContainerGroupExtension{}) result = append(result, &containerregistry_customizations.RegistryExtension{}) result = append(result, &containerservice_customizations.FleetExtension{}) + result = append(result, &containerservice_customizations.FleetsMemberExtension{}) + result = append(result, &containerservice_customizations.FleetsUpdateRunExtension{}) result = append(result, &containerservice_customizations.ManagedClusterExtension{}) result = append(result, &containerservice_customizations.ManagedClustersAgentPoolExtension{}) result = append(result, &containerservice_customizations.TrustedAccessRoleBindingExtension{}) diff --git a/v2/internal/controllers/crd_aks_fleet_20230315preview_test.go b/v2/internal/controllers/crd_aks_fleet_20230315preview_test.go new file mode 100644 index 00000000000..086fa4e637b --- /dev/null +++ b/v2/internal/controllers/crd_aks_fleet_20230315preview_test.go @@ -0,0 +1,59 @@ +/* +Copyright (c) Microsoft Corporation. +Licensed under the MIT license. +*/ + +package controllers_test + +import ( + "testing" + + fleet "github.com/Azure/azure-service-operator/v2/api/containerservice/v1api20230315preview" + "github.com/Azure/azure-service-operator/v2/internal/testcommon" + "github.com/Azure/azure-service-operator/v2/internal/util/to" + . "github.com/onsi/gomega" +) + +func Test_AKS_Fleet_20230315_CRUD(t *testing.T) { + t.Parallel() + + tc := globalTestContext.ForTest(t) + rg := tc.CreateTestResourceGroupAndWait() + region := to.Ptr("westus3") + flt := &fleet.Fleet{ + ObjectMeta: tc.MakeObjectMeta("fleet"), + Spec: fleet.Fleet_Spec{ + Location: region, + Owner: testcommon.AsOwner(rg), + HubProfile: &fleet.FleetHubProfile{ + DnsPrefix: to.Ptr("aso"), + }, + Tags: map[string]string{ + "name": "test-tag", + }, + }, + } + // creating a fleet + tc.CreateResourceAndWait(flt) + tc.Expect(flt.Status.Id).ToNot(BeNil()) + tc.Expect(flt.Status.Tags).ToNot(BeNil()) + tc.Expect(flt.Spec.Tags["name"]).To(Equal("test-tag")) + armId := *flt.Status.Id + + // patching a fleet + old := flt.DeepCopy() + flt.Spec.Tags = map[string]string{ + "name": "test-tag2", + } + tc.PatchResourceAndWait(old, flt) + tc.Expect(flt.Spec.Tags["name"]).To(Equal("test-tag2")) + + // delete a fleet + tc.DeleteResourceAndWait(flt) + + // Ensure that fleet was really deleted in Azure + exists, retryAfter, err := tc.AzureClient.HeadByID(tc.Ctx, armId, string(fleet.APIVersion_Value)) + tc.Expect(err).ToNot(HaveOccurred()) + tc.Expect(retryAfter).To(BeZero()) + tc.Expect(exists).To(BeFalse()) +} diff --git a/v2/internal/controllers/recordings/Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion.yaml b/v2/internal/controllers/recordings/Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion.yaml new file mode 100644 index 00000000000..94024cd1f49 --- /dev/null +++ b/v2/internal/controllers/recordings/Test_Samples_CreationAndDeletion/Test_Containerservice_v1api20230315preview_CreationAndDeletion.yaml @@ -0,0 +1,1612 @@ +--- +version: 1 +interactions: +- request: + body: '{"location":"westus2","name":"asotest-rg-gxhtve","tags":{"CreatedAt":"2001-02-03T04:05:06Z"}}' + form: {} + headers: + Accept: + - application/json + Content-Length: + - "93" + Content-Type: + - application/json + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve?api-version=2020-06-01 + method: PUT + response: + body: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve","name":"asotest-rg-gxhtve","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"CreatedAt":"2001-02-03T04:05:06Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "276" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 4EDFFBC285DE4A07AA544D5A1808BDF3 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:48:41Z' + status: 201 Created + code: 201 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve?api-version=2020-06-01 + method: GET + response: + body: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve","name":"asotest-rg-gxhtve","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"CreatedAt":"2001-02-03T04:05:06Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "276" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 3C8BC4988CFA49F79D1498136286E3B6 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:48:42Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso"}}}' + form: {} + headers: + Accept: + - application/json + Content-Length: + - "105" + Content-Type: + - application/json + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: PUT + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 8C792270F3BC431DBFB7C6220A247D5F Ref B: MNZ221060608021 Ref C: 2023-09-08T21:48:45Z' + status: 201 Created + code: 201 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 556AE75A1111483D857F1ABF991E3524 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:48:47Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "1" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 3738CE17CD1F4F189270CF304589DC87 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:48:50Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "2" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 51D8B9E20E1B40D8B75D89B237F55600 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:48:55Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "3" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 67C907B6CD124F0A8B8AF3C10BBA99C0 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:49:03Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "4" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: FB796C48DFCA4AB99A1DE04415F3B956 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:49:20Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "5" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 89954D5E97BA430E9034C1741CE3A2AA Ref B: MNZ221060608021 Ref C: 2023-09-08T21:49:52Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "6" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: B3E2D644952C42C3925B21C2E4AE2DE6 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:50:53Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "7" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000df72-0000-4d00-0000-64fb96be0000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"","kubernetesVersion":""},"provisioningState":"Creating"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "702" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 9A35BA18A331417186FF152166187271 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:51:53Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "8" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000079c-0000-4d00-0000-64fb97850000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"aso-zevct2mw.hcp.westus3.azmk8s.io","kubernetesVersion":"1.25.11"},"provisioningState":"Succeeded"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "744" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: BA374BB06A4E4385927B6FBD5A3E5FC8 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:52:54Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Test-Request-Attempt: + - "9" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: GET + response: + body: '{"eTag":"\"1000079c-0000-4d00-0000-64fb97850000\"","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview","location":"westus3","name":"samplefleet2023315preview","properties":{"hubProfile":{"dnsPrefix":"aso","fqdn":"aso-zevct2mw.hcp.westus3.azmk8s.io","kubernetesVersion":"1.25.11"},"provisioningState":"Succeeded"},"systemData":{"createdAt":"2001-02-03T04:05:06Z","createdBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","createdByType":"Application","lastModifiedAt":"2001-02-03T04:05:06Z","lastModifiedBy":"954d4203-089b-43a8-b725-0e8fd05d5ced","lastModifiedByType":"Application"},"type":"Microsoft.ContainerService/fleets"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "744" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Fleet-Configuration-Version: + - v20230615.1 + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: AE06140AE29C434B9CFC9DDA921F3BC2 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:52:54Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve?api-version=2020-06-01 + method: DELETE + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 0264FFBC06C44F5988920FDE62E6F117 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:52:55Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: C3E7CDF742DF4AC987CBBF171D7B0CD5 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:53:12Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "1" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 46797799172C4E6E93A419CF3FA600DC Ref B: MNZ221060608021 Ref C: 2023-09-08T21:53:28Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "2" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 99BB6C7B37D9439E87D273E4AB464398 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:53:43Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "3" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 40259E81FA204344B34EE5EE04EF0E90 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:53:58Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "4" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: D7E083643AA4400DA0A3F3C1B0E7DC0A Ref B: MNZ221060608021 Ref C: 2023-09-08T21:54:14Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "5" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 0E68F959D27042228B86933DD56D6646 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:54:29Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "6" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 62C80E075573489F823EA30E2EC53F3B Ref B: MNZ221060608021 Ref C: 2023-09-08T21:54:45Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "7" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: B2D0CDE6DDAB40F49A86D6E85DEFD31E Ref B: MNZ221060608021 Ref C: 2023-09-08T21:55:00Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "8" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 93CF872162774D1190A9F3A56732F990 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:55:16Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "9" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: B943463864774D24B561BAB3ECC18B8F Ref B: MNZ221060608021 Ref C: 2023-09-08T21:55:31Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "10" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 54C644B4FF8D4928A1EDC191C2B452D9 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:55:46Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "11" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 27FF0041EBDC4A6F8371D1FBCF70054E Ref B: MNZ221060608021 Ref C: 2023-09-08T21:56:02Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "12" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: D849A047C3D6469D9787E2ABDE023418 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:56:17Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "13" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 213791BA569A4506BDD1968C8F984611 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:56:33Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "14" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 182F24B90748429BB6932F469F74176E Ref B: MNZ221060608021 Ref C: 2023-09-08T21:56:48Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "15" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 5F18C3F2087B429CA1FEAB5900B5875F Ref B: MNZ221060608021 Ref C: 2023-09-08T21:57:04Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "16" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 3CBBEE3AA57C4473AFD3F1A5233C3C83 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:57:19Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "17" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 58FB993515E14AA4B391680B2BD67681 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:57:34Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "18" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: A6022A6D5AE44CA890FEA859C2887CE1 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:57:50Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "19" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 5AD33886696C4DD0A6D71E7C6959F8B2 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:58:05Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "20" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 20AFD98CB96C46A880B394780605DFBF Ref B: MNZ221060608021 Ref C: 2023-09-08T21:58:21Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "21" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: E9982E3E35C24F19A749B727311E923E Ref B: MNZ221060608021 Ref C: 2023-09-08T21:58:36Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "22" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: C07389718B6A446794E848877E1907BB Ref B: MNZ221060608021 Ref C: 2023-09-08T21:58:51Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "23" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 577B9EFFDD744934BDBB698C61052B8E Ref B: MNZ221060608021 Ref C: 2023-09-08T21:59:06Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "24" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 82B7DFC81DC344E5AB923E9B912773C1 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:59:22Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "25" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: EE57992DD46749A18B93636FAFC55628 Ref B: MNZ221060608021 Ref C: 2023-09-08T21:59:37Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "26" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 6E735FFA03AD4258A32F273BD102E4FC Ref B: MNZ221060608021 Ref C: 2023-09-08T21:59:53Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "27" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: A1361D97F31C49BC9DC761415F9A4989 Ref B: MNZ221060608021 Ref C: 2023-09-08T22:00:08Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "28" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 9AC1B24BDB434EF5A0D552EFE2D7C5F9 Ref B: MNZ221060608021 Ref C: 2023-09-08T22:00:23Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "29" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: C4EA79B8D07542D6B031C0FCD9E17294 Ref B: MNZ221060608021 Ref C: 2023-09-08T22:00:39Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "30" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + Pragma: + - no-cache + Retry-After: + - "15" + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: 9F98D43707454C3196F8432710F8F78F Ref B: MNZ221060608021 Ref C: 2023-09-08T22:00:54Z' + status: 202 Accepted + code: 202 + duration: "" +- request: + body: "" + form: {} + headers: + Test-Request-Attempt: + - "31" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BU09URVNUOjJEUkc6MkRHWEhUVkUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-06-01 + method: GET + response: + body: "" + headers: + Cache-Control: + - no-cache + Content-Length: + - "0" + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Msedge-Ref: + - 'Ref A: EB6D56668CDD48F08AAAD0B508C8ADD9 Ref B: MNZ221060608021 Ref C: 2023-09-08T22:01:10Z' + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Accept: + - application/json + Test-Request-Attempt: + - "0" + url: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/asotest-rg-gxhtve/providers/Microsoft.ContainerService/fleets/samplefleet2023315preview?api-version=2023-03-15-preview + method: DELETE + response: + body: '{"error":{"code":"ResourceGroupNotFound","message":"Resource group ''asotest-rg-gxhtve'' + could not be found."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "109" + Content-Type: + - application/json; charset=utf-8 + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Failure-Cause: + - gateway + X-Msedge-Ref: + - 'Ref A: A050F968F8284A8AA621F92A7DE19D35 Ref B: MNZ221060608021 Ref C: 2023-09-08T22:01:12Z' + status: 404 Not Found + code: 404 + duration: "" diff --git a/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml b/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml new file mode 100644 index 00000000000..f9e985899ec --- /dev/null +++ b/v2/samples/containerservice/v1api20230315preview/v1api20230315preview_fleet.yaml @@ -0,0 +1,11 @@ +apiVersion: containerservice.azure.com/v1api20230315preview +kind: Fleet +metadata: + name: samplefleet2023315preview + namespace: default +spec: + location: westus3 + owner: + name: aso-sample-rg + hubProfile: + dnsPrefix: aso \ No newline at end of file